You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
526 B
15 lines
526 B
3 years ago
|
{{- if .Values.priorityClass.create -}}
|
||
|
kind: PriorityClass
|
||
|
apiVersion: scheduling.k8s.io/v1
|
||
|
metadata:
|
||
|
name: {{ .Values.priorityClass.name | default (include "nfs-provisioner.fullname" .) }}
|
||
|
labels:
|
||
|
app: {{ include "nfs-provisioner.name" . }}
|
||
|
chart: {{ include "nfs-provisioner.chart" . }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
release: {{ .Release.Name }}
|
||
|
value: {{ .Values.priorityClass.value }}
|
||
|
globalDefault: false
|
||
|
description: "This priority class should be used for nfs-provisioner pods only."
|
||
|
{{- end }}
|