Skip to content

Commit

Permalink
Merge pull request #10901 from rsevilla87/manifest-create-args
Browse files Browse the repository at this point in the history
manifest create subcommand should accept more than 2 arguments
  • Loading branch information
openshift-merge-robot authored Jul 13, 2021
2 parents 1611e0e + 6ca574d commit 9d98f56
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/podman/manifest/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ import (
var (
manifestCreateOpts = entities.ManifestCreateOptions{}
createCmd = &cobra.Command{
Use: "create [options] LIST [IMAGE]",
Use: "create [options] LIST [IMAGE...]",
Short: "Create manifest list or image index",
Long: "Creates manifest lists or image indexes.",
RunE: create,
ValidArgsFunction: common.AutocompleteImages,
Example: `podman manifest create mylist:v1.11
podman manifest create mylist:v1.11 arch-specific-image-to-add
podman manifest create mylist:v1.11 arch-specific-image-to-add another-arch-specific-image-to-add
podman manifest create --all mylist:v1.11 transport:tagged-image-to-add`,
Args: cobra.RangeArgs(1, 2),
Args: cobra.MinimumNArgs(1),
}
)

Expand Down
6 changes: 6 additions & 0 deletions test/e2e/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ var _ = Describe("Podman manifest", func() {
Expect(session.ExitCode()).To(Equal(0))
})

It("podman manifest create", func() {
session := podmanTest.Podman([]string{"manifest", "create", "foo", imageList})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
})

It("podman manifest inspect", func() {
session := podmanTest.Podman([]string{"manifest", "inspect", BB})
session.WaitWithDefaultTimeout()
Expand Down

0 comments on commit 9d98f56

Please sign in to comment.