1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: improve cli help message (#5843)

* fix: improve cli help message

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* Update cmd/cli/kubectl-kyverno/jp/jp.go

Signed-off-by: shuting <shutting06@gmail.com>

* Update cmd/cli/kubectl-kyverno/jp/jp.go

Signed-off-by: shuting <shutting06@gmail.com>

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
Signed-off-by: shuting <shutting06@gmail.com>
Co-authored-by: shuting <shutting06@gmail.com>
This commit is contained in:
Charles-Edouard Brétéché 2023-01-03 13:38:19 +01:00 committed by GitHub
parent 23fef004bb
commit e25bb7e147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 6 deletions

View file

@ -23,7 +23,8 @@ var examples = []string{
func Command() *cobra.Command {
return &cobra.Command{
Use: "function [function_name]...",
Short: strings.Join(description, "\n"),
Short: description[0],
Long: strings.Join(description, "\n"),
Example: strings.Join(examples, "\n\n"),
SilenceUsage: true,
Run: func(cmd *cobra.Command, args []string) {

View file

@ -1,17 +1,24 @@
package jp
import (
"strings"
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/jp/function"
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/jp/parse"
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/jp/query"
"github.com/spf13/cobra"
)
var description = []string{
"Provides a command-line interface to JMESPath, enhanced with Kyverno specific custom functions.",
"For more information visit: https://kyverno.io/docs/writing-policies/jmespath/.",
}
func Command() *cobra.Command {
cmd := &cobra.Command{
Use: "jp",
Short: `Provides a command-line interface to JMESPath, enhanced with Kyverno specific custom functions.
For more information visit: https://kyverno.io/docs/writing-policies/jmespath/.`,
Use: "jp",
Short: description[0],
Long: strings.Join(description, "\n"),
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},

View file

@ -28,7 +28,8 @@ func Command() *cobra.Command {
var files []string
cmd := &cobra.Command{
Use: "parse [-f file|expression]...",
Short: strings.Join(description, "\n"),
Short: description[0],
Long: strings.Join(description, "\n"),
Example: strings.Join(examples, "\n\n"),
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {

View file

@ -35,7 +35,8 @@ func Command() *cobra.Command {
var queries []string
cmd := &cobra.Command{
Use: "query [-i input] [-q query|query]...",
Short: strings.Join(description, "\n"),
Short: description[0],
Long: strings.Join(description, "\n"),
SilenceUsage: true,
Example: strings.Join(examples, "\n\n"),
RunE: func(cmd *cobra.Command, args []string) error {