rancher-partner-charts/charts/kubecost/cost-analyzer/1.70.000/templates/kubecost-priority-class-tem...

11 lines
385 B
YAML

{{- if .Values.priority }}
{{- if .Values.priority.enabled }}
apiVersion: {{ include "cost-analyzer.priorityClass.apiVersion" . }}
kind: PriorityClass
metadata:
name: {{ template "cost-analyzer.fullname" . }}-priority
value: {{ .Values.priority.value | default "1000000" }}
globalDefault: false
description: "Priority class for scheduling the cost-analyzer pod"
{{- end }}
{{- end }}