mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.5 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 (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"time"
 | |
| 
 | |
| 	"k8s.io/client-go/util/flowcontrol"
 | |
| 	"k8s.io/controller-manager/controller"
 | |
| 	"k8s.io/kubernetes/pkg/controller/daemon"
 | |
| 	"k8s.io/kubernetes/pkg/controller/deployment"
 | |
| 	"k8s.io/kubernetes/pkg/controller/replicaset"
 | |
| 	"k8s.io/kubernetes/pkg/controller/statefulset"
 | |
| )
 | |
| 
 | |
| func startDaemonSetController(ctx context.Context, controllerContext ControllerContext) (controller.Interface, bool, error) {
 | |
| 	dsc, err := daemon.NewDaemonSetsController(
 | |
| 		controllerContext.InformerFactory.Apps().V1().DaemonSets(),
 | |
| 		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
 | |
| 		controllerContext.InformerFactory.Core().V1().Pods(),
 | |
| 		controllerContext.InformerFactory.Core().V1().Nodes(),
 | |
| 		controllerContext.ClientBuilder.ClientOrDie("daemon-set-controller"),
 | |
| 		flowcontrol.NewBackOff(1*time.Second, 15*time.Minute),
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		return nil, true, fmt.Errorf("error creating DaemonSets controller: %v", err)
 | |
| 	}
 | |
| 	go dsc.Run(ctx, int(controllerContext.ComponentConfig.DaemonSetController.ConcurrentDaemonSetSyncs))
 | |
| 	return nil, true, nil
 | |
| }
 | |
| 
 | |
| func startStatefulSetController(ctx context.Context, controllerContext ControllerContext) (controller.Interface, bool, error) {
 | |
| 	go statefulset.NewStatefulSetController(
 | |
| 		controllerContext.InformerFactory.Core().V1().Pods(),
 | |
| 		controllerContext.InformerFactory.Apps().V1().StatefulSets(),
 | |
| 		controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
 | |
| 		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
 | |
| 		controllerContext.ClientBuilder.ClientOrDie("statefulset-controller"),
 | |
| 	).Run(ctx, int(controllerContext.ComponentConfig.StatefulSetController.ConcurrentStatefulSetSyncs))
 | |
| 	return nil, true, nil
 | |
| }
 | |
| 
 | |
| func startReplicaSetController(ctx context.Context, controllerContext ControllerContext) (controller.Interface, bool, error) {
 | |
| 	go replicaset.NewReplicaSetController(
 | |
| 		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
 | |
| 		controllerContext.InformerFactory.Core().V1().Pods(),
 | |
| 		controllerContext.ClientBuilder.ClientOrDie("replicaset-controller"),
 | |
| 		replicaset.BurstReplicas,
 | |
| 	).Run(ctx, int(controllerContext.ComponentConfig.ReplicaSetController.ConcurrentRSSyncs))
 | |
| 	return nil, true, nil
 | |
| }
 | |
| 
 | |
| func startDeploymentController(ctx context.Context, controllerContext ControllerContext) (controller.Interface, bool, error) {
 | |
| 	dc, err := deployment.NewDeploymentController(
 | |
| 		controllerContext.InformerFactory.Apps().V1().Deployments(),
 | |
| 		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
 | |
| 		controllerContext.InformerFactory.Core().V1().Pods(),
 | |
| 		controllerContext.ClientBuilder.ClientOrDie("deployment-controller"),
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		return nil, true, fmt.Errorf("error creating Deployment controller: %v", err)
 | |
| 	}
 | |
| 	go dc.Run(ctx, int(controllerContext.ComponentConfig.DeploymentController.ConcurrentDeploymentSyncs))
 | |
| 	return nil, true, nil
 | |
| }
 |