package jp import ( "strings" "github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/commands/jp/function" "github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/commands/jp/parse" "github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/commands/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: description[0], Long: strings.Join(description, "\n"), RunE: func(cmd *cobra.Command, args []string) error { return cmd.Help() }, } cmd.AddCommand(query.Command()) cmd.AddCommand(function.Command()) cmd.AddCommand(parse.Command()) return cmd }