Skip to content

Commit 43a0cec

Browse files
authored
fix(eks): latest AlbController version isn't compatible with the chart version (#20826)
Bump the chart version. Fixes #20764 ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [x] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [x] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent cefa453 commit 43a0cec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/@aws-cdk/aws-eks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ From the docs:
535535
> * It satisfies Kubernetes Service resources by provisioning Network Load Balancers.
536536
537537
To deploy the controller on your EKS cluster, configure the `albController` property:
538-
538+
539539
```ts
540540
new eks.Cluster(this, 'HelloEKS', {
541541
version: eks.KubernetesVersion.V1_21,

packages/@aws-cdk/aws-eks/lib/alb-controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export class AlbController extends Construct {
231231
// want to expose this since helm here is just an implementation detail
232232
// for installing a specific version of the controller itself.
233233
// https://github.com/aws/eks-charts/blob/v0.0.65/stable/aws-load-balancer-controller/Chart.yaml
234-
version: '1.2.7',
234+
version: '1.4.1',
235235

236236
wait: true,
237237
timeout: Duration.minutes(15),

packages/@aws-cdk/aws-eks/test/alb-controller.integ.snapshot/aws-cdk-eks-cluster-alb-controller-test.template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@
14771477
},
14781478
"Release": "aws-load-balancer-controller",
14791479
"Chart": "aws-load-balancer-controller",
1480-
"Version": "1.2.7",
1480+
"Version": "1.4.1",
14811481
"Wait": true,
14821482
"Timeout": "900s",
14831483
"Values": {

packages/@aws-cdk/aws-eks/test/eks-inference.integ.snapshot/aws-cdk-eks-cluster-inference-test.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,7 +1842,7 @@
18421842
},
18431843
"Release": "aws-load-balancer-controller",
18441844
"Chart": "aws-load-balancer-controller",
1845-
"Version": "1.2.7",
1845+
"Version": "1.4.1",
18461846
"Wait": true,
18471847
"Timeout": "900s",
18481848
"Values": {
@@ -2247,4 +2247,4 @@
22472247
"Default": "/aws/service/eks/optimized-ami/1.21/amazon-linux-2-gpu/recommended/image_id"
22482248
}
22492249
}
2250-
}
2250+
}

0 commit comments

Comments
 (0)