File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ The following secrets are configurable and map to the corresponding environment
261
261
### Values
262
262
263
263
General
264
+ * priorityClassName: The priorityClass of the daemonset pods ( Default nil )
264
265
* storage: The size of the storage for the cores (Default 1Gi)
265
266
* storageClass: The storage class for volume (Default hostclass)
266
267
Original file line number Diff line number Diff line change @@ -142,6 +142,9 @@ spec:
142
142
{{- toYaml . | nindent 8 }}
143
143
{{- end }}
144
144
serviceAccountName : {{ include "core-dump-handler.serviceAccountName" . }}
145
+ {{- if .Values.priorityClassName }}
146
+ priorityClassName : {{ .Values.priorityClassName }}
147
+ {{- end }}
145
148
volumes :
146
149
- name : host-volume
147
150
persistentVolumeClaim :
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ nodeSelector: {}
86
86
# gpu-enabled: true
87
87
affinity : {}
88
88
89
+ # priorityClassName for assigning priorityClass to the daemonset pods
90
+ priorityClassName :
91
+
89
92
# Tolerations for the daemonset's pod assignment
90
93
# ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
91
94
tolerations : []
You can’t perform that action at this time.
0 commit comments