diff --git a/pkg/kyverno/apply/command.go b/pkg/kyverno/apply/command.go index d0495b7db3..547367798a 100644 --- a/pkg/kyverno/apply/command.go +++ b/pkg/kyverno/apply/command.go @@ -213,7 +213,7 @@ To apply policy with variables: err := policy2.Validate(utils.MarshalPolicy(*policy), nil, true, openAPIController) if err != nil { rc.skip += len(resources) - fmt.Printf("\nskipping policy %v as it is not valid: %v\n", policy.Name, err) + log.Log.V(3).Info(fmt.Sprintf("skipping policy %v as it is not valid", policy.Name), "error", err) continue } @@ -221,6 +221,7 @@ To apply policy with variables: variable := removeDuplicatevariables(matches) if len(matches) > 0 && variablesString == "" && valuesFile == "" { + rc.skip++ skipPolicy := SkippedPolicy{ Name: policy.GetName(), Rules: policy.Spec.Rules,