Skip to content

Commit 3d7c737

Browse files
authored
[PFMENG-3453] fix: CRD and chart version upgrade (#11)
1 parent 181d5c6 commit 3d7c737

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ module "crds" {
105105
version = ">= 1.0"
106106

107107
crds_urls = [
108-
"https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/refs/tags/${var.image_tag}/helm/aws-load-balancer-controller/crds/crds.yaml",
108+
"https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/refs/heads/main/helm/aws-load-balancer-controller/crds/crds.yaml",
109+
"https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/refs/heads/main/helm/aws-load-balancer-controller/crds/gateway-crds.yaml",
109110
]
110111
}
111112

templates/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ configureDefaultAffinity: true
9292
# nodes, and other user-defined topology domains.
9393
#
9494
# more details here: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
95-
topologySpreadConstraints: {}
95+
topologySpreadConstraints: []
9696

9797
updateStrategy: {}
9898
# type: RollingUpdate

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "chart_repository" {
1919
variable "chart_version" {
2020
description = "Version of Chart to install. Set to empty to install the latest version"
2121
type = string
22-
default = "1.8.4"
22+
default = "1.13.4"
2323
}
2424

2525
variable "chart_namespace" {
@@ -64,7 +64,7 @@ variable "prefer_ecr_repositories" {
6464
variable "image_tag" {
6565
description = "Image tag"
6666
type = string
67-
default = "v2.8.3"
67+
default = "v2.13.4"
6868
}
6969

7070
variable "name_override" {

0 commit comments

Comments
 (0)