diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-27 15:33:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 15:33:00 +0200 |
commit | ef46687dc5bd3eff7b2e75a347f1b026c3b50f33 (patch) | |
tree | d84ba00b5cc4661f1cba70f1f6ec1e3893a9fe30 /cmd/podman | |
parent | a5bce57218d7a3067e75028b237f92e0230969c3 (diff) | |
parent | 2f3734b143a6f1d61e396ca221a211b7c487d081 (diff) | |
download | podman-ef46687dc5bd3eff7b2e75a347f1b026c3b50f33.tar.gz podman-ef46687dc5bd3eff7b2e75a347f1b026c3b50f33.tar.bz2 podman-ef46687dc5bd3eff7b2e75a347f1b026c3b50f33.zip |
Merge pull request #5976 from QiWang19/manifest-add-os
Add --os to manifest add
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/manifest/add.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/manifest/add.go b/cmd/podman/manifest/add.go index 20251ca87..c83beff7a 100644 --- a/cmd/podman/manifest/add.go +++ b/cmd/podman/manifest/add.go @@ -34,6 +34,7 @@ func init() { flags.StringSliceVar(&manifestAddOpts.Annotation, "annotation", nil, "set an `annotation` for the specified image") flags.StringVar(&manifestAddOpts.Arch, "arch", "", "override the `architecture` of the specified image") flags.StringSliceVar(&manifestAddOpts.Features, "features", nil, "override the `features` of the specified image") + flags.StringVar(&manifestAddOpts.OS, "os", "", "override the `OS` of the specified image") flags.StringVar(&manifestAddOpts.OSVersion, "os-version", "", "override the OS `version` of the specified image") flags.StringVar(&manifestAddOpts.Variant, "variant", "", "override the `Variant` of the specified image") } |