Skip to content

Commit 6daee0b

Browse files
authored
Merge pull request #2147 from ConnorJC3/fixmasteriambad
[master] Fix csi-attacher crash due to VAC feature gate on wrong sidecar
2 parents 559f8ff + 8558f58 commit 6daee0b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

charts/aws-ebs-csi-driver/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Helm chart
2+
## v2.35.1
3+
* Fix an issue causing the `csi-attacher` container to get stuck in `CrashLoopBackoff` on clusters with VAC enabled. Users with a VAC-enabled cluster are strongly encouraged to skip `v2.35.0` and/or upgrade directly to `v2.35.1` or later.
4+
25
## v2.35.0
36
* Bump driver version to `v1.35.0`
47
* Add reservedVolumeAttachments to windows nodes ([#2134](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2134),[@AndrewSirenko](https://github.com/AndrewSirenko))

charts/aws-ebs-csi-driver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 1.35.0
33
name: aws-ebs-csi-driver
44
description: A Helm chart for AWS EBS CSI Driver
5-
version: 2.35.0
5+
version: 2.35.1
66
kubeVersion: ">=1.17.0-0"
77
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
88
sources:

charts/aws-ebs-csi-driver/templates/controller.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,6 @@ spec:
290290
{{- if not (regexMatch "(-retry-interval-max)" (join " " .Values.sidecars.attacher.additionalArgs)) }}
291291
- --retry-interval-max=5m
292292
{{- end }}
293-
{{- if .Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass" }}
294-
- --feature-gates=VolumeAttributesClass=true
295-
{{- end }}
296293
{{- range .Values.sidecars.attacher.additionalArgs }}
297294
- {{ . }}
298295
{{- end }}
@@ -455,6 +452,9 @@ spec:
455452
{{- if not (regexMatch "(-retry-interval-max)" (join " " .Values.sidecars.resizer.additionalArgs)) }}
456453
- --retry-interval-max=30m
457454
{{- end }}
455+
{{- if .Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass" }}
456+
- --feature-gates=VolumeAttributesClass=true
457+
{{- end }}
458458
{{- range .Values.sidecars.resizer.additionalArgs }}
459459
- {{ . }}
460460
{{- end }}

0 commit comments

Comments
 (0)