Skip to content

Commit

Permalink
update: `ack-ec2-controller" to v1.2.20 (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroniscode authored Sep 5, 2024
1 parent 03ec852 commit e5e2168
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
// Version: Latest is v1.0.16 (as of 9/5/24)

func NewApp() *application.Application {
app := &application.Application{
return &application.Application{
Command: cmd.Command{
Parent: "ack",
Name: "apigatewayv2-controller",
Expand Down Expand Up @@ -59,7 +59,6 @@ func NewApp() *application.Application {
},
},
}
return app
}

// https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/helm/values.yaml
Expand Down
14 changes: 7 additions & 7 deletions pkg/application/ack/ec2_controller/ec2_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (
// Helm: https://github.com/aws-controllers-k8s/ec2-controller/tree/main/helm
// Chart: https://gallery.ecr.aws/aws-controllers-k8s/ec2-chart
// Repo: https://gallery.ecr.aws/aws-controllers-k8s/ec2-controller
// Version: Latest is v1.0.3 (as of 6/11/23)
// Version: Latest is v1.2.20 (as of 9/4/24)

func NewApp() *application.Application {
app := &application.Application{
return &application.Application{
Command: cmd.Command{
Parent: "ack",
Name: "ec2-controller",
Expand All @@ -41,10 +41,10 @@ func NewApp() *application.Application {
Namespace: "ack-system",
ServiceAccount: "ack-ec2-controller",
DefaultVersion: &application.LatestPrevious{
LatestChart: "1.0.3",
Latest: "1.0.3",
PreviousChart: "v0.0.21",
Previous: "v0.0.21",
LatestChart: "1.2.20",
Latest: "1.2.20",
PreviousChart: "1.0.3",
Previous: "1.0.3",
},
},

Expand All @@ -56,9 +56,9 @@ func NewApp() *application.Application {
},
},
}
return app
}

// https://github.com/aws-controllers-k8s/ec2-controller/blob/main/helm/values.yaml
const valuesTemplate = `---
image:
tag: {{ .Version }}
Expand Down

0 comments on commit e5e2168

Please sign in to comment.