mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-28 18:38:40 +00:00
add plural form aliases for resources and exceptions flags (#9749)
* Update command.go Signed-off-by: mohamedasifs123 <142201466+mohamedasifs123@users.noreply.github.com> * lint Signed-off-by: mohamedasifs123 <142201466+mohamedasifs123@users.noreply.github.com> * lint Signed-off-by: mohamedasifs123 <142201466+mohamedasifs123@users.noreply.github.com> --------- Signed-off-by: mohamedasifs123 <142201466+mohamedasifs123@users.noreply.github.com> Co-authored-by: Jim Bugwadia <jim@nirmata.com>
This commit is contained in:
parent
cd0f2847db
commit
d114b282de
2 changed files with 4 additions and 0 deletions
|
@ -99,6 +99,7 @@ func Command() *cobra.Command {
|
|||
},
|
||||
}
|
||||
cmd.Flags().StringSliceVarP(&applyCommandConfig.ResourcePaths, "resource", "r", []string{}, "Path to resource files")
|
||||
cmd.Flags().StringSliceVarP(&applyCommandConfig.ResourcePaths, "resources", "", []string{}, "Path to resource files")
|
||||
cmd.Flags().BoolVarP(&applyCommandConfig.Cluster, "cluster", "c", false, "Checks if policies should be applied to cluster in the current context")
|
||||
cmd.Flags().StringVarP(&applyCommandConfig.MutateLogPath, "output", "o", "", "Prints the mutated resources in provided file/directory")
|
||||
// currently `set` flag supports variable for single policy applied on single resource
|
||||
|
@ -119,6 +120,7 @@ func Command() *cobra.Command {
|
|||
cmd.Flags().BoolVar(&detailedResults, "detailed-results", false, "If set to true, display detailed results")
|
||||
cmd.Flags().BoolVarP(&table, "table", "t", false, "Show results in table format")
|
||||
cmd.Flags().StringSliceVarP(&applyCommandConfig.Exception, "exception", "e", nil, "Policy exception to be considered when evaluating policies against resources")
|
||||
cmd.Flags().StringSliceVarP(&applyCommandConfig.Exception, "exceptions", "", nil, "Policy exception to be considered when evaluating policies against resources")
|
||||
return cmd
|
||||
}
|
||||
|
||||
|
|
|
@ -42,6 +42,7 @@ kyverno apply [flags]
|
|||
--context string The name of the kubeconfig context to use
|
||||
--detailed-results If set to true, display detailed results
|
||||
-e, --exception strings Policy exception to be considered when evaluating policies against resources
|
||||
--exceptions strings Policy exception to be considered when evaluating policies against resources
|
||||
-b, --git-branch string test git repository branch
|
||||
-h, --help help for apply
|
||||
--kubeconfig string path to kubeconfig file with authorization and master location information
|
||||
|
@ -51,6 +52,7 @@ kyverno apply [flags]
|
|||
--registry If set to true, access the image registry using local docker credentials to populate external data
|
||||
--remove-color Remove any color from output
|
||||
-r, --resource strings Path to resource files
|
||||
--resources strings Path to resource files
|
||||
-s, --set strings Variables that are required
|
||||
-i, --stdin Optional mutate policy parameter to pipe directly through to kubectl
|
||||
-t, --table Show results in table format
|
||||
|
|
Loading…
Add table
Reference in a new issue