update violation_exceptions.list and make generated
Kubernetes-commit: 38bb53555e8b48ffa70d3dd84c00eb7eac35e77a
This commit is contained in:
parent
970540f520
commit
15e5114a51
|
|
@ -126,6 +126,10 @@ type KubeControllerManagerConfiguration struct {
|
||||||
HPAController HPAControllerConfiguration
|
HPAController HPAControllerConfiguration
|
||||||
// JobControllerConfiguration holds configuration for JobController related features.
|
// JobControllerConfiguration holds configuration for JobController related features.
|
||||||
JobController JobControllerConfiguration
|
JobController JobControllerConfiguration
|
||||||
|
// CronJobControllerConfiguration holds configuration for CronJobController related features.
|
||||||
|
CronJobController CronJobControllerConfiguration
|
||||||
|
// NamespaceControllerConfiguration holds configuration for NamespaceController
|
||||||
|
// related features.
|
||||||
// NamespaceControllerConfiguration holds configuration for NamespaceController
|
// NamespaceControllerConfiguration holds configuration for NamespaceController
|
||||||
// related features.
|
// related features.
|
||||||
NamespaceController NamespaceControllerConfiguration
|
NamespaceController NamespaceControllerConfiguration
|
||||||
|
|
@ -346,6 +350,14 @@ type JobControllerConfiguration struct {
|
||||||
ConcurrentJobSyncs int32
|
ConcurrentJobSyncs int32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CronJobControllerConfiguration contains elements describing CrongJob2Controller.
|
||||||
|
type CronJobControllerConfiguration struct {
|
||||||
|
// concurrentCronJobSyncs is the number of job objects that are
|
||||||
|
// allowed to sync concurrently. Larger number = more responsive jobs,
|
||||||
|
// but more CPU (and network) load.
|
||||||
|
ConcurrentCronJobSyncs int32
|
||||||
|
}
|
||||||
|
|
||||||
// NamespaceControllerConfiguration contains elements describing NamespaceController.
|
// NamespaceControllerConfiguration contains elements describing NamespaceController.
|
||||||
type NamespaceControllerConfiguration struct {
|
type NamespaceControllerConfiguration struct {
|
||||||
// namespaceSyncPeriod is the period for syncing namespace life-cycle
|
// namespaceSyncPeriod is the period for syncing namespace life-cycle
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,22 @@ func (in *CSRSigningControllerConfiguration) DeepCopy() *CSRSigningControllerCon
|
||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *CronJobControllerConfiguration) DeepCopyInto(out *CronJobControllerConfiguration) {
|
||||||
|
*out = *in
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJobControllerConfiguration.
|
||||||
|
func (in *CronJobControllerConfiguration) DeepCopy() *CronJobControllerConfiguration {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(CronJobControllerConfiguration)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *DaemonSetControllerConfiguration) DeepCopyInto(out *DaemonSetControllerConfiguration) {
|
func (in *DaemonSetControllerConfiguration) DeepCopyInto(out *DaemonSetControllerConfiguration) {
|
||||||
*out = *in
|
*out = *in
|
||||||
|
|
@ -281,6 +297,7 @@ func (in *KubeControllerManagerConfiguration) DeepCopyInto(out *KubeControllerMa
|
||||||
in.GarbageCollectorController.DeepCopyInto(&out.GarbageCollectorController)
|
in.GarbageCollectorController.DeepCopyInto(&out.GarbageCollectorController)
|
||||||
in.HPAController.DeepCopyInto(&out.HPAController)
|
in.HPAController.DeepCopyInto(&out.HPAController)
|
||||||
out.JobController = in.JobController
|
out.JobController = in.JobController
|
||||||
|
out.CronJobController = in.CronJobController
|
||||||
out.NamespaceController = in.NamespaceController
|
out.NamespaceController = in.NamespaceController
|
||||||
out.NodeIPAMController = in.NodeIPAMController
|
out.NodeIPAMController = in.NodeIPAMController
|
||||||
in.NodeLifecycleController.DeepCopyInto(&out.NodeLifecycleController)
|
in.NodeLifecycleController.DeepCopyInto(&out.NodeLifecycleController)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue