k8s-manifests/jupyter/base/charts/jupyterhub/templates/image-puller/priorityclass.yaml
Micke Nordin 324724c3b1
Jupytherhub:
Export 3.0.3 like so:
```
helm repo add jupyterhub https://hub.jupyter.org/helm-chart/
helm fetch jupyterhub/jupyterhub --version 3.0.3 --untar --untardir .
```
2023-09-25 16:29:56 +02:00

19 lines
735 B
YAML

{{- if .Values.scheduling.podPriority.enabled }}
{{- if or .Values.prePuller.hook.enabled .Values.prePuller.continuous.enabled -}}
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: {{ include "jupyterhub.image-puller-priority.fullname" . }}
annotations:
meta.helm.sh/release-name: "{{ .Release.Name }}"
meta.helm.sh/release-namespace: "{{ .Release.Namespace }}"
labels:
{{- include "jupyterhub.labels" . | nindent 4 }}
value: {{ .Values.scheduling.podPriority.imagePullerPriority }}
globalDefault: false
description: >-
Enables [hook|continuous]-image-puller pods to fit on nodes even though they
are clogged by user-placeholder pods, while not evicting normal user pods.
{{- end }}
{{- end }}