mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
e204d863a5
* Update Kubernetes to v1.22.1 * Update dependent modules to track with upstream Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
493 lines
21 KiB
Go
493 lines
21 KiB
Go
/*
|
|
Copyright 2016 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.
|
|
*/
|
|
|
|
package app
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"math/rand"
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
|
"k8s.io/apimachinery/pkg/util/sets"
|
|
"k8s.io/apimachinery/pkg/util/uuid"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/apiserver/pkg/server"
|
|
"k8s.io/apiserver/pkg/server/healthz"
|
|
cacheddiscovery "k8s.io/client-go/discovery/cached"
|
|
"k8s.io/client-go/informers"
|
|
"k8s.io/client-go/metadata"
|
|
"k8s.io/client-go/metadata/metadatainformer"
|
|
"k8s.io/client-go/restmapper"
|
|
"k8s.io/client-go/tools/leaderelection"
|
|
"k8s.io/client-go/tools/leaderelection/resourcelock"
|
|
cloudprovider "k8s.io/cloud-provider"
|
|
cloudcontrollerconfig "k8s.io/cloud-provider/app/config"
|
|
"k8s.io/cloud-provider/options"
|
|
cliflag "k8s.io/component-base/cli/flag"
|
|
"k8s.io/component-base/cli/globalflag"
|
|
"k8s.io/component-base/configz"
|
|
"k8s.io/component-base/term"
|
|
"k8s.io/component-base/version"
|
|
"k8s.io/component-base/version/verflag"
|
|
genericcontrollermanager "k8s.io/controller-manager/app"
|
|
"k8s.io/controller-manager/pkg/clientbuilder"
|
|
"k8s.io/controller-manager/pkg/informerfactory"
|
|
"k8s.io/controller-manager/pkg/leadermigration"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
const (
|
|
// ControllerStartJitter is the jitter value used when starting controller managers.
|
|
ControllerStartJitter = 1.0
|
|
// ConfigzName is the name used for register cloud-controller manager /configz, same with GroupName.
|
|
ConfigzName = "cloudcontrollermanager.config.k8s.io"
|
|
)
|
|
|
|
// NewCloudControllerManagerCommand creates a *cobra.Command object with default parameters
|
|
// initFuncConstructor is a map of named controller groups (you can start more than one in an init func) paired to their InitFuncConstructor.
|
|
// additionalFlags provides controller specific flags to be included in the complete set of controller manager flags
|
|
func NewCloudControllerManagerCommand(s *options.CloudControllerManagerOptions, cloudInitializer InitCloudFunc, initFuncConstructor map[string]InitFuncConstructor, additionalFlags cliflag.NamedFlagSets, stopCh <-chan struct{}) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "cloud-controller-manager",
|
|
Long: `The Cloud controller manager is a daemon that embeds
|
|
the cloud specific control loops shipped with Kubernetes.`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
verflag.PrintAndExitIfRequested()
|
|
cliflag.PrintFlags(cmd.Flags())
|
|
|
|
c, err := s.Config(ControllerNames(initFuncConstructor), ControllersDisabledByDefault.List())
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
return err
|
|
}
|
|
|
|
completedConfig := c.Complete()
|
|
cloud := cloudInitializer(completedConfig)
|
|
controllerInitializers := ConstructControllerInitializers(initFuncConstructor, completedConfig, cloud)
|
|
|
|
if err := Run(completedConfig, cloud, controllerInitializers, stopCh); err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
for _, arg := range args {
|
|
if len(arg) > 0 {
|
|
return fmt.Errorf("%q does not take any arguments, got %q", cmd.CommandPath(), args)
|
|
}
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
fs := cmd.Flags()
|
|
namedFlagSets := s.Flags(ControllerNames(initFuncConstructor), ControllersDisabledByDefault.List())
|
|
verflag.AddFlags(namedFlagSets.FlagSet("global"))
|
|
globalflag.AddGlobalFlags(namedFlagSets.FlagSet("global"), cmd.Name())
|
|
|
|
if flag.CommandLine.Lookup("cloud-provider-gce-lb-src-cidrs") != nil {
|
|
// hoist this flag from the global flagset to preserve the commandline until
|
|
// the gce cloudprovider is removed.
|
|
globalflag.Register(namedFlagSets.FlagSet("generic"), "cloud-provider-gce-lb-src-cidrs")
|
|
}
|
|
if flag.CommandLine.Lookup("cloud-provider-gce-l7lb-src-cidrs") != nil {
|
|
globalflag.Register(namedFlagSets.FlagSet("generic"), "cloud-provider-gce-l7lb-src-cidrs")
|
|
}
|
|
for _, f := range namedFlagSets.FlagSets {
|
|
fs.AddFlagSet(f)
|
|
}
|
|
for _, f := range additionalFlags.FlagSets {
|
|
fs.AddFlagSet(f)
|
|
}
|
|
|
|
usageFmt := "Usage:\n %s\n"
|
|
cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
|
|
cmd.SetUsageFunc(func(cmd *cobra.Command) error {
|
|
fmt.Fprintf(cmd.OutOrStderr(), usageFmt, cmd.UseLine())
|
|
cliflag.PrintSections(cmd.OutOrStderr(), namedFlagSets, cols)
|
|
return nil
|
|
})
|
|
cmd.SetHelpFunc(func(cmd *cobra.Command, args []string) {
|
|
fmt.Fprintf(cmd.OutOrStdout(), "%s\n\n"+usageFmt, cmd.Long, cmd.UseLine())
|
|
cliflag.PrintSections(cmd.OutOrStdout(), namedFlagSets, cols)
|
|
})
|
|
|
|
return cmd
|
|
}
|
|
|
|
// Run runs the ExternalCMServer. This should never exit.
|
|
func Run(c *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface, controllerInitializers map[string]InitFunc, stopCh <-chan struct{}) error {
|
|
// To help debugging, immediately log version
|
|
klog.Infof("Version: %+v", version.Get())
|
|
|
|
// setup /configz endpoint
|
|
if cz, err := configz.New(ConfigzName); err == nil {
|
|
cz.Set(c.ComponentConfig)
|
|
} else {
|
|
klog.Errorf("unable to register configz: %v", err)
|
|
}
|
|
|
|
// Setup any health checks we will want to use.
|
|
var checks []healthz.HealthChecker
|
|
var electionChecker *leaderelection.HealthzAdaptor
|
|
if c.ComponentConfig.Generic.LeaderElection.LeaderElect {
|
|
electionChecker = leaderelection.NewLeaderHealthzAdaptor(time.Second * 20)
|
|
checks = append(checks, electionChecker)
|
|
}
|
|
|
|
// Start the controller manager HTTP server
|
|
if c.SecureServing != nil {
|
|
unsecuredMux := genericcontrollermanager.NewBaseHandler(&c.ComponentConfig.Generic.Debugging, checks...)
|
|
handler := genericcontrollermanager.BuildHandlerChain(unsecuredMux, &c.Authorization, &c.Authentication)
|
|
// TODO: handle stoppedCh returned by c.SecureServing.Serve
|
|
if _, err := c.SecureServing.Serve(handler, 0, stopCh); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if c.InsecureServing != nil {
|
|
unsecuredMux := genericcontrollermanager.NewBaseHandler(&c.ComponentConfig.Generic.Debugging, checks...)
|
|
insecureSuperuserAuthn := server.AuthenticationInfo{Authenticator: &server.InsecureSuperuser{}}
|
|
handler := genericcontrollermanager.BuildHandlerChain(unsecuredMux, nil, &insecureSuperuserAuthn)
|
|
if err := c.InsecureServing.Serve(handler, 0, stopCh); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
run := func(ctx context.Context, controllerInitializers map[string]InitFunc) {
|
|
clientBuilder := clientbuilder.SimpleControllerClientBuilder{
|
|
ClientConfig: c.Kubeconfig,
|
|
}
|
|
controllerContext, err := CreateControllerContext(c, clientBuilder, ctx.Done())
|
|
if err != nil {
|
|
klog.Fatalf("error building controller context: %v", err)
|
|
}
|
|
if err := startControllers(cloud, controllerContext, c, ctx.Done(), controllerInitializers); err != nil {
|
|
klog.Fatalf("error running controllers: %v", err)
|
|
}
|
|
}
|
|
|
|
if !c.ComponentConfig.Generic.LeaderElection.LeaderElect {
|
|
run(context.TODO(), controllerInitializers)
|
|
panic("unreachable")
|
|
}
|
|
|
|
// Identity used to distinguish between multiple cloud controller manager instances
|
|
id, err := os.Hostname()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// add a uniquifier so that two processes on the same host don't accidentally both become active
|
|
id = id + "_" + string(uuid.NewUUID())
|
|
|
|
// leaderMigrator will be non-nil if and only if Leader Migration is enabled.
|
|
var leaderMigrator *leadermigration.LeaderMigrator = nil
|
|
|
|
// If leader migration is enabled, use the redirected initialization
|
|
// Check feature gate and configuration separately so that any error in configuration checking will not
|
|
// affect the result if the feature is not enabled.
|
|
if leadermigration.Enabled(&c.ComponentConfig.Generic) {
|
|
klog.Info("starting leader migration")
|
|
|
|
leaderMigrator = leadermigration.NewLeaderMigrator(&c.ComponentConfig.Generic.LeaderMigration,
|
|
"cloud-controller-manager")
|
|
}
|
|
|
|
// Start the main lock
|
|
go leaderElectAndRun(c, id, electionChecker,
|
|
c.ComponentConfig.Generic.LeaderElection.ResourceLock,
|
|
c.ComponentConfig.Generic.LeaderElection.ResourceName,
|
|
leaderelection.LeaderCallbacks{
|
|
OnStartedLeading: func(ctx context.Context) {
|
|
initializers := controllerInitializers
|
|
if leaderMigrator != nil {
|
|
// If leader migration is enabled, we should start only non-migrated controllers
|
|
// for the main lock.
|
|
initializers = filterInitializers(controllerInitializers, leaderMigrator.FilterFunc, leadermigration.ControllerNonMigrated)
|
|
klog.Info("leader migration: starting main controllers.")
|
|
// Signal the main lock is acquired, and thus migration lock is ready to attempt.
|
|
close(leaderMigrator.MigrationReady)
|
|
}
|
|
run(ctx, initializers)
|
|
},
|
|
OnStoppedLeading: func() {
|
|
klog.Fatalf("leaderelection lost")
|
|
},
|
|
})
|
|
|
|
// If Leader Migration is enabled, proceed to attempt the migration lock.
|
|
if leaderMigrator != nil {
|
|
// Wait for the signal of main lock being acquired.
|
|
<-leaderMigrator.MigrationReady
|
|
|
|
// Start the migration lock.
|
|
go leaderElectAndRun(c, id, electionChecker,
|
|
c.ComponentConfig.Generic.LeaderMigration.ResourceLock,
|
|
c.ComponentConfig.Generic.LeaderMigration.LeaderName,
|
|
leaderelection.LeaderCallbacks{
|
|
OnStartedLeading: func(ctx context.Context) {
|
|
klog.Info("leader migration: starting migrated controllers.")
|
|
run(ctx, filterInitializers(controllerInitializers, leaderMigrator.FilterFunc, leadermigration.ControllerMigrated))
|
|
},
|
|
OnStoppedLeading: func() {
|
|
klog.Fatalf("migration leaderelection lost")
|
|
},
|
|
})
|
|
}
|
|
|
|
select {}
|
|
}
|
|
|
|
// startControllers starts the cloud specific controller loops.
|
|
func startControllers(cloud cloudprovider.Interface, ctx genericcontrollermanager.ControllerContext, c *cloudcontrollerconfig.CompletedConfig, stopCh <-chan struct{}, controllers map[string]InitFunc) error {
|
|
// Initialize the cloud provider with a reference to the clientBuilder
|
|
cloud.Initialize(c.ClientBuilder, stopCh)
|
|
// Set the informer on the user cloud object
|
|
if informerUserCloud, ok := cloud.(cloudprovider.InformerUser); ok {
|
|
informerUserCloud.SetInformers(c.SharedInformers)
|
|
}
|
|
for controllerName, initFn := range controllers {
|
|
if !genericcontrollermanager.IsControllerEnabled(controllerName, ControllersDisabledByDefault, c.ComponentConfig.Generic.Controllers) {
|
|
klog.Warningf("%q is disabled", controllerName)
|
|
continue
|
|
}
|
|
|
|
klog.V(1).Infof("Starting %q", controllerName)
|
|
_, started, err := initFn(ctx)
|
|
if err != nil {
|
|
klog.Errorf("Error starting %q", controllerName)
|
|
return err
|
|
}
|
|
if !started {
|
|
klog.Warningf("Skipping %q", controllerName)
|
|
continue
|
|
}
|
|
klog.Infof("Started %q", controllerName)
|
|
|
|
time.Sleep(wait.Jitter(c.ComponentConfig.Generic.ControllerStartInterval.Duration, ControllerStartJitter))
|
|
}
|
|
|
|
// If apiserver is not running we should wait for some time and fail only then. This is particularly
|
|
// important when we start apiserver and controller manager at the same time.
|
|
if err := genericcontrollermanager.WaitForAPIServer(c.VersionedClient, 10*time.Second); err != nil {
|
|
klog.Fatalf("Failed to wait for apiserver being healthy: %v", err)
|
|
}
|
|
|
|
c.SharedInformers.Start(stopCh)
|
|
ctx.InformerFactory.Start(ctx.Stop)
|
|
|
|
select {}
|
|
}
|
|
|
|
// InitCloudFunc is used to initialize cloud
|
|
type InitCloudFunc func(config *cloudcontrollerconfig.CompletedConfig) cloudprovider.Interface
|
|
|
|
// InitFunc is used to launch a particular controller. It may run additional "should I activate checks".
|
|
// Any error returned will cause the controller process to `Fatal`
|
|
// The bool indicates whether the controller was enabled.
|
|
type InitFunc func(ctx genericcontrollermanager.ControllerContext) (debuggingHandler http.Handler, enabled bool, err error)
|
|
|
|
// InitFuncConstructor is used to construct InitFunc
|
|
type InitFuncConstructor func(completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) InitFunc
|
|
|
|
// ControllerNames indicate the default controller we are known.
|
|
func ControllerNames(initFuncConstructors map[string]InitFuncConstructor) []string {
|
|
ret := sets.StringKeySet(initFuncConstructors)
|
|
return ret.List()
|
|
}
|
|
|
|
// ControllersDisabledByDefault is the controller disabled default when starting cloud-controller managers.
|
|
var ControllersDisabledByDefault = sets.NewString()
|
|
|
|
// ConstructControllerInitializers is a private map of named controller groups (you can start more than one in an init func)
|
|
// paired to their InitFunc. This allows for structured downstream composition and subdivision.
|
|
func ConstructControllerInitializers(initFuncConstructors map[string]InitFuncConstructor, completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) map[string]InitFunc {
|
|
controllers := map[string]InitFunc{}
|
|
for name, constructor := range initFuncConstructors {
|
|
controllers[name] = constructor(completedConfig, cloud)
|
|
}
|
|
return controllers
|
|
}
|
|
|
|
// StartCloudNodeControllerWrapper is used to take cloud cofig as input and start cloud node controller
|
|
func StartCloudNodeControllerWrapper(completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) InitFunc {
|
|
return func(ctx genericcontrollermanager.ControllerContext) (http.Handler, bool, error) {
|
|
return startCloudNodeController(completedConfig, cloud, ctx.Stop)
|
|
}
|
|
}
|
|
|
|
// startCloudNodeLifecycleControllerWrapper is used to take cloud cofig as input and start cloud node lifecycle controller
|
|
func startCloudNodeLifecycleControllerWrapper(completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) InitFunc {
|
|
return func(ctx genericcontrollermanager.ControllerContext) (http.Handler, bool, error) {
|
|
return startCloudNodeLifecycleController(completedConfig, cloud, ctx.Stop)
|
|
}
|
|
}
|
|
|
|
// startServiceControllerWrapper is used to take cloud cofig as input and start service controller
|
|
func startServiceControllerWrapper(completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) InitFunc {
|
|
return func(ctx genericcontrollermanager.ControllerContext) (http.Handler, bool, error) {
|
|
return startServiceController(completedConfig, cloud, ctx.Stop)
|
|
}
|
|
}
|
|
|
|
// startRouteControllerWrapper is used to take cloud cofig as input and start route controller
|
|
func startRouteControllerWrapper(completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) InitFunc {
|
|
return func(ctx genericcontrollermanager.ControllerContext) (http.Handler, bool, error) {
|
|
return startRouteController(completedConfig, cloud, ctx.Stop)
|
|
}
|
|
}
|
|
|
|
// DefaultInitFuncConstructors is a map of default named controller groups paired with InitFuncConstructor
|
|
var DefaultInitFuncConstructors = map[string]InitFuncConstructor{
|
|
"cloud-node": StartCloudNodeControllerWrapper,
|
|
"cloud-node-lifecycle": startCloudNodeLifecycleControllerWrapper,
|
|
"service": startServiceControllerWrapper,
|
|
"route": startRouteControllerWrapper,
|
|
}
|
|
|
|
// CreateControllerContext creates a context struct containing references to resources needed by the
|
|
// controllers such as the cloud provider and clientBuilder. rootClientBuilder is only used for
|
|
// the shared-informers client and token controller.
|
|
func CreateControllerContext(s *cloudcontrollerconfig.CompletedConfig, clientBuilder clientbuilder.ControllerClientBuilder, stop <-chan struct{}) (genericcontrollermanager.ControllerContext, error) {
|
|
versionedClient := clientBuilder.ClientOrDie("shared-informers")
|
|
sharedInformers := informers.NewSharedInformerFactory(versionedClient, ResyncPeriod(s)())
|
|
|
|
metadataClient := metadata.NewForConfigOrDie(clientBuilder.ConfigOrDie("metadata-informers"))
|
|
metadataInformers := metadatainformer.NewSharedInformerFactory(metadataClient, ResyncPeriod(s)())
|
|
|
|
// If apiserver is not running we should wait for some time and fail only then. This is particularly
|
|
// important when we start apiserver and controller manager at the same time.
|
|
if err := genericcontrollermanager.WaitForAPIServer(versionedClient, 10*time.Second); err != nil {
|
|
return genericcontrollermanager.ControllerContext{}, fmt.Errorf("failed to wait for apiserver being healthy: %v", err)
|
|
}
|
|
|
|
// Use a discovery client capable of being refreshed.
|
|
discoveryClient := clientBuilder.ClientOrDie("controller-discovery")
|
|
cachedClient := cacheddiscovery.NewMemCacheClient(discoveryClient.Discovery())
|
|
restMapper := restmapper.NewDeferredDiscoveryRESTMapper(cachedClient)
|
|
go wait.Until(func() {
|
|
restMapper.Reset()
|
|
}, 30*time.Second, stop)
|
|
|
|
availableResources, err := GetAvailableResources(clientBuilder)
|
|
if err != nil {
|
|
return genericcontrollermanager.ControllerContext{}, err
|
|
}
|
|
|
|
ctx := genericcontrollermanager.ControllerContext{
|
|
ClientBuilder: clientBuilder,
|
|
InformerFactory: sharedInformers,
|
|
ObjectOrMetadataInformerFactory: informerfactory.NewInformerFactory(sharedInformers, metadataInformers),
|
|
RESTMapper: restMapper,
|
|
AvailableResources: availableResources,
|
|
Stop: stop,
|
|
InformersStarted: make(chan struct{}),
|
|
ResyncPeriod: ResyncPeriod(s),
|
|
}
|
|
return ctx, nil
|
|
}
|
|
|
|
// GetAvailableResources gets the map which contains all available resources of the apiserver
|
|
// TODO: In general, any controller checking this needs to be dynamic so
|
|
// users don't have to restart their controller manager if they change the apiserver.
|
|
// Until we get there, the structure here needs to be exposed for the construction of a proper ControllerContext.
|
|
func GetAvailableResources(clientBuilder clientbuilder.ControllerClientBuilder) (map[schema.GroupVersionResource]bool, error) {
|
|
client := clientBuilder.ClientOrDie("controller-discovery")
|
|
discoveryClient := client.Discovery()
|
|
_, resourceMap, err := discoveryClient.ServerGroupsAndResources()
|
|
if err != nil {
|
|
utilruntime.HandleError(fmt.Errorf("unable to get all supported resources from server: %v", err))
|
|
}
|
|
if len(resourceMap) == 0 {
|
|
return nil, fmt.Errorf("unable to get any supported resources from server")
|
|
}
|
|
|
|
allResources := map[schema.GroupVersionResource]bool{}
|
|
for _, apiResourceList := range resourceMap {
|
|
version, err := schema.ParseGroupVersion(apiResourceList.GroupVersion)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, apiResource := range apiResourceList.APIResources {
|
|
allResources[version.WithResource(apiResource.Name)] = true
|
|
}
|
|
}
|
|
|
|
return allResources, nil
|
|
}
|
|
|
|
// ResyncPeriod returns a function which generates a duration each time it is
|
|
// invoked; this is so that multiple controllers don't get into lock-step and all
|
|
// hammer the apiserver with list requests simultaneously.
|
|
func ResyncPeriod(c *cloudcontrollerconfig.CompletedConfig) func() time.Duration {
|
|
return func() time.Duration {
|
|
factor := rand.Float64() + 1
|
|
return time.Duration(float64(c.ComponentConfig.Generic.MinResyncPeriod.Nanoseconds()) * factor)
|
|
}
|
|
}
|
|
|
|
// leaderElectAndRun runs the leader election, and runs the callbacks once the leader lease is acquired.
|
|
// TODO: extract this function into staging/controller-manager
|
|
func leaderElectAndRun(c *cloudcontrollerconfig.CompletedConfig, lockIdentity string, electionChecker *leaderelection.HealthzAdaptor, resourceLock string, leaseName string, callbacks leaderelection.LeaderCallbacks) {
|
|
rl, err := resourcelock.NewFromKubeconfig(resourceLock,
|
|
c.ComponentConfig.Generic.LeaderElection.ResourceNamespace,
|
|
leaseName,
|
|
resourcelock.ResourceLockConfig{
|
|
Identity: lockIdentity,
|
|
EventRecorder: c.EventRecorder,
|
|
},
|
|
c.Kubeconfig,
|
|
c.ComponentConfig.Generic.LeaderElection.RenewDeadline.Duration)
|
|
if err != nil {
|
|
klog.Fatalf("error creating lock: %v", err)
|
|
}
|
|
|
|
leaderelection.RunOrDie(context.TODO(), leaderelection.LeaderElectionConfig{
|
|
Lock: rl,
|
|
LeaseDuration: c.ComponentConfig.Generic.LeaderElection.LeaseDuration.Duration,
|
|
RenewDeadline: c.ComponentConfig.Generic.LeaderElection.RenewDeadline.Duration,
|
|
RetryPeriod: c.ComponentConfig.Generic.LeaderElection.RetryPeriod.Duration,
|
|
Callbacks: callbacks,
|
|
WatchDog: electionChecker,
|
|
Name: leaseName,
|
|
})
|
|
|
|
panic("unreachable")
|
|
}
|
|
|
|
// filterInitializers returns initializers that has filterFunc(name) == expected.
|
|
// filterFunc can be nil, in which case the original initializers will be returned directly.
|
|
// InitFunc is local to cloud-controller-manager, and thus filterInitializers has to be local too.
|
|
func filterInitializers(allInitializers map[string]InitFunc, filterFunc leadermigration.FilterFunc, expected leadermigration.FilterResult) map[string]InitFunc {
|
|
if filterFunc == nil {
|
|
return allInitializers
|
|
}
|
|
initializers := make(map[string]InitFunc)
|
|
for name, initFunc := range allInitializers {
|
|
if filterFunc(name) == expected {
|
|
initializers[name] = initFunc
|
|
}
|
|
}
|
|
return initializers
|
|
}
|