Files
capsule/pkg/runtime/predicates/config_change.go
T
Oliver BählerandGitHub 99e05220ab feat: implement performance optimizations (#2045)
* feat: implement performance optimizations

---------

Signed-off-by: Oliver Baehler <oliver@sudo-i.net>
2026-07-21 16:27:29 +02:00

67 lines
2.3 KiB
Go

// Copyright 2020-2026 Project Capsule Authors
// SPDX-License-Identifier: Apache-2.0
package predicates
import (
"reflect"
"sigs.k8s.io/controller-runtime/pkg/event"
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2"
)
type CapsuleConfigSpecAdministratorsChangedPredicate struct{}
func (CapsuleConfigSpecAdministratorsChangedPredicate) Create(event.CreateEvent) bool { return false }
func (CapsuleConfigSpecAdministratorsChangedPredicate) Delete(event.DeleteEvent) bool { return false }
func (CapsuleConfigSpecAdministratorsChangedPredicate) Generic(event.GenericEvent) bool { return false }
func (CapsuleConfigSpecAdministratorsChangedPredicate) Update(e event.UpdateEvent) bool {
oldObj, ok1 := e.ObjectOld.(*capsulev1beta2.CapsuleConfiguration)
newObj, ok2 := e.ObjectNew.(*capsulev1beta2.CapsuleConfiguration)
if !ok1 || !ok2 {
return false
}
return !reflect.DeepEqual(oldObj.Spec.Administrators, newObj.Spec.Administrators)
}
type CapsuleConfigSpecImpersonationChangedPredicate struct{}
func (CapsuleConfigSpecImpersonationChangedPredicate) Create(event.CreateEvent) bool { return false }
func (CapsuleConfigSpecImpersonationChangedPredicate) Delete(event.DeleteEvent) bool { return false }
func (CapsuleConfigSpecImpersonationChangedPredicate) Generic(event.GenericEvent) bool { return false }
func (CapsuleConfigSpecImpersonationChangedPredicate) Update(e event.UpdateEvent) bool {
oldCfg, ok1 := e.ObjectOld.(*capsulev1beta2.CapsuleConfiguration)
newCfg, ok2 := e.ObjectNew.(*capsulev1beta2.CapsuleConfiguration)
if !ok1 || !ok2 {
return false
}
oldSpec := oldCfg.Spec
newSpec := newCfg.Spec
return oldSpec.Impersonation != newSpec.Impersonation
}
type CapsuleConfigSpecAdmissionChangedPredicate struct{}
func (CapsuleConfigSpecAdmissionChangedPredicate) Create(event.CreateEvent) bool { return true }
func (CapsuleConfigSpecAdmissionChangedPredicate) Delete(event.DeleteEvent) bool { return false }
func (CapsuleConfigSpecAdmissionChangedPredicate) Generic(event.GenericEvent) bool { return false }
func (CapsuleConfigSpecAdmissionChangedPredicate) Update(e event.UpdateEvent) bool {
oldCfg, ok1 := e.ObjectOld.(*capsulev1beta2.CapsuleConfiguration)
newCfg, ok2 := e.ObjectNew.(*capsulev1beta2.CapsuleConfiguration)
if !ok1 || !ok2 {
return false
}
return !reflect.DeepEqual(oldCfg.Spec.Admission, newCfg.Spec.Admission)
}