You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/aws-ebs-csi-driver/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Helm chart
2
2
3
+
## 2.54.1
4
+
5
+
### Bugfix
6
+
7
+
- Fix VAC fallback on 1.33 and before by not explicitly enabling feature gate ([#2815](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2815), [@ConnorJC3](https://github.com/ConnorJC3))
Copy file name to clipboardExpand all lines: charts/aws-ebs-csi-driver/templates/controller.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -249,8 +249,8 @@ spec:
249
249
{{- if not (regexMatch "(-retry-interval-max)" (join " " .Values.sidecars.provisioner.additionalArgs)) }}
250
250
- --retry-interval-max=30m
251
251
{{- end }}
252
-
{{- if .Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass" }}
253
-
- --feature-gates=VolumeAttributesClass=true
252
+
{{- if not (or (.Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass") (.Capabilities.APIVersions.Has "storage.k8s.io/v1/VolumeAttributesClass")) }}
253
+
- --feature-gates=VolumeAttributesClass=false
254
254
{{- end }}
255
255
{{- if and (.Values.controller.enableMetrics) (not (regexMatch "(-http-endpoint)" (join " " .Values.sidecars.provisioner.additionalArgs))) }}
256
256
- --http-endpoint=0.0.0.0:3302
@@ -565,8 +565,8 @@ spec:
565
565
{{- if not (regexMatch "(-retry-interval-max)" (join " " .Values.sidecars.resizer.additionalArgs)) }}
566
566
- --retry-interval-max=30m
567
567
{{- end }}
568
-
{{- if .Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass" }}
569
-
- --feature-gates=VolumeAttributesClass=true
568
+
{{- if not (or (.Capabilities.APIVersions.Has "storage.k8s.io/v1beta1/VolumeAttributesClass") (.Capabilities.APIVersions.Has "storage.k8s.io/v1/VolumeAttributesClass")) }}
569
+
- --feature-gates=VolumeAttributesClass=false
570
570
{{- end }}
571
571
{{- if and (.Values.controller.enableMetrics) (not (regexMatch "(-http-endpoint)" (join " " .Values.sidecars.resizer.additionalArgs))) }}
0 commit comments