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:
parent
3fb1c8e87e
commit
0aeb9f667a
1 changed files with 4 additions and 0 deletions
|
@ -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"`
|
||||
|
|
Loading…
Add table
Reference in a new issue