From 64853710e87ba124561653cb5d62ca3a653b4170 Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Mon, 18 Feb 2019 15:00:07 -0500 Subject: Add 4th chunk of Cobra Examples Signed-off-by: TomSweeneyRedHat Adds the 4th chunk of Cobra Examples to the CLI help. One more chunk of 10 to complete. Signed-off-by: TomSweeneyRedHat --- cmd/podman/runlabel.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cmd/podman/runlabel.go') diff --git a/cmd/podman/runlabel.go b/cmd/podman/runlabel.go index f1c61ebda..54f210e62 100644 --- a/cmd/podman/runlabel.go +++ b/cmd/podman/runlabel.go @@ -31,7 +31,9 @@ Executes a command as described by a container image label. runlabelCommand.GlobalFlags = MainGlobalOpts return runlabelCmd(&runlabelCommand) }, - Example: "", + Example: `podman container runlabel run imageID + podman container runlabel --pull install imageID arg1 arg2 + podman container runlabel --display run myImage`, } ) @@ -49,7 +51,7 @@ func init() { flags.StringVar(&runlabelCommand.Opt2, "opt2", "", "Optional parameter to pass for install") flags.StringVar(&runlabelCommand.Opt3, "opt3", "", "Optional parameter to pass for install") flags.MarkHidden("opt1") - flags.MarkHidden("opt3") + flags.MarkHidden("opt2") flags.MarkHidden("opt3") flags.BoolVarP(&runlabelCommand.Pull, "pull", "p", false, "Pull the image if it does not exist locally prior to executing the label contents") -- cgit v1.2.3-54-g00ecf