mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			419 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			419 lines
		
	
	
		
			17 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 implements a server that runs a set of active
 | 
						|
// components.  This includes replication controllers, service endpoints and
 | 
						|
// nodes.
 | 
						|
//
 | 
						|
package app
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net"
 | 
						|
	"strings"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/golang/glog"
 | 
						|
 | 
						|
	"k8s.io/api/core/v1"
 | 
						|
	"k8s.io/apimachinery/pkg/api/meta"
 | 
						|
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
						|
	utilfeature "k8s.io/apiserver/pkg/util/feature"
 | 
						|
	"k8s.io/client-go/discovery"
 | 
						|
	cacheddiscovery "k8s.io/client-go/discovery/cached"
 | 
						|
	"k8s.io/client-go/dynamic"
 | 
						|
	clientset "k8s.io/client-go/kubernetes"
 | 
						|
	"k8s.io/kubernetes/pkg/api/legacyscheme"
 | 
						|
	"k8s.io/kubernetes/pkg/controller"
 | 
						|
	endpointcontroller "k8s.io/kubernetes/pkg/controller/endpoint"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/garbagecollector"
 | 
						|
	namespacecontroller "k8s.io/kubernetes/pkg/controller/namespace"
 | 
						|
	nodeipamcontroller "k8s.io/kubernetes/pkg/controller/nodeipam"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/nodeipam/ipam"
 | 
						|
	lifecyclecontroller "k8s.io/kubernetes/pkg/controller/nodelifecycle"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/podgc"
 | 
						|
	replicationcontroller "k8s.io/kubernetes/pkg/controller/replication"
 | 
						|
	resourcequotacontroller "k8s.io/kubernetes/pkg/controller/resourcequota"
 | 
						|
	routecontroller "k8s.io/kubernetes/pkg/controller/route"
 | 
						|
	servicecontroller "k8s.io/kubernetes/pkg/controller/service"
 | 
						|
	serviceaccountcontroller "k8s.io/kubernetes/pkg/controller/serviceaccount"
 | 
						|
	ttlcontroller "k8s.io/kubernetes/pkg/controller/ttl"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/volume/attachdetach"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/volume/expand"
 | 
						|
	persistentvolumecontroller "k8s.io/kubernetes/pkg/controller/volume/persistentvolume"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/volume/pvcprotection"
 | 
						|
	"k8s.io/kubernetes/pkg/controller/volume/pvprotection"
 | 
						|
	"k8s.io/kubernetes/pkg/features"
 | 
						|
	"k8s.io/kubernetes/pkg/quota/generic"
 | 
						|
	quotainstall "k8s.io/kubernetes/pkg/quota/install"
 | 
						|
	"k8s.io/kubernetes/pkg/util/metrics"
 | 
						|
)
 | 
						|
 | 
						|
func startServiceController(ctx ControllerContext) (bool, error) {
 | 
						|
	serviceController, err := servicecontroller.New(
 | 
						|
		ctx.Cloud,
 | 
						|
		ctx.ClientBuilder.ClientOrDie("service-controller"),
 | 
						|
		ctx.InformerFactory.Core().V1().Services(),
 | 
						|
		ctx.InformerFactory.Core().V1().Nodes(),
 | 
						|
		ctx.ComponentConfig.ClusterName,
 | 
						|
	)
 | 
						|
	if err != nil {
 | 
						|
		// This error shouldn't fail. It lives like this as a legacy.
 | 
						|
		glog.Errorf("Failed to start service controller: %v", err)
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
	go serviceController.Run(ctx.Stop, int(ctx.ComponentConfig.ConcurrentServiceSyncs))
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startNodeIpamController(ctx ControllerContext) (bool, error) {
 | 
						|
	var clusterCIDR *net.IPNet = nil
 | 
						|
	var serviceCIDR *net.IPNet = nil
 | 
						|
	if ctx.ComponentConfig.AllocateNodeCIDRs {
 | 
						|
		var err error
 | 
						|
		if len(strings.TrimSpace(ctx.ComponentConfig.ClusterCIDR)) != 0 {
 | 
						|
			_, clusterCIDR, err = net.ParseCIDR(ctx.ComponentConfig.ClusterCIDR)
 | 
						|
			if err != nil {
 | 
						|
				glog.Warningf("Unsuccessful parsing of cluster CIDR %v: %v", ctx.ComponentConfig.ClusterCIDR, err)
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		if len(strings.TrimSpace(ctx.ComponentConfig.ServiceCIDR)) != 0 {
 | 
						|
			_, serviceCIDR, err = net.ParseCIDR(ctx.ComponentConfig.ServiceCIDR)
 | 
						|
			if err != nil {
 | 
						|
				glog.Warningf("Unsuccessful parsing of service CIDR %v: %v", ctx.ComponentConfig.ServiceCIDR, err)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	nodeIpamController, err := nodeipamcontroller.NewNodeIpamController(
 | 
						|
		ctx.InformerFactory.Core().V1().Nodes(),
 | 
						|
		ctx.Cloud,
 | 
						|
		ctx.ClientBuilder.ClientOrDie("node-controller"),
 | 
						|
		clusterCIDR,
 | 
						|
		serviceCIDR,
 | 
						|
		int(ctx.ComponentConfig.NodeCIDRMaskSize),
 | 
						|
		ctx.ComponentConfig.AllocateNodeCIDRs,
 | 
						|
		ipam.CIDRAllocatorType(ctx.ComponentConfig.CIDRAllocatorType),
 | 
						|
	)
 | 
						|
	if err != nil {
 | 
						|
		return true, err
 | 
						|
	}
 | 
						|
	go nodeIpamController.Run(ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startNodeLifecycleController(ctx ControllerContext) (bool, error) {
 | 
						|
	lifecycleController, err := lifecyclecontroller.NewNodeLifecycleController(
 | 
						|
		ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
		ctx.InformerFactory.Core().V1().Nodes(),
 | 
						|
		ctx.InformerFactory.Extensions().V1beta1().DaemonSets(),
 | 
						|
		ctx.Cloud,
 | 
						|
		ctx.ClientBuilder.ClientOrDie("node-controller"),
 | 
						|
		ctx.ComponentConfig.NodeMonitorPeriod.Duration,
 | 
						|
		ctx.ComponentConfig.NodeStartupGracePeriod.Duration,
 | 
						|
		ctx.ComponentConfig.NodeMonitorGracePeriod.Duration,
 | 
						|
		ctx.ComponentConfig.PodEvictionTimeout.Duration,
 | 
						|
		ctx.ComponentConfig.NodeEvictionRate,
 | 
						|
		ctx.ComponentConfig.SecondaryNodeEvictionRate,
 | 
						|
		ctx.ComponentConfig.LargeClusterSizeThreshold,
 | 
						|
		ctx.ComponentConfig.UnhealthyZoneThreshold,
 | 
						|
		ctx.ComponentConfig.EnableTaintManager,
 | 
						|
		utilfeature.DefaultFeatureGate.Enabled(features.TaintBasedEvictions),
 | 
						|
		utilfeature.DefaultFeatureGate.Enabled(features.TaintNodesByCondition),
 | 
						|
	)
 | 
						|
	if err != nil {
 | 
						|
		return true, err
 | 
						|
	}
 | 
						|
	go lifecycleController.Run(ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startRouteController(ctx ControllerContext) (bool, error) {
 | 
						|
	if !ctx.ComponentConfig.AllocateNodeCIDRs || !ctx.ComponentConfig.ConfigureCloudRoutes {
 | 
						|
		glog.Infof("Will not configure cloud provider routes for allocate-node-cidrs: %v, configure-cloud-routes: %v.", ctx.ComponentConfig.AllocateNodeCIDRs, ctx.ComponentConfig.ConfigureCloudRoutes)
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
	if ctx.Cloud == nil {
 | 
						|
		glog.Warning("configure-cloud-routes is set, but no cloud provider specified. Will not configure cloud provider routes.")
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
	routes, ok := ctx.Cloud.Routes()
 | 
						|
	if !ok {
 | 
						|
		glog.Warning("configure-cloud-routes is set, but cloud provider does not support routes. Will not configure cloud provider routes.")
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
	_, clusterCIDR, err := net.ParseCIDR(ctx.ComponentConfig.ClusterCIDR)
 | 
						|
	if err != nil {
 | 
						|
		glog.Warningf("Unsuccessful parsing of cluster CIDR %v: %v", ctx.ComponentConfig.ClusterCIDR, err)
 | 
						|
	}
 | 
						|
	routeController := routecontroller.New(routes, ctx.ClientBuilder.ClientOrDie("route-controller"), ctx.InformerFactory.Core().V1().Nodes(), ctx.ComponentConfig.ClusterName, clusterCIDR)
 | 
						|
	go routeController.Run(ctx.Stop, ctx.ComponentConfig.RouteReconciliationPeriod.Duration)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startPersistentVolumeBinderController(ctx ControllerContext) (bool, error) {
 | 
						|
	params := persistentvolumecontroller.ControllerParameters{
 | 
						|
		KubeClient:                ctx.ClientBuilder.ClientOrDie("persistent-volume-binder"),
 | 
						|
		SyncPeriod:                ctx.ComponentConfig.PVClaimBinderSyncPeriod.Duration,
 | 
						|
		VolumePlugins:             ProbeControllerVolumePlugins(ctx.Cloud, ctx.ComponentConfig.VolumeConfiguration),
 | 
						|
		Cloud:                     ctx.Cloud,
 | 
						|
		ClusterName:               ctx.ComponentConfig.ClusterName,
 | 
						|
		VolumeInformer:            ctx.InformerFactory.Core().V1().PersistentVolumes(),
 | 
						|
		ClaimInformer:             ctx.InformerFactory.Core().V1().PersistentVolumeClaims(),
 | 
						|
		ClassInformer:             ctx.InformerFactory.Storage().V1().StorageClasses(),
 | 
						|
		PodInformer:               ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
		EnableDynamicProvisioning: ctx.ComponentConfig.VolumeConfiguration.EnableDynamicProvisioning,
 | 
						|
	}
 | 
						|
	volumeController, volumeControllerErr := persistentvolumecontroller.NewController(params)
 | 
						|
	if volumeControllerErr != nil {
 | 
						|
		return true, fmt.Errorf("failed to construct persistentvolume controller: %v", volumeControllerErr)
 | 
						|
	}
 | 
						|
	go volumeController.Run(ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startAttachDetachController(ctx ControllerContext) (bool, error) {
 | 
						|
	if ctx.ComponentConfig.ReconcilerSyncLoopPeriod.Duration < time.Second {
 | 
						|
		return true, fmt.Errorf("Duration time must be greater than one second as set via command line option reconcile-sync-loop-period.")
 | 
						|
	}
 | 
						|
	attachDetachController, attachDetachControllerErr :=
 | 
						|
		attachdetach.NewAttachDetachController(
 | 
						|
			ctx.ClientBuilder.ClientOrDie("attachdetach-controller"),
 | 
						|
			ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
			ctx.InformerFactory.Core().V1().Nodes(),
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumeClaims(),
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumes(),
 | 
						|
			ctx.Cloud,
 | 
						|
			ProbeAttachableVolumePlugins(),
 | 
						|
			GetDynamicPluginProber(ctx.ComponentConfig.VolumeConfiguration),
 | 
						|
			ctx.ComponentConfig.DisableAttachDetachReconcilerSync,
 | 
						|
			ctx.ComponentConfig.ReconcilerSyncLoopPeriod.Duration,
 | 
						|
			attachdetach.DefaultTimerConfig,
 | 
						|
		)
 | 
						|
	if attachDetachControllerErr != nil {
 | 
						|
		return true, fmt.Errorf("failed to start attach/detach controller: %v", attachDetachControllerErr)
 | 
						|
	}
 | 
						|
	go attachDetachController.Run(ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startVolumeExpandController(ctx ControllerContext) (bool, error) {
 | 
						|
	if utilfeature.DefaultFeatureGate.Enabled(features.ExpandPersistentVolumes) {
 | 
						|
		expandController, expandControllerErr := expand.NewExpandController(
 | 
						|
			ctx.ClientBuilder.ClientOrDie("expand-controller"),
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumeClaims(),
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumes(),
 | 
						|
			ctx.Cloud,
 | 
						|
			ProbeExpandableVolumePlugins(ctx.ComponentConfig.VolumeConfiguration))
 | 
						|
 | 
						|
		if expandControllerErr != nil {
 | 
						|
			return true, fmt.Errorf("Failed to start volume expand controller : %v", expandControllerErr)
 | 
						|
		}
 | 
						|
		go expandController.Run(ctx.Stop)
 | 
						|
		return true, nil
 | 
						|
	}
 | 
						|
	return false, nil
 | 
						|
}
 | 
						|
 | 
						|
func startEndpointController(ctx ControllerContext) (bool, error) {
 | 
						|
	go endpointcontroller.NewEndpointController(
 | 
						|
		ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
		ctx.InformerFactory.Core().V1().Services(),
 | 
						|
		ctx.InformerFactory.Core().V1().Endpoints(),
 | 
						|
		ctx.ClientBuilder.ClientOrDie("endpoint-controller"),
 | 
						|
	).Run(int(ctx.ComponentConfig.ConcurrentEndpointSyncs), ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startReplicationController(ctx ControllerContext) (bool, error) {
 | 
						|
	go replicationcontroller.NewReplicationManager(
 | 
						|
		ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
		ctx.InformerFactory.Core().V1().ReplicationControllers(),
 | 
						|
		ctx.ClientBuilder.ClientOrDie("replication-controller"),
 | 
						|
		replicationcontroller.BurstReplicas,
 | 
						|
	).Run(int(ctx.ComponentConfig.ConcurrentRCSyncs), ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startPodGCController(ctx ControllerContext) (bool, error) {
 | 
						|
	go podgc.NewPodGC(
 | 
						|
		ctx.ClientBuilder.ClientOrDie("pod-garbage-collector"),
 | 
						|
		ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
		int(ctx.ComponentConfig.TerminatedPodGCThreshold),
 | 
						|
	).Run(ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startResourceQuotaController(ctx ControllerContext) (bool, error) {
 | 
						|
	resourceQuotaControllerClient := ctx.ClientBuilder.ClientOrDie("resourcequota-controller")
 | 
						|
	discoveryFunc := resourceQuotaControllerClient.Discovery().ServerPreferredNamespacedResources
 | 
						|
	listerFuncForResource := generic.ListerFuncForResourceFunc(ctx.InformerFactory.ForResource)
 | 
						|
	quotaConfiguration := quotainstall.NewQuotaConfigurationForControllers(listerFuncForResource)
 | 
						|
 | 
						|
	resourceQuotaControllerOptions := &resourcequotacontroller.ResourceQuotaControllerOptions{
 | 
						|
		QuotaClient:               resourceQuotaControllerClient.CoreV1(),
 | 
						|
		ResourceQuotaInformer:     ctx.InformerFactory.Core().V1().ResourceQuotas(),
 | 
						|
		ResyncPeriod:              controller.StaticResyncPeriodFunc(ctx.ComponentConfig.ResourceQuotaSyncPeriod.Duration),
 | 
						|
		InformerFactory:           ctx.InformerFactory,
 | 
						|
		ReplenishmentResyncPeriod: ctx.ResyncPeriod,
 | 
						|
		DiscoveryFunc:             discoveryFunc,
 | 
						|
		IgnoredResourcesFunc:      quotaConfiguration.IgnoredResources,
 | 
						|
		InformersStarted:          ctx.InformersStarted,
 | 
						|
		Registry:                  generic.NewRegistry(quotaConfiguration.Evaluators()),
 | 
						|
	}
 | 
						|
	if resourceQuotaControllerClient.CoreV1().RESTClient().GetRateLimiter() != nil {
 | 
						|
		if err := metrics.RegisterMetricAndTrackRateLimiterUsage("resource_quota_controller", resourceQuotaControllerClient.CoreV1().RESTClient().GetRateLimiter()); err != nil {
 | 
						|
			return true, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	resourceQuotaController, err := resourcequotacontroller.NewResourceQuotaController(resourceQuotaControllerOptions)
 | 
						|
	if err != nil {
 | 
						|
		return false, err
 | 
						|
	}
 | 
						|
	go resourceQuotaController.Run(int(ctx.ComponentConfig.ConcurrentResourceQuotaSyncs), ctx.Stop)
 | 
						|
 | 
						|
	// Periodically the quota controller to detect new resource types
 | 
						|
	go resourceQuotaController.Sync(discoveryFunc, 30*time.Second, ctx.Stop)
 | 
						|
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startNamespaceController(ctx ControllerContext) (bool, error) {
 | 
						|
	// TODO: should use a dynamic RESTMapper built from the discovery results.
 | 
						|
	restMapper := legacyscheme.Registry.RESTMapper()
 | 
						|
 | 
						|
	// the namespace cleanup controller is very chatty.  It makes lots of discovery calls and then it makes lots of delete calls
 | 
						|
	// the ratelimiter negatively affects its speed.  Deleting 100 total items in a namespace (that's only a few of each resource
 | 
						|
	// including events), takes ~10 seconds by default.
 | 
						|
	nsKubeconfig := ctx.ClientBuilder.ConfigOrDie("namespace-controller")
 | 
						|
	nsKubeconfig.QPS *= 10
 | 
						|
	nsKubeconfig.Burst *= 10
 | 
						|
	namespaceKubeClient := clientset.NewForConfigOrDie(nsKubeconfig)
 | 
						|
	namespaceClientPool := dynamic.NewClientPool(nsKubeconfig, restMapper, dynamic.LegacyAPIPathResolverFunc)
 | 
						|
 | 
						|
	discoverResourcesFn := namespaceKubeClient.Discovery().ServerPreferredNamespacedResources
 | 
						|
 | 
						|
	namespaceController := namespacecontroller.NewNamespaceController(
 | 
						|
		namespaceKubeClient,
 | 
						|
		namespaceClientPool,
 | 
						|
		discoverResourcesFn,
 | 
						|
		ctx.InformerFactory.Core().V1().Namespaces(),
 | 
						|
		ctx.ComponentConfig.NamespaceSyncPeriod.Duration,
 | 
						|
		v1.FinalizerKubernetes,
 | 
						|
	)
 | 
						|
	go namespaceController.Run(int(ctx.ComponentConfig.ConcurrentNamespaceSyncs), ctx.Stop)
 | 
						|
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startServiceAccountController(ctx ControllerContext) (bool, error) {
 | 
						|
	sac, err := serviceaccountcontroller.NewServiceAccountsController(
 | 
						|
		ctx.InformerFactory.Core().V1().ServiceAccounts(),
 | 
						|
		ctx.InformerFactory.Core().V1().Namespaces(),
 | 
						|
		ctx.ClientBuilder.ClientOrDie("service-account-controller"),
 | 
						|
		serviceaccountcontroller.DefaultServiceAccountsControllerOptions(),
 | 
						|
	)
 | 
						|
	if err != nil {
 | 
						|
		return true, fmt.Errorf("error creating ServiceAccount controller: %v", err)
 | 
						|
	}
 | 
						|
	go sac.Run(1, ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startTTLController(ctx ControllerContext) (bool, error) {
 | 
						|
	go ttlcontroller.NewTTLController(
 | 
						|
		ctx.InformerFactory.Core().V1().Nodes(),
 | 
						|
		ctx.ClientBuilder.ClientOrDie("ttl-controller"),
 | 
						|
	).Run(5, ctx.Stop)
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startGarbageCollectorController(ctx ControllerContext) (bool, error) {
 | 
						|
	if !ctx.ComponentConfig.EnableGarbageCollector {
 | 
						|
		return false, nil
 | 
						|
	}
 | 
						|
 | 
						|
	gcClientset := ctx.ClientBuilder.ClientOrDie("generic-garbage-collector")
 | 
						|
 | 
						|
	// Use a discovery client capable of being refreshed.
 | 
						|
	discoveryClient := cacheddiscovery.NewMemCacheClient(gcClientset.Discovery())
 | 
						|
	restMapper := discovery.NewDeferredDiscoveryRESTMapper(discoveryClient, meta.InterfacesForUnstructured)
 | 
						|
	restMapper.Reset()
 | 
						|
 | 
						|
	config := ctx.ClientBuilder.ConfigOrDie("generic-garbage-collector")
 | 
						|
	config.ContentConfig = dynamic.ContentConfig()
 | 
						|
	// TODO: Make NewMetadataCodecFactory support arbitrary (non-compiled)
 | 
						|
	// resource types. Otherwise we'll be storing full Unstructured data in our
 | 
						|
	// caches for custom resources. Consider porting it to work with
 | 
						|
	// metav1beta1.PartialObjectMetadata.
 | 
						|
	metaOnlyClientPool := dynamic.NewClientPool(config, restMapper, dynamic.LegacyAPIPathResolverFunc)
 | 
						|
	clientPool := dynamic.NewClientPool(config, restMapper, dynamic.LegacyAPIPathResolverFunc)
 | 
						|
 | 
						|
	// Get an initial set of deletable resources to prime the garbage collector.
 | 
						|
	deletableResources := garbagecollector.GetDeletableResources(discoveryClient)
 | 
						|
	ignoredResources := make(map[schema.GroupResource]struct{})
 | 
						|
	for _, r := range ctx.ComponentConfig.GCIgnoredResources {
 | 
						|
		ignoredResources[schema.GroupResource{Group: r.Group, Resource: r.Resource}] = struct{}{}
 | 
						|
	}
 | 
						|
	garbageCollector, err := garbagecollector.NewGarbageCollector(
 | 
						|
		metaOnlyClientPool,
 | 
						|
		clientPool,
 | 
						|
		restMapper,
 | 
						|
		deletableResources,
 | 
						|
		ignoredResources,
 | 
						|
		ctx.InformerFactory,
 | 
						|
		ctx.InformersStarted,
 | 
						|
	)
 | 
						|
	if err != nil {
 | 
						|
		return true, fmt.Errorf("Failed to start the generic garbage collector: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	// Start the garbage collector.
 | 
						|
	workers := int(ctx.ComponentConfig.ConcurrentGCSyncs)
 | 
						|
	go garbageCollector.Run(workers, ctx.Stop)
 | 
						|
 | 
						|
	// Periodically refresh the RESTMapper with new discovery information and sync
 | 
						|
	// the garbage collector.
 | 
						|
	go garbageCollector.Sync(gcClientset.Discovery(), 30*time.Second, ctx.Stop)
 | 
						|
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
func startPVCProtectionController(ctx ControllerContext) (bool, error) {
 | 
						|
	if utilfeature.DefaultFeatureGate.Enabled(features.StorageObjectInUseProtection) {
 | 
						|
		go pvcprotection.NewPVCProtectionController(
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumeClaims(),
 | 
						|
			ctx.InformerFactory.Core().V1().Pods(),
 | 
						|
			ctx.ClientBuilder.ClientOrDie("pvc-protection-controller"),
 | 
						|
		).Run(1, ctx.Stop)
 | 
						|
		return true, nil
 | 
						|
	}
 | 
						|
	return false, nil
 | 
						|
}
 | 
						|
 | 
						|
func startPVProtectionController(ctx ControllerContext) (bool, error) {
 | 
						|
	if utilfeature.DefaultFeatureGate.Enabled(features.StorageObjectInUseProtection) {
 | 
						|
		go pvprotection.NewPVProtectionController(
 | 
						|
			ctx.InformerFactory.Core().V1().PersistentVolumes(),
 | 
						|
			ctx.ClientBuilder.ClientOrDie("pv-protection-controller"),
 | 
						|
		).Run(1, ctx.Stop)
 | 
						|
		return true, nil
 | 
						|
	}
 | 
						|
	return false, nil
 | 
						|
}
 |