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

skip policy mutation on status update (#1112)

This commit is contained in:
shuting 2020-09-14 10:56:06 -07:00 committed by GitHub
parent 95542908eb
commit f82b4a4952
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 6 deletions

View file

@ -3,16 +3,14 @@ package policystatus
import (
"encoding/json"
"fmt"
kyvernolister "github.com/nirmata/kyverno/pkg/client/listers/kyverno/v1"
"strings"
"sync"
"time"
"k8s.io/apimachinery/pkg/util/wait"
"github.com/nirmata/kyverno/pkg/client/clientset/versioned"
v1 "github.com/nirmata/kyverno/pkg/api/kyverno/v1"
"github.com/nirmata/kyverno/pkg/client/clientset/versioned"
kyvernolister "github.com/nirmata/kyverno/pkg/client/listers/kyverno/v1"
"k8s.io/apimachinery/pkg/util/wait"
log "sigs.k8s.io/controller-runtime/pkg/log"
)

View file

@ -3,6 +3,7 @@ package webhooks
import (
"encoding/json"
"fmt"
"reflect"
"strings"
kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1"
@ -13,7 +14,7 @@ import (
func (ws *WebhookServer) policyMutation(request *v1beta1.AdmissionRequest) *v1beta1.AdmissionResponse {
logger := ws.log.WithValues("action", "policymutation", "uid", request.UID, "kind", request.Kind, "namespace", request.Namespace, "name", request.Name, "operation", request.Operation)
var policy *kyverno.ClusterPolicy
var policy, oldPolicy *kyverno.ClusterPolicy
raw := request.Object.Raw
//TODO: can this happen? wont this be picked by OpenAPI spec schema ?
@ -26,6 +27,24 @@ func (ws *WebhookServer) policyMutation(request *v1beta1.AdmissionRequest) *v1be
},
}
}
if request.Operation == v1beta1.Update {
if err := json.Unmarshal(request.OldObject.Raw, &oldPolicy); err != nil {
logger.Error(err, "failed to unmarshall old policy admission request")
return &v1beta1.AdmissionResponse{
Allowed: true,
Result: &metav1.Status{
Message: fmt.Sprintf("failed to default value, check kyverno controller logs for details: %v", err),
},
}
}
if isStatusUpdate(oldPolicy, policy) {
logger.V(3).Info("skip policy mutation on status update")
return &v1beta1.AdmissionResponse{Allowed: true}
}
}
// Generate JSON Patches for defaults
patches, updateMsgs := policymutation.GenerateJSONPatchesForDefaults(policy, logger)
if patches != nil {
@ -43,3 +62,19 @@ func (ws *WebhookServer) policyMutation(request *v1beta1.AdmissionRequest) *v1be
Allowed: true,
}
}
func isStatusUpdate(old, new *kyverno.ClusterPolicy) bool {
if !reflect.DeepEqual(old.GetAnnotations(), new.GetAnnotations()) {
return false
}
if !reflect.DeepEqual(old.GetLabels(), new.GetLabels()) {
return false
}
if !reflect.DeepEqual(old.Spec, new.Spec) {
return false
}
return true
}