v2/internal/ownerutil/ownerutil.go (46 lines of code) (raw):
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This was adapted from: https://github.com/kubernetes-sigs/cluster-api/blob/master/util/util.go
package ownerutil
import (
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/client"
)
// HasOwnerRef returns true if the OwnerReference is already in the slice.
func HasOwnerRef(ownerReferences []metav1.OwnerReference, ref metav1.OwnerReference) bool {
return indexOwnerRef(ownerReferences, ref) > -1
}
// EnsureOwnerRef makes sure the slice contains the OwnerReference.
func EnsureOwnerRef(ownerReferences []metav1.OwnerReference, ref metav1.OwnerReference) []metav1.OwnerReference {
idx := indexOwnerRef(ownerReferences, ref)
if idx == -1 {
return append(ownerReferences, ref)
}
ownerReferences[idx] = ref
return ownerReferences
}
// indexOwnerRef returns the index of the owner reference in the slice if found, or -1.
func indexOwnerRef(ownerReferences []metav1.OwnerReference, ref metav1.OwnerReference) int {
for index, r := range ownerReferences {
if referSameObject(r, ref) {
return index
}
}
return -1
}
// Returns true if a and b point to the same object.
func referSameObject(a, b metav1.OwnerReference) bool {
aGV, err := schema.ParseGroupVersion(a.APIVersion)
if err != nil {
return false
}
bGV, err := schema.ParseGroupVersion(b.APIVersion)
if err != nil {
return false
}
return aGV.Group == bGV.Group && a.Kind == b.Kind && a.Name == b.Name
}
// MakeOwnerReference creates a metav1.OwnerReference pointing to the specified object
func MakeOwnerReference(owner client.Object) metav1.OwnerReference {
ownerGvk := owner.GetObjectKind().GroupVersionKind()
return metav1.OwnerReference{
APIVersion: strings.Join([]string{ownerGvk.Group, ownerGvk.Version}, "/"),
Kind: ownerGvk.Kind,
Name: owner.GetName(),
UID: owner.GetUID(),
}
}