summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorEd Santiago <santiago@redhat.com>2019-02-27 09:00:56 -0700
committerEd Santiago <santiago@redhat.com>2019-02-27 14:19:02 -0700
commit7a66ad7fee5037d1087896761814246b2a4cf56f (patch)
tree3b9dd9ae3c834d7967c655c8cf0962aee89c114d /cmd
parent69808ff3200cfa0da5b7b42186446ce88ab323d5 (diff)
downloadpodman-7a66ad7fee5037d1087896761814246b2a4cf56f.tar.gz
podman-7a66ad7fee5037d1087896761814246b2a4cf56f.tar.bz2
podman-7a66ad7fee5037d1087896761814246b2a4cf56f.zip
fixup! missed some more:
- [flags] in generate-kube - optional [IMAGE] in images Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/generate_kube.go2
-rw-r--r--cmd/podman/images.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/generate_kube.go b/cmd/podman/generate_kube.go
index 090f99495..fa2872b77 100644
--- a/cmd/podman/generate_kube.go
+++ b/cmd/podman/generate_kube.go
@@ -17,7 +17,7 @@ var (
containerKubeCommand cliconfig.GenerateKubeValues
containerKubeDescription = "Generate Kubernetes Pod YAML"
_containerKubeCommand = &cobra.Command{
- Use: "kube CONTAINER | POD",
+ Use: "kube [flags] CONTAINER | POD",
Short: "Generate Kubernetes pod YAML for a container or pod",
Long: containerKubeDescription,
RunE: func(cmd *cobra.Command, args []string) error {
diff --git a/cmd/podman/images.go b/cmd/podman/images.go
index c7f80c34a..e6f4d9a60 100644
--- a/cmd/podman/images.go
+++ b/cmd/podman/images.go
@@ -88,7 +88,7 @@ var (
imagesDescription = "lists locally stored images."
_imagesCommand = cobra.Command{
- Use: "images",
+ Use: "images [flags] [IMAGE]",
Short: "List images in local storage",
Long: imagesDescription,
RunE: func(cmd *cobra.Command, args []string) error {