mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
* feat: bump update request api version Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * use v2 Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * codegen Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * codegen Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix linter Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix linter Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
102 lines
2.9 KiB
Go
102 lines
2.9 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/go-logr/logr"
|
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2"
|
|
"github.com/kyverno/kyverno/pkg/clients/dclient"
|
|
"github.com/kyverno/kyverno/pkg/config"
|
|
"github.com/kyverno/kyverno/pkg/engine"
|
|
"github.com/kyverno/kyverno/pkg/engine/jmespath"
|
|
admissionutils "github.com/kyverno/kyverno/pkg/utils/admission"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
func NewBackgroundContext(
|
|
logger logr.Logger,
|
|
dclient dclient.Interface,
|
|
ur *kyvernov2.UpdateRequest,
|
|
policy kyvernov1.PolicyInterface,
|
|
trigger *unstructured.Unstructured,
|
|
cfg config.Configuration,
|
|
jp jmespath.Interface,
|
|
namespaceLabels map[string]string,
|
|
) (*engine.PolicyContext, error) {
|
|
var new, old unstructured.Unstructured
|
|
var err error
|
|
|
|
if ur.Spec.Context.AdmissionRequestInfo.AdmissionRequest != nil {
|
|
new, old, err = admissionutils.ExtractResources(nil, *ur.Spec.Context.AdmissionRequestInfo.AdmissionRequest)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to load request in context: %w", err)
|
|
}
|
|
if new.Object != nil {
|
|
if !check(&new, trigger) {
|
|
err := fmt.Errorf("resources don't match")
|
|
return nil, fmt.Errorf("resource %v: %w", ur.Spec.GetResource().String(), err)
|
|
}
|
|
}
|
|
}
|
|
if trigger == nil {
|
|
trigger = &old
|
|
}
|
|
if trigger == nil {
|
|
return nil, fmt.Errorf("trigger resource does not exist")
|
|
}
|
|
|
|
var policyContext *engine.PolicyContext
|
|
if ur.Spec.Context.AdmissionRequestInfo.AdmissionRequest == nil {
|
|
policyContext, err = engine.NewPolicyContext(
|
|
jp,
|
|
*trigger,
|
|
kyvernov1.AdmissionOperation(ur.Spec.Context.AdmissionRequestInfo.Operation),
|
|
&ur.Spec.Context.UserRequestInfo,
|
|
cfg,
|
|
)
|
|
} else {
|
|
policyContext, err = engine.NewPolicyContextFromAdmissionRequest(
|
|
jp,
|
|
*ur.Spec.Context.AdmissionRequestInfo.AdmissionRequest,
|
|
ur.Spec.Context.UserRequestInfo,
|
|
trigger.GroupVersionKind(),
|
|
cfg,
|
|
)
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
policyContext = policyContext.
|
|
WithPolicy(policy).
|
|
WithNewResource(*trigger).
|
|
WithOldResource(old).
|
|
WithNamespaceLabels(namespaceLabels).
|
|
WithAdmissionOperation(false)
|
|
if err = policyContext.JSONContext().AddResource(trigger.Object); err != nil {
|
|
return nil, fmt.Errorf("failed to load resource in context: %w", err)
|
|
}
|
|
if err = policyContext.JSONContext().AddOldResource(old.Object); err != nil {
|
|
return nil, fmt.Errorf("failed to load resource in context: %w", err)
|
|
}
|
|
return policyContext, nil
|
|
}
|
|
|
|
func check(admissionRsc, existingRsc *unstructured.Unstructured) bool {
|
|
if existingRsc == nil {
|
|
return admissionRsc == nil
|
|
}
|
|
if admissionRsc.GetName() != existingRsc.GetName() {
|
|
return false
|
|
}
|
|
if admissionRsc.GetNamespace() != existingRsc.GetNamespace() {
|
|
return false
|
|
}
|
|
if admissionRsc.GetKind() != existingRsc.GetKind() {
|
|
return false
|
|
}
|
|
if admissionRsc.GetAPIVersion() != existingRsc.GetAPIVersion() {
|
|
return false
|
|
}
|
|
return true
|
|
}
|