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

formatting error, fixes tests

This commit is contained in:
shivkumar dudhani 2019-08-27 23:48:13 -07:00
parent 8737ace7d7
commit db3bcf3ca3

View file

@ -22,7 +22,7 @@ func (ws *WebhookServer) handlePolicyMutation(request *v1beta1.AdmissionRequest)
return &v1beta1.AdmissionResponse{
Allowed: true,
Result: &metav1.Status{
Message: fmt.Sprintf("failed to default value, check kyverno controller logs for details", err),
Message: fmt.Sprintf("failed to default value, check kyverno controller logs for details: %v", err),
},
}
}
@ -40,7 +40,7 @@ func (ws *WebhookServer) handlePolicyMutation(request *v1beta1.AdmissionRequest)
PatchType: &patchType,
}
}
glog.V(4).Info("nothing to default for policy %s", policy.Name)
glog.V(4).Infof("nothing to default for policy %s", policy.Name)
return &v1beta1.AdmissionResponse{
Allowed: true,
}
@ -74,7 +74,7 @@ func defaultvalidationFailureAction(policy *kyverno.Policy) ([]byte, string) {
}
patchByte, err := json.Marshal(jsonPatch)
if err != nil {
glog.Error("failed to set default 'ValidationFailureAction' to '%s' for policy %s", BlockChanges, policy.Name)
glog.Errorf("failed to set default 'ValidationFailureAction' to '%s' for policy %s", BlockChanges, policy.Name)
return nil, ""
}
glog.V(4).Infof("generate JSON Patch to set default 'ValidationFailureAction' to '%s' for policy %s", BlockChanges, policy.Name)