11 lines
385 B
YAML
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 }} |