File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
charts/aws-fsx-csi-driver Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 19
19
labels :
20
20
app : fsx-csi-controller
21
21
{{- include "aws-fsx-csi-driver.labels" . | nindent 8 }}
22
+ {{- if .Values.controller.podLabels }}
23
+ {{- toYaml .Values.controller.podLabels | nindent 8 }}
24
+ {{- end }}
22
25
spec :
23
26
{{- if .Values.imagePullSecrets }}
24
27
imagePullSecrets :
96
99
args :
97
100
- --csi-address=$(ADDRESS)
98
101
- --v={{ .Values.sidecars.provisioner.logLevel }}
99
- - --timeout=5m
102
+ - --timeout={{ .Values.controller.timeout| default "5m" }}
100
103
- --extra-create-metadata
101
104
- --leader-election=true
102
105
env :
Original file line number Diff line number Diff line change 22
22
labels :
23
23
app : fsx-csi-node
24
24
{{- include "aws-fsx-csi-driver.labels" . | nindent 8 }}
25
+ {{- if .Values.node.podLabels }}
26
+ {{- toYaml .Values.node.podLabels | nindent 8 }}
27
+ {{- end }}
25
28
spec :
26
29
{{- if .Values.imagePullSecrets }}
27
30
imagePullSecrets :
Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ controller:
103
103
- effect : NoExecute
104
104
operator : Exists
105
105
tolerationSeconds : 300
106
+ # Specify the timeout of all calls to the CSI driver.
107
+ timeout : 5m
106
108
# securityContext on the controller pod
107
109
securityContext :
108
110
runAsNonRoot : false
@@ -126,6 +128,7 @@ controller:
126
128
values :
127
129
- fargate
128
130
- hybrid
131
+ podLabels : {}
129
132
# topologySpreadConstraints:
130
133
# - maxSkew: 1
131
134
# topologyKey: topology.kubernetes.io/zone
@@ -200,6 +203,7 @@ node:
200
203
values :
201
204
- fargate
202
205
- hybrid
206
+ podLabels : {}
203
207
204
208
nameOverride : " "
205
209
fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments