remove unused option deployment-controller-sync-period for deployment controller
Kubernetes-commit: 9ac1b4b68f3d97eaf41f3974e2eacf09ed0885ac
This commit is contained in:
parent
3aa2390ab2
commit
c321abbb87
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue