Skip to content

Commit

Permalink
Merge pull request #2316 from AndrewSirenko/fix-chart
Browse files Browse the repository at this point in the history
Fix helm regression with a1CompatibilityDaemonSet & release chart v2.39.2
  • Loading branch information
k8s-ci-robot authored Jan 28, 2025
2 parents 08ac466 + b6e7d78 commit bb3dea0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions charts/aws-ebs-csi-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Helm chart

## v2.39.2

### Urgent Upgrade Notes

Please upgrade from v2.38.1 directly to v2.39.2 to avoid upgrade failures if you are relying on `a1CompatibilityDaemonSet`.

### Bug or Regression
- Fix helm regression when `a1CompatibilityDaemonSet=true` ([#2316](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2316), [@AndrewSirenko](https://github.com/AndrewSirenko))

## v2.39.1

### Bug or Regression
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.39.0
name: aws-ebs-csi-driver
description: A Helm chart for AWS EBS CSI Driver
version: 2.39.1
version: 2.39.2
kubeVersion: ">=1.17.0-0"
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
sources:
Expand Down
4 changes: 3 additions & 1 deletion charts/aws-ebs-csi-driver/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
{{- include "node" (deepCopy $ | mustMerge $args) -}}
{{- end }}
{{- if .Values.a1CompatibilityDaemonSet }}
{{- not .Values.fips | required "FIPS mode not supported for A1 instance family compatibility image" -}}
{{- if .Values.fips -}}
{{- fail "FIPS mode not supported for A1 instance family compatibility image" -}}
{{- end -}}
{{$args := dict
"NodeName" "ebs-csi-node-a1compat"
"Values" (dict
Expand Down

0 comments on commit bb3dea0

Please sign in to comment.