/* 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 webhook import ( "context" "fmt" "time" webhookutil "github.com/openkruise/rollouts/pkg/webhook/util" webhookcontroller "github.com/openkruise/rollouts/pkg/webhook/util/controller" "k8s.io/apimachinery/pkg/util/sets" "k8s.io/client-go/rest" "k8s.io/klog/v2" "sigs.k8s.io/controller-runtime/pkg/manager" "sigs.k8s.io/controller-runtime/pkg/webhook" "sigs.k8s.io/controller-runtime/pkg/webhook/admission" "sigs.k8s.io/controller-runtime/pkg/webhook/conversion" ) type GateFunc func() (enabled bool) var ( // HandlerMap contains all admission webhook handlers. HandlerMap = map[string]admission.Handler{} handlerGates = map[string]GateFunc{} ) func addHandlers(m map[string]admission.Handler) { addHandlersWithGate(m, nil) } func addHandlersWithGate(m map[string]admission.Handler, fn GateFunc) { for path, handler := range m { if len(path) == 0 { klog.Warningf("Skip handler with empty path.") continue } if path[0] != '/' { path = "/" + path } _, found := HandlerMap[path] if found { klog.V(1).Infof("conflicting webhook builder path %v in handler map", path) } klog.Infof("add webhook path(%s)", path) HandlerMap[path] = handler if fn != nil { handlerGates[path] = fn } } } func filterActiveHandlers() { disablePaths := sets.NewString() for path := range HandlerMap { if fn, ok := handlerGates[path]; ok { if !fn() { disablePaths.Insert(path) } } } for _, path := range disablePaths.List() { delete(HandlerMap, path) } } func SetupWithManager(mgr manager.Manager) error { server := mgr.GetWebhookServer() server.Host = "0.0.0.0" server.Port = webhookutil.GetPort() server.CertDir = webhookutil.GetCertDir() // register admission handlers filterActiveHandlers() for path, handler := range HandlerMap { server.Register(path, &webhook.Admission{Handler: handler}) klog.V(3).Infof("Registered webhook handler %s", path) } err := initialize(context.TODO(), mgr.GetConfig()) if err != nil { return err } // register conversion webhook server.Register("/convert", &conversion.Webhook{}) klog.Infof("webhook init done") return nil } // +kubebuilder:rbac:groups=core,resources=secrets,verbs=get;list;watch;create;update;patch;delete,namespace=system // +kubebuilder:rbac:groups=admissionregistration.k8s.io,resources=mutatingwebhookconfigurations,verbs=get;list;watch;update;patch // +kubebuilder:rbac:groups=admissionregistration.k8s.io,resources=validatingwebhookconfigurations,verbs=get;list;watch;update;patch // +kubebuilder:rbac:groups=apiextensions.k8s.io,resources=customresourcedefinitions,verbs=get;list;watch;update;patch func initialize(ctx context.Context, cfg *rest.Config) error { c, err := webhookcontroller.New(cfg, HandlerMap) if err != nil { return err } go func() { c.Start(ctx) }() timer := time.NewTimer(time.Second * 20) defer timer.Stop() select { case <-webhookcontroller.Inited(): return nil case <-timer.C: return fmt.Errorf("failed to start webhook controller for waiting more than 20s") } }