summaryrefslogtreecommitdiff
path: root/cmd/podman/push.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-15 06:22:46 -0700
committerGitHub <noreply@github.com>2019-03-15 06:22:46 -0700
commitccf991f530dbe41d86b904ec900fda01ae3e1474 (patch)
treeb1ae19c5cebdefbcedd5532108e30680cc687aad /cmd/podman/push.go
parent37dcc0a305a1606de7c0f5521d11250a4318bb51 (diff)
parent1e124306dbd35a4cfdf3f585119a2c4441ec543d (diff)
downloadpodman-ccf991f530dbe41d86b904ec900fda01ae3e1474.tar.gz
podman-ccf991f530dbe41d86b904ec900fda01ae3e1474.tar.bz2
podman-ccf991f530dbe41d86b904ec900fda01ae3e1474.zip
Merge pull request #2633 from edsantiago/default_default
Usage messages: deduplicate '(default true)' et al
Diffstat (limited to 'cmd/podman/push.go')
-rw-r--r--cmd/podman/push.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go
index afc385527..a1dac24ae 100644
--- a/cmd/podman/push.go
+++ b/cmd/podman/push.go
@@ -54,7 +54,7 @@ func init() {
flags.BoolVar(&pushCommand.RemoveSignatures, "remove-signatures", false, "Discard any pre-existing signatures in the image")
flags.StringVar(&pushCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
flags.StringVar(&pushCommand.SignBy, "sign-by", "", "Add a signature at the destination using the specified key")
- flags.BoolVar(&pushCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries (default: true)")
+ flags.BoolVar(&pushCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
}
func pushCmd(c *cliconfig.PushValues) error {