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 1919 labels :
2020 app : fsx-csi-controller
2121 {{- include "aws-fsx-csi-driver.labels" . | nindent 8 }}
22+ {{- if .Values.controller.podLabels }}
23+ {{- toYaml .Values.controller.podLabels | nindent 8 }}
24+ {{- end }}
2225 spec :
2326 {{- if .Values.imagePullSecrets }}
2427 imagePullSecrets :
9699 args :
97100 - --csi-address=$(ADDRESS)
98101 - --v={{ .Values.sidecars.provisioner.logLevel }}
99- - --timeout=5m
102+ - --timeout={{ .Values.controller.timeout| default "5m" }}
100103 - --extra-create-metadata
101104 - --leader-election=true
102105 env :
Original file line number Diff line number Diff line change 2222 labels :
2323 app : fsx-csi-node
2424 {{- include "aws-fsx-csi-driver.labels" . | nindent 8 }}
25+ {{- if .Values.node.podLabels }}
26+ {{- toYaml .Values.node.podLabels | nindent 8 }}
27+ {{- end }}
2528 spec :
2629 {{- if .Values.imagePullSecrets }}
2730 imagePullSecrets :
Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ controller:
103103 - effect : NoExecute
104104 operator : Exists
105105 tolerationSeconds : 300
106+ # Specify the timeout of all calls to the CSI driver.
107+ timeout : 5m
106108 # securityContext on the controller pod
107109 securityContext :
108110 runAsNonRoot : false
@@ -126,6 +128,7 @@ controller:
126128 values :
127129 - fargate
128130 - hybrid
131+ podLabels : {}
129132 # topologySpreadConstraints:
130133 # - maxSkew: 1
131134 # topologyKey: topology.kubernetes.io/zone
@@ -200,6 +203,7 @@ node:
200203 values :
201204 - fargate
202205 - hybrid
206+ podLabels : {}
203207
204208nameOverride : " "
205209fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments