diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-01-08 09:42:43 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-01-11 17:35:39 -0500 |
commit | 1c1e670d40826bed50ea43c197d1944018263738 (patch) | |
tree | 5ae4480fc7390b044ec08e3359c41636cf40bce6 /cmd/podman/images | |
parent | 63d8f535ec93b5e83257e39b9d656747c4bedfcc (diff) | |
download | podman-1c1e670d40826bed50ea43c197d1944018263738.tar.gz podman-1c1e670d40826bed50ea43c197d1944018263738.tar.bz2 podman-1c1e670d40826bed50ea43c197d1944018263738.zip |
Use HTTPProxy settings from containers.conf
This PR takes the settings from containers.conf and uses
them. This works on the podman local but does not fix the
issue for podman remote or for APIv2. We need a way
to specify optionalbooleans when creating containers.
Fixes: https://github.com/containers/podman/issues/8843
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/images')
-rw-r--r-- | cmd/podman/images/build.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/podman/images/build.go b/cmd/podman/images/build.go index 3aca104e3..c0aa27ca1 100644 --- a/cmd/podman/images/build.go +++ b/cmd/podman/images/build.go @@ -135,6 +135,16 @@ func buildFlags(cmd *cobra.Command) { logrus.Errorf("error setting up build flags: %v", err) os.Exit(1) } + // --http-proxy flag + // containers.conf defaults to true but we want to force false by default for remote, since settings do not apply + if registry.IsRemote() { + flag = fromAndBudFlags.Lookup("http-proxy") + buildOpts.HTTPProxy = false + if err := flag.Value.Set("false"); err != nil { + logrus.Errorf("unable to set --https-proxy to %v: %v", false, err) + } + flag.DefValue = "false" + } flags.AddFlagSet(&fromAndBudFlags) // Add the completion functions fromAndBudFlagsCompletions := buildahCLI.GetFromAndBudFlagsCompletions() |