interface KubeControllerManagerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.KubeControllerManagerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_KubeControllerManagerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.KubeControllerManagerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.KubeControllerManagerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » KubeControllerManagerConfigProperty |
The configuration for the Kubernetes controller manager on an Amazon EKS cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from '@aws-cdk/cfn-property-mixins';
const kubeControllerManagerConfigProperty: eks.CfnClusterPropsMixin.KubeControllerManagerConfigProperty = {
horizontalPodAutoscalerControllerConfig: {
horizontalPodAutoscalerSyncPeriod: 'horizontalPodAutoscalerSyncPeriod',
},
podGcControllerConfig: {
terminatedPodGcThreshold: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| horizontal | IResolvable | Horizontal | The horizontal pod autoscaler controller configuration. |
| pod | IResolvable | Pod | The pod garbage collector controller configuration. |
horizontalPodAutoscalerControllerConfig?
Type:
IResolvable | Horizontal
(optional)
The horizontal pod autoscaler controller configuration.
podGcControllerConfig?
Type:
IResolvable | Pod
(optional)
The pod garbage collector controller configuration.

.NET
Go
Java
Python
TypeScript