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