interface AlbControllerOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Eks.V2.Alpha.AlbControllerOptions |
![]() | github.com/aws/aws-cdk-go/awscdkeks-v2alpha/v2#AlbControllerOptions |
![]() | software.amazon.awscdk.services.eks.v2.alpha.AlbControllerOptions |
![]() | aws_cdk.aws_eks_v2_alpha.AlbControllerOptions |
![]() | @aws-cdk/aws-eks-v2-alpha » AlbControllerOptions |
Options for AlbController
.
Example
new eks.Cluster(this, 'HelloEKS', {
version: eks.KubernetesVersion.V1_32,
albController: {
version: eks.AlbControllerVersion.V2_8_2,
},
});
Properties
Name | Type | Description |
---|---|---|
version | Alb | Version of the controller. |
policy? | any | The IAM policy to apply to the service account. |
repository? | string | The repository to pull the controller image from. |
version
Type:
Alb
Version of the controller.
policy?
Type:
any
(optional, default: Corresponds to the predefined version.)
The IAM policy to apply to the service account.
If you're using one of the built-in versions, this is not required since CDK ships with the appropriate policies for those versions.
However, if you are using a custom version, this is required (and validated).
repository?
Type:
string
(optional, default: '602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/aws-load-balancer-controller')
The repository to pull the controller image from.
Note that the default repository works for most regions, but not all. If the repository is not applicable to your region, use a custom repository according to the information here: https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases.