forked from PinSpace-Org/GistPin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpriority-classes.yaml
More file actions
35 lines (35 loc) · 924 Bytes
/
Copy pathpriority-classes.yaml
File metadata and controls
35 lines (35 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: gistpin-critical
value: 1000000
globalDefault: false
preemptionPolicy: PreemptLowerPriority
description: "Critical core services — preempts all lower-priority pods"
---
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: gistpin-high
value: 100000
globalDefault: false
preemptionPolicy: PreemptLowerPriority
description: "High priority — monitoring and observability workloads"
---
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: gistpin-default
value: 1000
globalDefault: true
preemptionPolicy: PreemptLowerPriority
description: "Default priority for standard application workloads"
---
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: gistpin-low
value: 100
globalDefault: false
preemptionPolicy: Never
description: "Low priority — batch jobs and background tasks; never preempts"