Skip to content

Commit bb3dea0

Browse files
authored
Merge pull request #2316 from AndrewSirenko/fix-chart
Fix helm regression with a1CompatibilityDaemonSet & release chart v2.39.2
2 parents 08ac466 + b6e7d78 commit bb3dea0

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

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

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Helm chart
22

3+
## v2.39.2
4+
5+
### Urgent Upgrade Notes
6+
7+
Please upgrade from v2.38.1 directly to v2.39.2 to avoid upgrade failures if you are relying on `a1CompatibilityDaemonSet`.
8+
9+
### Bug or Regression
10+
- Fix helm regression when `a1CompatibilityDaemonSet=true` ([#2316](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2316), [@AndrewSirenko](https://github.com/AndrewSirenko))
11+
312
## v2.39.1
413

514
### Bug or Regression

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 1.39.0
33
name: aws-ebs-csi-driver
44
description: A Helm chart for AWS EBS CSI Driver
5-
version: 2.39.1
5+
version: 2.39.2
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/node.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
{{- include "node" (deepCopy $ | mustMerge $args) -}}
1313
{{- end }}
1414
{{- if .Values.a1CompatibilityDaemonSet }}
15-
{{- not .Values.fips | required "FIPS mode not supported for A1 instance family compatibility image" -}}
15+
{{- if .Values.fips -}}
16+
{{- fail "FIPS mode not supported for A1 instance family compatibility image" -}}
17+
{{- end -}}
1618
{{$args := dict
1719
"NodeName" "ebs-csi-node-a1compat"
1820
"Values" (dict

0 commit comments

Comments
 (0)