summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-12 03:46:31 -0500
committerGitHub <noreply@github.com>2020-12-12 03:46:31 -0500
commit36bec385f33ebc8f0aeb52547f79bd2663521f8f (patch)
tree62a1a7ea22eca4aca0d428c0ae45b067e433a298 /cmd
parent1d50245a206b7a18abb0aa6ae363d9fd56b7bd6e (diff)
parent6730556e2f6f98a2eef6914ffadabf8a46aef749 (diff)
downloadpodman-36bec385f33ebc8f0aeb52547f79bd2663521f8f.tar.gz
podman-36bec385f33ebc8f0aeb52547f79bd2663521f8f.tar.bz2
podman-36bec385f33ebc8f0aeb52547f79bd2663521f8f.zip
Merge pull request #7718 from QiWang19/sign-multi-arch
Sign multi-arch images
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/images/sign.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/images/sign.go b/cmd/podman/images/sign.go
index 342536f7c..859d51d51 100644
--- a/cmd/podman/images/sign.go
+++ b/cmd/podman/images/sign.go
@@ -47,6 +47,7 @@ func init() {
certDirFlagName := "cert-dir"
flags.StringVar(&signOptions.CertDir, certDirFlagName, "", "`Pathname` of a directory containing TLS certificates and keys")
_ = signCommand.RegisterFlagCompletionFunc(certDirFlagName, completion.AutocompleteDefault)
+ flags.BoolVarP(&signOptions.All, "all", "a", false, "Sign all the manifests of the multi-architecture image")
}
func sign(cmd *cobra.Command, args []string) error {