Skip to content

Commit fec3595

Browse files
authored
feat: update cluster autoscaler to v1.30.0 (#681)
**What problem does this PR solve?**: This version includes an important fix kubernetes/autoscaler#6628. The MDs that get created will have the min and max annotations set to the same number replicas. Without this fix, changing those annotations won't force a change in the number of replicas. **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent 3823d0a commit fec3595

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

charts/cluster-api-runtime-extensions-nutanix/templates/cluster-autoscaler/manifests/cluster-autoscaler-configmap.yaml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ data:
1515
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
1616
app.kubernetes.io/managed-by: Helm
1717
app.kubernetes.io/name: clusterapi-cluster-autoscaler
18-
app.kubernetes.io/version: 1.29.0
19-
helm.sh/chart: cluster-autoscaler-9.35.0
18+
helm.sh/chart: cluster-autoscaler-9.37.0
2019
name: cluster-autoscaler-tmpl-clustername-tmpl
2120
namespace: tmpl-clusternamespace-tmpl
2221
spec:
@@ -34,8 +33,7 @@ data:
3433
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
3534
app.kubernetes.io/managed-by: Helm
3635
app.kubernetes.io/name: clusterapi-cluster-autoscaler
37-
app.kubernetes.io/version: 1.29.0
38-
helm.sh/chart: cluster-autoscaler-9.35.0
36+
helm.sh/chart: cluster-autoscaler-9.37.0
3937
name: cluster-autoscaler-tmpl-clustername-tmpl
4038
namespace: tmpl-clusternamespace-tmpl
4139
---
@@ -46,8 +44,7 @@ data:
4644
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
4745
app.kubernetes.io/managed-by: Helm
4846
app.kubernetes.io/name: clusterapi-cluster-autoscaler
49-
app.kubernetes.io/version: 1.29.0
50-
helm.sh/chart: cluster-autoscaler-9.35.0
47+
helm.sh/chart: cluster-autoscaler-9.37.0
5148
name: cluster-autoscaler-tmpl-clustername-tmpl
5249
namespace: tmpl-clusternamespace-tmpl
5350
rules:
@@ -111,8 +108,7 @@ data:
111108
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
112109
app.kubernetes.io/managed-by: Helm
113110
app.kubernetes.io/name: clusterapi-cluster-autoscaler
114-
app.kubernetes.io/version: 1.29.0
115-
helm.sh/chart: cluster-autoscaler-9.35.0
111+
helm.sh/chart: cluster-autoscaler-9.37.0
116112
name: cluster-autoscaler-tmpl-clustername-tmpl
117113
namespace: tmpl-clusternamespace-tmpl
118114
roleRef:
@@ -131,8 +127,7 @@ data:
131127
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
132128
app.kubernetes.io/managed-by: Helm
133129
app.kubernetes.io/name: clusterapi-cluster-autoscaler
134-
app.kubernetes.io/version: 1.29.0
135-
helm.sh/chart: cluster-autoscaler-9.35.0
130+
helm.sh/chart: cluster-autoscaler-9.37.0
136131
name: cluster-autoscaler-tmpl-clustername-tmpl
137132
namespace: tmpl-clusternamespace-tmpl
138133
spec:
@@ -153,8 +148,7 @@ data:
153148
app.kubernetes.io/instance: cluster-autoscaler-tmpl-clustername-tmpl
154149
app.kubernetes.io/managed-by: Helm
155150
app.kubernetes.io/name: clusterapi-cluster-autoscaler
156-
app.kubernetes.io/version: 1.29.0
157-
helm.sh/chart: cluster-autoscaler-9.35.0
151+
helm.sh/chart: cluster-autoscaler-9.37.0
158152
name: cluster-autoscaler-tmpl-clustername-tmpl
159153
namespace: tmpl-clusternamespace-tmpl
160154
spec:
@@ -191,7 +185,7 @@ data:
191185
valueFrom:
192186
fieldRef:
193187
fieldPath: spec.serviceAccountName
194-
image: registry.k8s.io/autoscaling/cluster-autoscaler:v1.29.0
188+
image: registry.k8s.io/autoscaling/cluster-autoscaler:v1.30.0
195189
imagePullPolicy: IfNotPresent
196190
livenessProbe:
197191
httpGet:

charts/cluster-api-runtime-extensions-nutanix/templates/helm-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ data:
1313
RepositoryURL: https://helm.cilium.io/
1414
cluster-autoscaler: |
1515
ChartName: cluster-autoscaler
16-
ChartVersion: 9.35.0
16+
ChartVersion: 9.37.0
1717
RepositoryURL: https://kubernetes.github.io/autoscaler
1818
metallb: |
1919
ChartName: metallb

make/addons.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
export CALICO_VERSION := v3.26.4
55
export CILIUM_VERSION := 1.15.0
66
export NODE_FEATURE_DISCOVERY_VERSION := 0.15.2
7-
export CLUSTER_AUTOSCALER_VERSION := 9.35.0
7+
export CLUSTER_AUTOSCALER_VERSION := 9.37.0
88
export AWS_CSI_SNAPSHOT_CONTROLLER_VERSION := v6.3.3
99
export AWS_EBS_CSI_CHART_VERSION := v2.28.1
1010
export NUTANIX_STORAGE_CSI_CHART_VERSION := v3.0.0-beta.1912

0 commit comments

Comments
 (0)