From 68304e4b190dddb76d50e903b51064ddf0a9d5cb Mon Sep 17 00:00:00 2001 From: Anushka Mittal <138426011+anushkamittal2001@users.noreply.github.com> Date: Thu, 23 May 2024 13:46:33 +0530 Subject: [PATCH] chore: make contrinue-on-fail flag available outside package (#10293) Signed-off-by: anushkamittal20 Co-authored-by: anushkamittal20 --- cmd/cli/kubectl-kyverno/commands/apply/command.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/cli/kubectl-kyverno/commands/apply/command.go b/cmd/cli/kubectl-kyverno/commands/apply/command.go index b356320d60..23a9fc84bd 100644 --- a/cmd/cli/kubectl-kyverno/commands/apply/command.go +++ b/cmd/cli/kubectl-kyverno/commands/apply/command.go @@ -67,7 +67,7 @@ type ApplyCommandConfig struct { warnExitCode int warnNoPassed bool Exception []string - continueOnFail bool + ContinueOnFail bool } func Command() *cobra.Command { @@ -122,7 +122,7 @@ func Command() *cobra.Command { 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") - cmd.Flags().BoolVar(&applyCommandConfig.continueOnFail, "continue-on-fail", false, "If set to true, will continue to apply policies on the next resource upon failure to apply to the current resource instead of exiting out") + cmd.Flags().BoolVar(&applyCommandConfig.ContinueOnFail, "continue-on-fail", false, "If set to true, will continue to apply policies on the next resource upon failure to apply to the current resource instead of exiting out") return cmd } @@ -236,7 +236,7 @@ func (c *ApplyCommandConfig) applyValidatingAdmissionPolicytoResource( } ers, err := processor.ApplyPolicyOnResource() if err != nil { - if c.continueOnFail { + if c.ContinueOnFail { fmt.Printf("failed to apply policies on resource %s (%v)\n", resource.GetName(), err) continue } @@ -304,7 +304,7 @@ func (c *ApplyCommandConfig) applyPolicytoResource( } ers, err := processor.ApplyPoliciesOnResource() if err != nil { - if c.continueOnFail { + if c.ContinueOnFail { fmt.Printf("failed to apply policies on resource %v (%v)\n", resource.GetName(), err) continue }