interface KubeControllerManagerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCluster.KubeControllerManagerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCluster_KubeControllerManagerConfigProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCluster.KubeControllerManagerConfigProperty |
Python | aws_cdk.aws_eks_v2.CfnCluster.KubeControllerManagerConfigProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCluster » 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_v2 as eks_v2 } from 'aws-cdk-lib';
const kubeControllerManagerConfigProperty: eks_v2.CfnCluster.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