Merge pull request #27395 from nalind/grpc-noop

Parse grpc requests on the service socket
This commit is contained in:
openshift-merge-bot[bot]
2025-11-10 13:45:27 +00:00
committed by GitHub
26 changed files with 3333 additions and 51 deletions

View File

@@ -238,11 +238,11 @@ all: binaries docs
.PHONY: binaries
ifeq ($(GOOS),freebsd)
binaries: podman podman-remote ## (FreeBSD) Build podman and podman-remote binaries
binaries: podman podman-remote podman-testing ## (FreeBSD) Build podman, podman-remote, and podman-testing binaries
else ifneq (, $(findstring $(GOOS),darwin windows))
binaries: podman-remote ## (macOS/Windows) Build podman-remote (client) only binaries
else
binaries: podman podman-remote podman-testing podmansh rootlessport quadlet ## (Linux) Build podman, podman-remote and rootlessport binaries quadlet
binaries: podman podman-remote podman-testing podmansh rootlessport quadlet ## (Linux) Build podman, podman-remote, podmansh, rootlessport, and quadlet binaries
endif
# Extract text following double-# for targets, as their description for
@@ -477,7 +477,7 @@ $(SRCBINDIR)/podman-testing: $(SOURCES) go.mod go.sum
-o $@ ./cmd/podman-testing
.PHONY: podman-testing
podman-testing: bin/podman-testing
podman-testing: $(SRCBINDIR)/podman-testing
###
### Secondary binary-build targets