forked from openkruise/kruise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrollers.go
98 lines (88 loc) · 4.23 KB
/
controllers.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
95
96
97
98
/*
Copyright 2020 The Kruise 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 controller
import (
"github.com/openkruise/kruise/pkg/controller/advancedcronjob"
"github.com/openkruise/kruise/pkg/controller/broadcastjob"
"github.com/openkruise/kruise/pkg/controller/cloneset"
containerlauchpriority "github.com/openkruise/kruise/pkg/controller/containerlaunchpriority"
"github.com/openkruise/kruise/pkg/controller/containerrecreaterequest"
"github.com/openkruise/kruise/pkg/controller/daemonset"
"github.com/openkruise/kruise/pkg/controller/ephemeraljob"
"github.com/openkruise/kruise/pkg/controller/imagelistpulljob"
"github.com/openkruise/kruise/pkg/controller/imagepulljob"
"github.com/openkruise/kruise/pkg/controller/nodeimage"
"github.com/openkruise/kruise/pkg/controller/nodepodprobe"
"github.com/openkruise/kruise/pkg/controller/persistentpodstate"
"github.com/openkruise/kruise/pkg/controller/podprobemarker"
"github.com/openkruise/kruise/pkg/controller/podreadiness"
"github.com/openkruise/kruise/pkg/controller/podunavailablebudget"
"github.com/openkruise/kruise/pkg/controller/resourcedistribution"
"github.com/openkruise/kruise/pkg/controller/sidecarset"
"github.com/openkruise/kruise/pkg/controller/sidecarterminator"
"github.com/openkruise/kruise/pkg/controller/statefulset"
"github.com/openkruise/kruise/pkg/controller/uniteddeployment"
"github.com/openkruise/kruise/pkg/controller/workloadspread"
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/klog/v2"
"sigs.k8s.io/controller-runtime/pkg/manager"
)
var controllerAddFuncs []func(manager.Manager) error
var controllerAddAfterStarts []func(manager.Manager) error
func init() {
controllerAddFuncs = append(controllerAddFuncs, advancedcronjob.Add)
controllerAddFuncs = append(controllerAddFuncs, broadcastjob.Add)
controllerAddFuncs = append(controllerAddFuncs, cloneset.Add)
controllerAddFuncs = append(controllerAddFuncs, containerrecreaterequest.Add)
controllerAddFuncs = append(controllerAddFuncs, daemonset.Add)
controllerAddFuncs = append(controllerAddFuncs, nodeimage.Add)
controllerAddFuncs = append(controllerAddFuncs, imagepulljob.Add)
controllerAddFuncs = append(controllerAddFuncs, podreadiness.Add)
controllerAddFuncs = append(controllerAddFuncs, sidecarset.Add)
controllerAddFuncs = append(controllerAddFuncs, statefulset.Add)
controllerAddFuncs = append(controllerAddFuncs, uniteddeployment.Add)
controllerAddFuncs = append(controllerAddFuncs, podunavailablebudget.Add)
controllerAddFuncs = append(controllerAddFuncs, resourcedistribution.Add)
controllerAddFuncs = append(controllerAddFuncs, ephemeraljob.Add)
controllerAddFuncs = append(controllerAddFuncs, containerlauchpriority.Add)
controllerAddFuncs = append(controllerAddFuncs, sidecarterminator.Add)
controllerAddFuncs = append(controllerAddFuncs, podprobemarker.Add)
controllerAddFuncs = append(controllerAddFuncs, nodepodprobe.Add)
controllerAddFuncs = append(controllerAddFuncs, imagelistpulljob.Add)
controllerAddAfterStarts = append(controllerAddAfterStarts, workloadspread.Add)
controllerAddAfterStarts = append(controllerAddAfterStarts, persistentpodstate.Add)
}
func SetupWithManager(m manager.Manager) error {
for _, f := range controllerAddFuncs {
if err := f(m); err != nil {
if kindMatchErr, ok := err.(*meta.NoKindMatchError); ok {
klog.InfoS("CRD is not installed, its controller will perform noops!", "CRD", kindMatchErr.GroupKind)
continue
}
return err
}
}
return nil
}
func SetupAfterStart(m manager.Manager) error {
for _, f := range controllerAddAfterStarts {
if err := f(m); err != nil {
if kindMatchErr, ok := err.(*meta.NoKindMatchError); ok {
klog.InfoS("CRD is not installed, its controller will perform noops!", "CRD", kindMatchErr.GroupKind)
continue
}
return err
}
}
return nil
}