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

return early in LCI if generated patches from policy mutation is nil

This commit is contained in:
Shuting Zhao 2020-08-19 15:11:21 -07:00
parent 3fb1c8e87e
commit 0aeb9f667a

View file

@ -162,6 +162,10 @@ func PolicyHasVariables(policy v1.ClusterPolicy) bool {
func MutatePolicy(policy *v1.ClusterPolicy, logger logr.Logger) (*v1.ClusterPolicy, error) {
patches, _ := policymutation.GenerateJSONPatchesForDefaults(policy, logger)
if len(patches) == 0 {
return policy, nil
}
type jsonPatch struct {
Path string `json:"path"`
Op string `json:"op"`