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 @@ -39,6 +39,7 @@ A Helm chart for cert-manager-csi-driver
39
39
| nodeDriverRegistrarImage.repository | string | ` "k8s.gcr.io/sig-storage/csi-node-driver-registrar" ` | Target image repository. |
40
40
| nodeDriverRegistrarImage.tag | string | ` "v2.5.0" ` | Target image version tag. |
41
41
| nodeSelector | object | ` {} ` | |
42
+ | priorityClassName | string | ` "" ` | Optional priority class to be used for the csi-driver pods. |
42
43
| resources | object | ` {} ` | |
43
44
| tolerations | list | ` [] ` | |
44
45
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
@@ -65,3 +65,6 @@ tolerations: []
65
65
# -- Kubernetes pod tolerations for cert-manager-csi-driver
66
66
# Allow scheduling of DaemonSet on all nodes
67
67
# - operator: "Exists"
68
+
69
+ # -- Optional priority class to be used for the csi-driver pods.
70
+ priorityClassName : " "
You can’t perform that action at this time.
0 commit comments