File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ A Helm chart for cert-manager-csi-driver
38
38
| nodeDriverRegistrarImage.repository | string | ` "k8s.gcr.io/sig-storage/csi-node-driver-registrar" ` | Target image repository. |
39
39
| nodeDriverRegistrarImage.tag | string | ` "v2.5.0" ` | Target image version tag. |
40
40
| nodeSelector | object | ` {} ` | |
41
+ | priorityClassName | string | ` "" ` | Optional priority class to be used for the csi-driver pods. |
41
42
| resources | object | ` {} ` | |
42
43
| tolerations | list | ` [] ` | |
43
44
Original file line number Diff line number Diff line change @@ -100,6 +100,10 @@ spec:
100
100
tolerations :
101
101
{{- toYaml .Values.tolerations | nindent 8 }}
102
102
103
+ {{- with .Values.priorityClassName }}
104
+ priorityClassName : {{ . | quote }}
105
+ {{- end }}
106
+
103
107
volumes :
104
108
- name : plugin-dir
105
109
hostPath :
Original file line number Diff line number Diff line change 9
9
# -- Optional secrets used for pulling the csi-driver container image
10
10
imagePullSecrets : []
11
11
# - name: Secret with Registry credentials
12
-
12
+
13
13
nodeDriverRegistrarImage :
14
14
# -- Target image repository.
15
15
repository : k8s.gcr.io/sig-storage/csi-node-driver-registrar
@@ -63,3 +63,6 @@ tolerations: []
63
63
# -- Kubernetes pod tolerations for cert-manager-csi-driver
64
64
# Allow scheduling of DaemonSet on all nodes
65
65
# - operator: "Exists"
66
+
67
+ # -- Optional priority class to be used for the csi-driver pods.
68
+ priorityClassName : " "
You can’t perform that action at this time.
0 commit comments