Skip to content

Commit

Permalink
update: aws-lb-controller to v2.7.0 (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroniscode authored Feb 13, 2024
1 parent a81fe2e commit 3f72eaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pkg/application/aws_lb_controller/aws_lb_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// GitHub: https://github.com/kubernetes-sigs/aws-load-balancer-controller
// Helm: https://github.com/aws/eks-charts/tree/master/stable/aws-load-balancer-controller
// Repo: https://gallery.ecr.aws/eks/aws-load-balancer-controller
// Version: Latest is v2.6.1 (as of 10/2/23)
// Version: Latest is v2.7.0 (as of 2/1/24)

func NewApp() *application.Application {
app := &application.Application{
Expand Down Expand Up @@ -85,6 +85,7 @@ Statement:
- elasticloadbalancing:DescribeTargetGroupAttributes
- elasticloadbalancing:DescribeTargetHealth
- elasticloadbalancing:DescribeTags
- elasticloadbalancing:DescribeTrustStores
Resource: "*"
- Effect: Allow
Action:
Expand Down
8 changes: 4 additions & 4 deletions pkg/application/aws_lb_controller/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ func newOptions() (options *AWSLBControllerOptions, flags cmd.Flags) {
Namespace: "awslb",
ServiceAccount: "aws-load-balancer-controller",
DefaultVersion: &application.LatestPrevious{
LatestChart: "1.6.1",
Latest: "v2.6.1",
PreviousChart: "1.6.0",
Previous: "v2.6.0",
LatestChart: "1.7.0",
Latest: "v2.7.0",
PreviousChart: "1.6.1",
Previous: "v2.6.1",
},
},
DefaultTargetType: "instance",
Expand Down

0 comments on commit 3f72eaf

Please sign in to comment.