-
Notifications
You must be signed in to change notification settings - Fork 264
/
api.go
94 lines (76 loc) · 2.83 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright 2018 The CDI 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.
*/
package operator
import (
"context"
"fmt"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/kubernetes"
"k8s.io/klog/v2"
"kubevirt.io/containerized-data-importer/pkg/util"
"sigs.k8s.io/controller-runtime/pkg/client"
)
const (
// ConfigMapName is the name of the CDI Operator config map
// used to determine which CDI instance is "active"
// and maybe other stuff some day in the future
ConfigMapName = "cdi-config"
)
// SetOwnerRuntime makes the current "active" CDI CR the owner of the object using runtime lib client
func SetOwnerRuntime(client client.Client, object metav1.Object) error {
namespace := util.GetNamespace()
configMap := &corev1.ConfigMap{}
if err := client.Get(context.TODO(), types.NamespacedName{Name: ConfigMapName, Namespace: namespace}, configMap); err != nil {
klog.Warningf("ConfigMap %s does not exist, so not assigning owner", ConfigMapName)
return nil
}
return SetConfigAsOwner(configMap, object)
}
// SetOwner makes the current "active" CDI CR the owner of the object
func SetOwner(client kubernetes.Interface, object metav1.Object) error {
namespace := util.GetNamespace()
configMap, err := client.CoreV1().ConfigMaps(namespace).Get(context.TODO(), ConfigMapName, metav1.GetOptions{})
if err != nil {
klog.Warningf("ConfigMap %s does not exist, so not assigning owner", ConfigMapName)
return nil
}
return SetConfigAsOwner(configMap, object)
}
// SetConfigAsOwner sets the passed in config map as owner of the object
func SetConfigAsOwner(configMap *corev1.ConfigMap, object metav1.Object) error {
configMapOwner := getController(configMap.GetOwnerReferences())
if configMapOwner == nil {
return fmt.Errorf("configmap has no owner")
}
for _, o := range object.GetOwnerReferences() {
if o.Controller != nil && *o.Controller {
if o.UID == configMapOwner.UID {
// already set to current obj
return nil
}
return fmt.Errorf("object %+v already owned by %+v", object, o)
}
}
object.SetOwnerReferences(append(object.GetOwnerReferences(), *configMapOwner))
return nil
}
func getController(owners []metav1.OwnerReference) *metav1.OwnerReference {
for _, owner := range owners {
if owner.Controller != nil && *owner.Controller {
return &owner
}
}
return nil
}