Skip to content

Commit 4ea7f65

Browse files
authored
Merge pull request #970 from mkkatica/feature/allow-add-debug-args
Feature/allow add debug args
2 parents 8382640 + 8baf512 commit 4ea7f65

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

charts/aws-ebs-csi-driver/templates/controller.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ spec:
7878
{{- end }}
7979
- --logtostderr
8080
- --v={{ .Values.controller.logLevel }}
81+
{{- range .Values.controller.additionalArgs }}
82+
- {{ . }}
83+
{{- end }}
8184
env:
8285
- name: CSI_ENDPOINT
8386
value: unix:///var/lib/csi/sockets/pluginproxy/csi.sock

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ tolerations: []
5959
topologySpreadConstraints: []
6060

6161
controller:
62+
# If arbitrary args like "--aws-sdk-debug-log=true" need to be passed, use this value
63+
additionalArgs: []
6264
affinity: {}
6365
# True if enable volume scheduling for dynamic volume provisioning
6466
env:

0 commit comments

Comments
 (0)