Skip to content

Commit 2ca9941

Browse files
committed
Add updateStrategy parameter to daemonset
1 parent ca58440 commit 2ca9941

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Helm chart
22

3+
# v1.10.1
4+
* Add updateStrategy parameter to Daemonset
5+
36
# v1.10.0
47
* Use driver image 1.3.0
58

@@ -80,6 +83,6 @@ Documentation on fsGroupPolicy can be found [here](https://kubernetes-csi.github
8083
* Add dnsPolicy and dnsConfig
8184
* Add imagePullSecrets
8285
* Add controller.tolerations, node.tolerations, and node.tolerateAllTaints
83-
* Remove extraArgs, securityContext, podSecurityContext
86+
* Remove extraArgs, securityContext, podSecurityContext
8487
* Bump sidecar images to support kubernetes >=1.20
8588
* Require kubernetes >=1.17

charts/aws-fsx-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.3.0"
33
name: aws-fsx-csi-driver
44
description: A Helm chart for AWS FSx for Lustre CSI Driver
5-
version: 1.10.0
5+
version: 1.10.1
66
kubeVersion: ">=1.17.0-0"
77
home: https://github.com/kubernetes-sigs/aws-fsx-csi-driver
88
sources:

charts/aws-fsx-csi-driver/templates/node-daemonset.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ spec:
99
matchLabels:
1010
app: fsx-csi-node
1111
{{- include "aws-fsx-csi-driver.selectorLabels" . | nindent 6 }}
12+
{{- with .Values.node.updateStrategy }}
13+
updateStrategy:
14+
{{- toYaml . | nindent 4 }}
15+
{{- end }}
1216
template:
1317
metadata:
1418
{{- with .Values.node.podAnnotations }}

charts/aws-fsx-csi-driver/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ node:
8888
name: fsx-csi-node-sa
8989
annotations: {}
9090
podAnnotations: {}
91+
updateStrategy: {}
9192
tolerateAllTaints: true
9293
tolerations:
9394
- operator: Exists

0 commit comments

Comments
 (0)