mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 12:36:39 +00:00
feat: upstream enterprise preview --------- Signed-off-by: Oliver Baehler <oliver@sudo-i.net> Co-authored-by: CorentinPtrl <pitrel.corentin@gmail.com>
65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package meta
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
const (
|
|
FieldManagerCapsulePrefix = "projectcapsule.dev"
|
|
FieldManagerCapsuleController = "projectcapsule.dev/controller"
|
|
)
|
|
|
|
func ControllerFieldOwnerPrefix(fieldowner string) string {
|
|
return FieldManagerCapsulePrefix + "/" + fieldowner
|
|
}
|
|
|
|
func ControllerFieldOwner() string {
|
|
return ControllerFieldOwnerPrefix("controller")
|
|
}
|
|
|
|
func ResourceControllerFieldOwnerPrefix() string {
|
|
return FieldManagerCapsulePrefix + "/resource/controller"
|
|
}
|
|
|
|
// CapsuleFieldOwners returns the set of managers that start with the Capsule prefix.
|
|
func CapsuleFieldOwners(obj *unstructured.Unstructured, prefix string) map[string]struct{} {
|
|
out := map[string]struct{}{}
|
|
if obj == nil {
|
|
return out
|
|
}
|
|
|
|
for _, mf := range obj.GetManagedFields() {
|
|
mgr := mf.Manager
|
|
if mgr == "" {
|
|
continue
|
|
}
|
|
|
|
if strings.HasPrefix(mgr, prefix) {
|
|
out[mgr] = struct{}{}
|
|
}
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
func HasExactlyCapsuleOwners(obj *unstructured.Unstructured, prefix string, allowed []string) bool {
|
|
owners := CapsuleFieldOwners(obj, prefix)
|
|
|
|
if len(owners) != len(allowed) {
|
|
return false
|
|
}
|
|
|
|
for _, a := range allowed {
|
|
if _, ok := owners[a]; !ok {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|