You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/buildah/manifest.go
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -268,6 +268,7 @@ func manifestInit() {
268
268
iferr:=flags.MarkHidden("insecure"); err!=nil {
269
269
panic(fmt.Sprintf("error marking insecure as hidden: %v", err))
270
270
}
271
+
flags.Int64Var(&manifestPushOpts.destTimestamp, "timestamp", 0, "set timestamps on new content to `seconds` after the epoch")
271
272
flags.BoolVar(&manifestPushOpts.tlsVerify, "tls-verify", true, "require HTTPS and verify certificates when accessing the registry. TLS verification cannot be used when talking to an insecure registry.")
272
273
flags.BoolVarP(&manifestPushOpts.quiet, "quiet", "q", false, "don't output progress information when pushing lists")
273
274
flags.IntVar(&manifestPushOpts.retry, "retry", int(defaultContainerConfig.Engine.Retry), "number of times to retry in case of failure when performing push")
Copy file name to clipboardExpand all lines: docs/buildah-manifest-push.1.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,13 @@ Delete the manifest list or image index from local storage if pushing succeeds.
99
99
100
100
Sign the pushed images using the GPG key that matches the specified fingerprint.
101
101
102
+
**--timestamp***seconds*
103
+
104
+
Set the "created" timestamp for outputs to this number of seconds since
105
+
the epoch (Unix time 0, i.e., 00:00:00 UTC on 1 January 1970) (defaults to
106
+
current time). For example, if an oci-archive output is used, the tar entries
107
+
created times are set to this value.
108
+
102
109
**--tls-verify***bool-value*
103
110
104
111
Require HTTPS and verification of certificates when talking to container registries (defaults to true). TLS verification cannot be used when talking to an insecure registry.
0 commit comments