File tree 3 files changed +16
-0
lines changed
charts/aws-ebs-csi-driver
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 57
57
hostProcess: true
58
58
runAsUserName: "NT AUTHORITY\\SYSTEM"
59
59
hostNetwork: true
60
+ { {- with .Values.node.initContainers } }
61
+ initContainers:
62
+ { {- toYaml . | nindent 8 } }
63
+ { {- end } }
60
64
{ {- end } }
61
65
containers:
62
66
- name: ebs-plugin
Original file line number Diff line number Diff line change 60
60
securityContext:
61
61
{ {- toYaml . | nindent 8 } }
62
62
{ {- end } }
63
+ { {- with .Values.node.initContainers } }
64
+ initContainers:
65
+ { {- toYaml . | nindent 8 } }
66
+ { {- end } }
63
67
containers:
64
68
- name: ebs-plugin
65
69
image: { { printf " %s%s:%s" (default " " .Values.image.containerRegistry) .Values.image.repository (default (printf " v%s" .Chart.AppVersion) (toString .Values.image.tag)) } }
Original file line number Diff line number Diff line change @@ -439,6 +439,14 @@ node:
439
439
containerSecurityContext :
440
440
readOnlyRootFilesystem : true
441
441
privileged : true
442
+ initContainers : []
443
+ # containers to be run before the csi-node's container starts.
444
+ #
445
+ # Example:
446
+ #
447
+ # - name: wait
448
+ # image: busybox
449
+ # command: [ 'sh', '-c', "sleep 20" ]
442
450
# Enable opentelemetry tracing for the plugin running on the daemonset
443
451
otelTracing : {}
444
452
# otelServiceName: ebs-csi-node
You can’t perform that action at this time.
0 commit comments