We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8382640 + 8baf512 commit 4ea7f65Copy full SHA for 4ea7f65
charts/aws-ebs-csi-driver/templates/controller.yaml
@@ -78,6 +78,9 @@ spec:
78
{{- end }}
79
- --logtostderr
80
- --v={{ .Values.controller.logLevel }}
81
+ {{- range .Values.controller.additionalArgs }}
82
+ - {{ . }}
83
+ {{- end }}
84
env:
85
- name: CSI_ENDPOINT
86
value: unix:///var/lib/csi/sockets/pluginproxy/csi.sock
charts/aws-ebs-csi-driver/values.yaml
@@ -59,6 +59,8 @@ tolerations: []
59
topologySpreadConstraints: []
60
61
controller:
62
+ # If arbitrary args like "--aws-sdk-debug-log=true" need to be passed, use this value
63
+ additionalArgs: []
64
affinity: {}
65
# True if enable volume scheduling for dynamic volume provisioning
66
0 commit comments