summaryrefslogtreecommitdiff
path: root/cmd/podman/push.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-08-21 15:32:56 -0700
committerGitHub <noreply@github.com>2019-08-21 15:32:56 -0700
commitecc5cc532a26b1fa94ec74a264df156501d4f9dd (patch)
treee63605e3c355e03c361eca02fc837abd713658ce /cmd/podman/push.go
parent1ff984d509b85d9ededeb5c609bff01210512891 (diff)
parent9ced2488c953a11007e836403498f7c0892467f5 (diff)
downloadpodman-ecc5cc532a26b1fa94ec74a264df156501d4f9dd.tar.gz
podman-ecc5cc532a26b1fa94ec74a264df156501d4f9dd.tar.bz2
podman-ecc5cc532a26b1fa94ec74a264df156501d4f9dd.zip
Merge pull request #3863 from TomSweeneyRedHat/dev/tsweeney/digestfile2
Add --digestfile option to push
Diffstat (limited to 'cmd/podman/push.go')
-rw-r--r--cmd/podman/push.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go
index 43df8c2de..13ebe8a1f 100644
--- a/cmd/podman/push.go
+++ b/cmd/podman/push.go
@@ -51,6 +51,7 @@ func init() {
pushCommand.SetUsageTemplate(UsageTemplate())
flags := pushCommand.Flags()
flags.StringVar(&pushCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
+ flags.StringVar(&pushCommand.Digestfile, "digestfile", "", "After copying the image, write the digest of the resulting image to the file")
flags.StringVarP(&pushCommand.Format, "format", "f", "", "Manifest type (oci, v2s1, or v2s2) to use when pushing an image using the 'dir:' transport (default is manifest type of source)")
flags.BoolVarP(&pushCommand.Quiet, "quiet", "q", false, "Don't output progress information when pushing images")
flags.BoolVar(&pushCommand.RemoveSignatures, "remove-signatures", false, "Discard any pre-existing signatures in the image")
@@ -143,5 +144,5 @@ func pushCmd(c *cliconfig.PushValues) error {
SignBy: signBy,
}
- return runtime.Push(getContext(), srcName, destName, manifestType, c.Authfile, c.SignaturePolicy, writer, c.Compress, so, &dockerRegistryOptions, nil)
+ return runtime.Push(getContext(), srcName, destName, manifestType, c.Authfile, c.String("digestfile"), c.SignaturePolicy, writer, c.Compress, so, &dockerRegistryOptions, nil)
}