mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 20:46:42 +00:00
* feat: implement performance optimizations --------- Signed-off-by: Oliver Baehler <oliver@sudo-i.net>
67 lines
2.3 KiB
Go
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)
|
|
}
|