mirror of https://github.com/openkruise/kruise.git
47 lines
1.4 KiB
Go
47 lines
1.4 KiB
Go
/*
|
|
Copyright 2019 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 (
|
|
"fmt"
|
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"sigs.k8s.io/controller-runtime/pkg/manager"
|
|
logf "sigs.k8s.io/controller-runtime/pkg/runtime/log"
|
|
)
|
|
|
|
var log = logf.KBLog.WithName("AddToManager")
|
|
|
|
// AddToManagerFuncs is a list of functions to add all Controllers to the Manager
|
|
var AddToManagerFuncs []func(manager.Manager) error
|
|
|
|
// AddToManager adds all Controllers to the Manager
|
|
// +kubebuilder:rbac:groups=core,resources=configmaps,verbs=get;list;watch;create;update;patch;delete
|
|
func AddToManager(m manager.Manager) error {
|
|
for _, f := range AddToManagerFuncs {
|
|
if err := f(m); err != nil {
|
|
if kindMatchErr, ok := err.(*meta.NoKindMatchError); ok {
|
|
log.Info(fmt.Sprintf("CRD %v is not installed, its controller will perform noops!",
|
|
kindMatchErr.GroupKind))
|
|
continue
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|