From d8911e0c77d7fa4d1b970125b3888f7476e49fa6 Mon Sep 17 00:00:00 2001 From: Chanwit Kaewkasi Date: Wed, 7 Jul 2021 14:19:37 +0700 Subject: [PATCH] add an example to the status-selector flag's description Co-authored-by: Stefan Prodan Signed-off-by: Chanwit Kaewkasi --- cmd/flux/get.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/flux/get.go b/cmd/flux/get.go index ce44ca62..37c267a6 100644 --- a/cmd/flux/get.go +++ b/cmd/flux/get.go @@ -51,7 +51,7 @@ func init() { "list the requested object(s) across all namespaces") getCmd.PersistentFlags().BoolVarP(&getArgs.noHeader, "no-header", "", false, "skip the header when printing the results") getCmd.PersistentFlags().StringVar(&getArgs.statusSelector, "status-selector", "", - "specify the status condition name and the desired state to filter the get result") + "specify the status condition name and the desired state to filter the get result, e.g. ready=false") rootCmd.AddCommand(getCmd) }