remove unused option deployment-controller-sync-period for deployment controller

Kubernetes-commit: 9ac1b4b68f3d97eaf41f3974e2eacf09ed0885ac
This commit is contained in:
SataQiu 2022-03-30 20:00:53 +08:00 committed by Kubernetes Publisher
parent 3aa2390ab2
commit c321abbb87
2 changed files with 0 additions and 3 deletions

View File

@ -225,8 +225,6 @@ type DeploymentControllerConfiguration struct {
// allowed to sync concurrently. Larger number = more responsive deployments,
// but more CPU (and network) load.
ConcurrentDeploymentSyncs int32
// deploymentControllerSyncPeriod is the period for syncing the deployments.
DeploymentControllerSyncPeriod metav1.Duration
}
// StatefulSetControllerConfiguration contains elements describing StatefulSetController.

View File

@ -114,7 +114,6 @@ func (in *DaemonSetControllerConfiguration) DeepCopy() *DaemonSetControllerConfi
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DeploymentControllerConfiguration) DeepCopyInto(out *DeploymentControllerConfiguration) {
*out = *in
out.DeploymentControllerSyncPeriod = in.DeploymentControllerSyncPeriod
return
}