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

clean up fixes

This commit is contained in:
shivkumar dudhani 2019-11-12 16:49:05 -08:00
parent f271af95cc
commit d8bf7fa284
2 changed files with 3 additions and 2 deletions

View file

@ -122,7 +122,6 @@ func validatePatterns(resource unstructured.Unstructured, rule kyverno.Rule) (re
if len(errs) > 0 {
glog.V(4).Infof("none of anyPattern were processed: %v", errs)
response.Success = false
response.Success = false
var errorStr []string
for index, err := range errs {
glog.V(4).Infof("anyPattern[%d] failed at path %s: %v", index, failedPaths[index], err)

View file

@ -31,7 +31,9 @@ func (pc *PolicyController) cleanUp(ers []engine.EngineResponse) {
if !er.IsSuccesful() {
continue
}
// glog.Info(er.PolicyResponse)
if len(er.PolicyResponse.Rules) == 0 {
continue
}
// clean up after the policy has been corrected
pc.cleanUpPolicyViolation(er.PolicyResponse)
}