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
sourceDescription=` Create, push, pull and manage source images and associated source artifacts. A source image contains all source artifacts an ordinary OCI image has been built with. Those artifacts can be any kind of source artifact, such as source RPMs, an entire source tree or text files.
@@ -57,7 +68,7 @@ var (
57
68
}
58
69
59
70
// buildah source pull
60
-
sourcePullOptions= source.PullOptions{}
71
+
sourcePullOpts=sourcePullOptions{}
61
72
sourcePullDescription=` Pull a source image from a registry to a specified path. The pull operation will fail if the image does not comply with a source-image OCI artifact.
62
73
63
74
Note that the buildah-source command and all its subcommands are experimental and may be subject to future changes.
@@ -68,13 +79,13 @@ var (
68
79
Short: "Pull a source image from a registry to a specified path",
sourcePullFlags.StringVar(&sourcePullOpts.PullOptions.Credentials, "creds", "", "use `[username[:password]]` for accessing the registry")
146
+
sourcePullFlags.StringVar(&sourcePullOpts.tlsDetails, "tls-details", "", "path to a containers-tls-details.yaml file")
147
+
sourcePullFlags.BoolVar(&sourcePullOpts.PullOptions.TLSVerify, "tls-verify", true, "require HTTPS and verify certificates when accessing the registry")
sourcePushFlags.StringVar(&sourcePushOptions.Credentials, "creds", "", "use `[username[:password]]` for accessing the registry")
125
-
sourcePushFlags.StringVar(&sourcePushOptions.DigestFile, "digestfile", "", "after copying the artifact, write the digest of the resulting image to the file")
126
-
sourcePushFlags.BoolVar(&sourcePushOptions.TLSVerify, "tls-verify", true, "require HTTPS and verify certificates when accessing the registry")
sourcePushFlags.StringVar(&sourcePushOpts.PushOptions.Credentials, "creds", "", "use `[username[:password]]` for accessing the registry")
155
+
sourcePushFlags.StringVar(&sourcePushOpts.PushOptions.DigestFile, "digestfile", "", "after copying the artifact, write the digest of the resulting image to the file")
156
+
sourcePushFlags.StringVar(&sourcePushOpts.tlsDetails, "tls-details", "", "path to a containers-tls-details.yaml file")
157
+
sourcePushFlags.BoolVar(&sourcePushOpts.PushOptions.TLSVerify, "tls-verify", true, "require HTTPS and verify certificates when accessing the registry")
0 commit comments