diff options
author | Brent Baude <bbaude@redhat.com> | 2020-01-26 13:20:55 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-01-27 10:06:39 -0600 |
commit | d42b064c8cc3567e247d65d7f1dc207e2250394e (patch) | |
tree | f345ee0663638e4406bf35ffa2e9d2175015a3db /cmd | |
parent | 40d36b1cf11be8f6e102a4bf28144d33082b453a (diff) | |
download | podman-d42b064c8cc3567e247d65d7f1dc207e2250394e.tar.gz podman-d42b064c8cc3567e247d65d7f1dc207e2250394e.tar.bz2 podman-d42b064c8cc3567e247d65d7f1dc207e2250394e.zip |
expose --arch-override option for pull
We no longer wish to hide the --arch-override from the cli on pulls. we now expose it. docs updated. tests already exist.
Fixes: #4849
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/pull.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go index c6baf6b61..1cbb3f45e 100644 --- a/cmd/podman/pull.go +++ b/cmd/podman/pull.go @@ -55,7 +55,6 @@ func init() { flags.StringVar(&pullCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry") flags.BoolVarP(&pullCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images") flags.StringVar(&pullCommand.OverrideArch, "override-arch", "", "use `ARCH` instead of the architecture of the machine for choosing images") - markFlagHidden(flags, "override-arch") flags.StringVar(&pullCommand.OverrideOS, "override-os", "", "use `OS` instead of the running OS for choosing images") markFlagHidden(flags, "override-os") // Disabled flags for the remote client |