diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-21 10:12:03 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-21 10:18:27 -0400 |
commit | fc52aa6704c77c4fcd87471b90d688e7b8315f28 (patch) | |
tree | 8c747fd5a167e40e372d9f7d3a73be51b5faa0bc /cmd/podman/images/pull.go | |
parent | 644b5bc8a35760654824c46cad8618e0d6e634bc (diff) | |
download | podman-fc52aa6704c77c4fcd87471b90d688e7b8315f28.tar.gz podman-fc52aa6704c77c4fcd87471b90d688e7b8315f28.tar.bz2 podman-fc52aa6704c77c4fcd87471b90d688e7b8315f28.zip |
Add noop function disable-content-trust
People who use docker scripts with Podman see failures
if they use disable-content-trust flag. This flag already
existed for podman build, adding it to pull/push/create/run.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/images/pull.go')
-rw-r--r-- | cmd/podman/images/pull.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/images/pull.go b/cmd/podman/images/pull.go index 83bb186df..c10a351d8 100644 --- a/cmd/podman/images/pull.go +++ b/cmd/podman/images/pull.go @@ -82,6 +82,7 @@ func pullFlags(flags *pflag.FlagSet) { flags.StringVar(&pullOptions.CredentialsCLI, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry") flags.StringVar(&pullOptions.OverrideArch, "override-arch", "", "Use `ARCH` instead of the architecture of the machine for choosing images") flags.StringVar(&pullOptions.OverrideOS, "override-os", "", "Use `OS` instead of the running OS for choosing images") + flags.Bool("disable-content-trust", false, "This is a Docker specific option and is a NOOP") flags.BoolVarP(&pullOptions.Quiet, "quiet", "q", false, "Suppress output information when pulling images") flags.StringVar(&pullOptions.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)") flags.BoolVar(&pullOptions.TLSVerifyCLI, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries") |