File tree Expand file tree Collapse file tree 4 files changed +34
-24
lines changed
manifest_staging/charts/secrets-store-csi-driver Expand file tree Collapse file tree 4 files changed +34
-24
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
37
37
| ` linux.livenessProbeImage.repository ` | Linux liveness-probe image repository | ` quay.io/k8scsi/livenessprobe ` |
38
38
| ` linux.livenessProbeImage.pullPolicy ` | Linux liveness-probe image pull policy | ` Always ` |
39
39
| ` linux.livenessProbeImage.tag ` | Linux liveness-probe image tag | ` v2.0.0 ` |
40
+ | ` linux.env ` | Environment variables to be passed for the daemonset on linux nodes | ` [] ` |
40
41
| ` windows.image.repository ` | Windows image repository | ` us.gcr.io/k8s-artifacts-prod/csi-secrets-store/driver ` |
41
42
| ` windows.image.pullPolicy ` | Windows image pull policy | ` IfNotPresent ` |
42
43
| ` windows.image.tag ` | Windows image tag | ` v0.0.12 ` |
@@ -51,6 +52,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
51
52
| ` windows.livenessProbeImage.repository ` | Windows liveness-probe image repository | ` mcr.microsoft.com/oss/kubernetes-csi/livenessprobe ` |
52
53
| ` windows.livenessProbeImage.pullPolicy ` | Windows liveness-probe image pull policy | ` Always ` |
53
54
| ` windows.livenessProbeImage.tag ` | Windows liveness-probe image tag | ` v2.0.1-alpha.1-windows-1809-amd64 ` |
55
+ | ` windows.env ` | Environment variables to be passed for the daemonset on windows nodes | ` [] ` |
54
56
| ` logLevel.debug ` | Enable debug logging | true |
55
57
| ` livenessProbe.port ` | Liveness probe port | ` 9808 ` |
56
58
| ` livenessProbe.logLevel ` | Liveness probe container logging verbosity level | ` 2 ` |
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ spec:
31
31
" del /f C:\\ registration\\ secrets-store.csi.k8s.io-reg.sock" ,
32
32
]
33
33
env :
34
- - name : KUBE_NODE_NAME
35
- valueFrom :
36
- fieldRef :
37
- apiVersion : v1
38
- fieldPath : spec.nodeName
34
+ - name : KUBE_NODE_NAME
35
+ valueFrom :
36
+ fieldRef :
37
+ apiVersion : v1
38
+ fieldPath : spec.nodeName
39
39
imagePullPolicy : {{ .Values.windows.registrarImage.pullPolicy }}
40
40
volumeMounts :
41
41
- name : plugin-dir
@@ -54,13 +54,16 @@ spec:
54
54
{{- end }}
55
55
- " --metrics-addr={{ .Values.windows.metricsAddr }}"
56
56
env :
57
- - name : CSI_ENDPOINT
58
- value : unix://C:\\csi\\csi.sock
59
- - name : KUBE_NODE_NAME
60
- valueFrom :
61
- fieldRef :
62
- apiVersion : v1
63
- fieldPath : spec.nodeName
57
+ {{- with .Values.windows.env }}
58
+ {{- toYaml . | nindent 10 }}
59
+ {{- end }}
60
+ - name : CSI_ENDPOINT
61
+ value : unix://C:\\csi\\csi.sock
62
+ - name : KUBE_NODE_NAME
63
+ valueFrom :
64
+ fieldRef :
65
+ apiVersion : v1
66
+ fieldPath : spec.nodeName
64
67
imagePullPolicy : {{ .Values.windows.image.pullPolicy }}
65
68
securityContext :
66
69
privileged : true
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ spec:
33
33
" rm -rf /registration/secrets-store.csi.k8s.io-reg.sock" ,
34
34
]
35
35
env :
36
- - name : KUBE_NODE_NAME
37
- valueFrom :
38
- fieldRef :
39
- apiVersion : v1
40
- fieldPath : spec.nodeName
36
+ - name : KUBE_NODE_NAME
37
+ valueFrom :
38
+ fieldRef :
39
+ apiVersion : v1
40
+ fieldPath : spec.nodeName
41
41
imagePullPolicy : {{ .Values.linux.registrarImage.pullPolicy }}
42
42
volumeMounts :
43
43
- name : plugin-dir
@@ -56,13 +56,16 @@ spec:
56
56
{{- end }}
57
57
- " --metrics-addr={{ .Values.linux.metricsAddr }}"
58
58
env :
59
- - name : CSI_ENDPOINT
60
- value : unix:///csi/csi.sock
61
- - name : KUBE_NODE_NAME
62
- valueFrom :
63
- fieldRef :
64
- apiVersion : v1
65
- fieldPath : spec.nodeName
59
+ {{- with .Values.linux.env }}
60
+ {{- toYaml . | nindent 10 }}
61
+ {{- end }}
62
+ - name : CSI_ENDPOINT
63
+ value : unix:///csi/csi.sock
64
+ - name : KUBE_NODE_NAME
65
+ valueFrom :
66
+ fieldRef :
67
+ apiVersion : v1
68
+ fieldPath : spec.nodeName
66
69
imagePullPolicy : {{ .Values.linux.image.pullPolicy }}
67
70
securityContext :
68
71
privileged : true
Original file line number Diff line number Diff line change 16
16
nodeSelector : {}
17
17
tolerations : []
18
18
metricsAddr : " :8080"
19
+ env : []
19
20
20
21
windows :
21
22
enabled : false
@@ -35,6 +36,7 @@ windows:
35
36
nodeSelector : {}
36
37
tolerations : []
37
38
metricsAddr : " :8080"
39
+ env : []
38
40
39
41
logLevel :
40
42
debug : true
You can’t perform that action at this time.
0 commit comments