AlbControllerOptions

class aws_cdk.aws_eks.AlbControllerOptions(*, version, policy=None, repository=None)

Bases: object

Options for AlbController.

Parameters:
  • version (AlbControllerVersion) – Version of the controller.

  • policy (Optional[Any]) – 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). Default: - Corresponds to the predefined version.

  • repository (Optional[str]) – 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. Default: ‘602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/aws-load-balancer-controller’

ExampleMetadata:

infused

Example:

eks.Cluster(self, "HelloEKS",
    version=eks.KubernetesVersion.V1_29,
    alb_controller=eks.AlbControllerOptions(
        version=eks.AlbControllerVersion.V2_6_2
    )
)

Attributes

policy

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).

Default:
  • Corresponds to the predefined version.

repository

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.

Default:

‘602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/aws-load-balancer-controller’

version

Version of the controller.