diff options
author | Jhon Honce <jhonce@redhat.com> | 2022-01-14 14:41:58 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2022-01-20 08:51:34 -0700 |
commit | 1f85244abe7d4e930b3922c306cabf2e2ca1cddb (patch) | |
tree | 6121517e6c43830d8e8996d491a3a516f5bccb1d /Makefile | |
parent | 206e57e5b012ae03315dfb84735d034dd9cfd26e (diff) | |
download | podman-1f85244abe7d4e930b3922c306cabf2e2ca1cddb.tar.gz podman-1f85244abe7d4e930b3922c306cabf2e2ca1cddb.tar.bz2 podman-1f85244abe7d4e930b3922c306cabf2e2ca1cddb.zip |
Engine.Remote from containers.conf
Heuristic to initialize TunnelMode/remote podman:
- Podman built with remote tag
- Podman running on darwin or windows GOOS
- CONTAINER_HOST or CONTAINER_CONNECTION set in environment
- --remote flag given on command line
- From containers.conf, Engine.Remote == true and GOOS == linux
Otherwise, podman will run in ABIMode/linked against libpod library.
Fixes #12866
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -554,6 +554,7 @@ test: localunit localintegration remoteintegration localsystem remotesystem ## .PHONY: ginkgo-run ginkgo-run: + $(GOBIN)/ginkgo version $(GOBIN)/ginkgo -v $(TESTFLAGS) -tags "$(TAGS)" $(GINKGOTIMEOUT) -cover -flakeAttempts 3 -progress -trace -noColor -nodes 3 -debug test/e2e/. $(HACK) .PHONY: ginkgo |