File tree Expand file tree Collapse file tree 8 files changed +18
-12
lines changed
charts/secrets-store-csi-driver
manifest_staging/charts/secrets-store-csi-driver Expand file tree Collapse file tree 8 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,13 @@ The following table lists the configurable parameters of the csi-secrets-store-p
29
29
| ` linux.enabled ` | Install secrets store csi driver on linux nodes | true |
30
30
| ` linux.kubeletRootDir ` | Configure the kubelet root dir | ` /var/lib/kubelet ` |
31
31
| ` linux.nodeSelector ` | Node Selector for the daemonset on linux nodes | ` {} ` |
32
- | ` linux.tolerations ` | Tolerations for the daemonset on linux nodes | ` [] ` |
33
32
| ` linux.metricsAddr ` | The address the metric endpoint binds to | ` :8080 ` |
34
33
| ` windows.image.repository ` | Windows image repository | ` us.gcr.io/k8s-artifacts-prod/csi-secrets-store/driver ` |
35
34
| ` windows.image.pullPolicy ` | Windows image pull policy | ` IfNotPresent ` |
36
35
| ` windows.image.tag ` | Windows image tag | ` v0.0.12 ` |
37
36
| ` windows.enabled ` | Install secrets store csi driver on windows nodes | false |
38
37
| ` windows.kubeletRootDir ` | Configure the kubelet root dir | ` C:\var\lib\kubelet ` |
39
38
| ` windows.nodeSelector ` | Node Selector for the daemonset on windows nodes | ` {} ` |
40
- | ` windows.tolerations ` | Tolerations for the daemonset on windows nodes | ` [] ` |
41
39
| ` windows.metricsAddr ` | The address the metric endpoint binds to | ` :8080 ` |
42
40
| ` logLevel.debug ` | Enable debug logging | true |
43
41
| ` livenessProbe.port ` | Liveness probe port | ` 9808 ` |
Original file line number Diff line number Diff line change @@ -121,7 +121,3 @@ spec:
121
121
{{- toYaml .Values.windows.nodeSelector | nindent 8 }}
122
122
{{- end }}
123
123
{{- end -}}
124
- {{- with .Values.windows.tolerations }}
125
- tolerations :
126
- {{ toYaml . | indent 8 }}
127
- {{- end }}
Original file line number Diff line number Diff line change @@ -124,7 +124,3 @@ spec:
124
124
{{- toYaml .Values.linux.nodeSelector | nindent 8 }}
125
125
{{- end }}
126
126
{{- end -}}
127
- {{- with .Values.linux.tolerations }}
128
- tolerations :
129
- {{ toYaml . | indent 8 }}
130
- {{- end }}
Original file line number Diff line number Diff line change 6
6
pullPolicy : Always
7
7
kubeletRootDir : /var/lib/kubelet
8
8
nodeSelector : {}
9
- tolerations : []
10
9
metricsAddr : " :8080"
11
10
12
11
windows :
@@ -17,7 +16,6 @@ windows:
17
16
pullPolicy : IfNotPresent
18
17
kubeletRootDir : C:\var\lib\kubelet
19
18
nodeSelector : {}
20
- tolerations : []
21
19
metricsAddr : " :8080"
22
20
23
21
logLevel :
Original file line number Diff line number Diff line change @@ -29,12 +29,16 @@ The following table lists the configurable parameters of the csi-secrets-store-p
29
29
| ` linux.enabled ` | Install secrets store csi driver on linux nodes | true |
30
30
| ` linux.kubeletRootDir ` | Configure the kubelet root dir | ` /var/lib/kubelet ` |
31
31
| ` linux.nodeSelector ` | Node Selector for the daemonset on linux nodes | ` {} ` |
32
+ | ` linux.tolerations ` | Tolerations for the daemonset on linux nodes | ` [] ` |
33
+ | ` linux.metricsAddr ` | The address the metric endpoint binds to | ` :8080 ` |
32
34
| ` windows.image.repository ` | Windows image repository | ` us.gcr.io/k8s-artifacts-prod/csi-secrets-store/driver ` |
33
35
| ` windows.image.pullPolicy ` | Windows image pull policy | ` IfNotPresent ` |
34
36
| ` windows.image.tag ` | Windows image tag | ` v0.0.12 ` |
35
37
| ` windows.enabled ` | Install secrets store csi driver on windows nodes | false |
36
38
| ` windows.kubeletRootDir ` | Configure the kubelet root dir | ` C:\var\lib\kubelet ` |
37
39
| ` windows.nodeSelector ` | Node Selector for the daemonset on windows nodes | ` {} ` |
40
+ | ` windows.tolerations ` | Tolerations for the daemonset on windows nodes | ` [] ` |
41
+ | ` windows.metricsAddr ` | The address the metric endpoint binds to | ` :8080 ` |
38
42
| ` logLevel.debug ` | Enable debug logging | true |
39
43
| ` livenessProbe.port ` | Liveness probe port | ` 9808 ` |
40
44
| ` livenessProbe.logLevel ` | Liveness probe container logging verbosity level | ` 2 ` |
Original file line number Diff line number Diff line change 52
52
{{- if and (semverCompare ">= v0.0.9-0" .Values.windows.image.tag) .Values.minimumProviderVersions }}
53
53
- " --min-provider-version={{ .Values.minimumProviderVersions }}"
54
54
{{- end }}
55
+ - " --metrics-addr={{ .Values.windows.metricsAddr }}"
55
56
env :
56
57
- name : CSI_ENDPOINT
57
58
value : unix://C:\\csi\\csi.sock
@@ -120,3 +121,7 @@ spec:
120
121
{{- toYaml .Values.windows.nodeSelector | nindent 8 }}
121
122
{{- end }}
122
123
{{- end -}}
124
+ {{- with .Values.windows.tolerations }}
125
+ tolerations :
126
+ {{ toYaml . | indent 8 }}
127
+ {{- end }}
Original file line number Diff line number Diff line change 54
54
{{- if and (semverCompare ">= v0.0.8-0" .Values.linux.image.tag) .Values.minimumProviderVersions }}
55
55
- " --min-provider-version={{ .Values.minimumProviderVersions }}"
56
56
{{- end }}
57
+ - " --metrics-addr={{ .Values.linux.metricsAddr }}"
57
58
env :
58
59
- name : CSI_ENDPOINT
59
60
value : unix:///csi/csi.sock
@@ -123,3 +124,7 @@ spec:
123
124
{{- toYaml .Values.linux.nodeSelector | nindent 8 }}
124
125
{{- end }}
125
126
{{- end -}}
127
+ {{- with .Values.linux.tolerations }}
128
+ tolerations :
129
+ {{ toYaml . | indent 8 }}
130
+ {{- end }}
Original file line number Diff line number Diff line change 6
6
pullPolicy : Always
7
7
kubeletRootDir : /var/lib/kubelet
8
8
nodeSelector : {}
9
+ tolerations : []
10
+ metricsAddr : " :8080"
9
11
10
12
windows :
11
13
enabled : false
@@ -15,6 +17,8 @@ windows:
15
17
pullPolicy : IfNotPresent
16
18
kubeletRootDir : C:\var\lib\kubelet
17
19
nodeSelector : {}
20
+ tolerations : []
21
+ metricsAddr : " :8080"
18
22
19
23
logLevel :
20
24
debug : true
You can’t perform that action at this time.
0 commit comments