In this Kubernetes tutorial, you will learn about important Kubernetes pod scheduling concepts such as Pod priority, Preemption, and Pod PriorityClass
What is Pod priority in Kubernetes?
Pod priority is a Kubernetes scheduling feature that allows Kubernetes to make scheduling decisions comparing other pods based on priority number. Let’s look at the following two main concepts in pod priority.
- Pod Preemption
- Pod Priority Class
Pod Preemption
The pod preemption feature allows Kubernetes to preempt (evict) lower-priority pods from nodes when higher-priority pods are in the scheduling queue and no node resources are available.
Kubernetes Pod Priority Class
To assign a pod a certain priority, you need a priority class.
You can set a priority for a Pod using the PriorityClass
object (non-namespaced) with a Value.
The value determines the priority. It can be 1,000,000,000 (one billion) or lower. Larger the number, the higher the priority.
The name of the priorityclass (priorityClassName
) will be used in the pod specification to set the priority.
If you don’t want the priority class to preempt the pods, you can set
PreemptionPolicy: Never
. By default, Priorityclasss usePreemptLowerPriority
policy.
Pod PriorityClass Example
The following example has a PriorityClass object and a pod that uses the PriorityClass.
apiVersion: scheduling.k8s.io/v1
kind: PriorityClass
metadata:
name: high-priority-apps
value: 1000000
preemptionPolicy: PreemptLowerPriority
globalDefault: false
description: "Mission Critical apps."
---
apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
env: dev
spec:
containers:
- name: web
image: nginx:latest
imagePullPolicy: IfNotPresent
priorityClassName: high-priority-apps
Kubernetes System High PriorityClass
How do you safeguard system-critical pods from preemption?
Well, there are two default high-priority classes set by Kubernetes
- system-node-critical: This class has a value of
2000001000
. Static pods Pods like etcd, kube-apiserver, kube-scheduler and Controller manager use this priority class. - system-cluster-critical: This class has a value of
2000000000
. Addon Pods like coredns, calico controller, metrics server, etc use this Priority class.
How does Kubernetes Pod Priority & Preemption work?
- If a pod is deployed with
PriorityClassName
, the priority admission controller gets the priority value using the PriorityClassName value. - If there are many pods in the scheduling queue, the scheduler arranges the scheduling order based on priority. Meaning, the scheduler places the high-priority pod ahead of low priority pods
- Now, if there are no nodes available with resources to accommodate a higher-priority pod, the preemption logic kicks in.
- The scheduler preempts (evicts) low priority pod from a node where it can schedule the higher-priority pod. The evicted pod gets a graceful default termination time of 30 seconds. If pods have
terminationGracePeriodSeconds
set forpreStop
container Lifecycle Hooks, it overrides the default 30 seconds. - However, if for some reason, the scheduling requirements are not met, the scheduler goes ahead with scheduling the lower-priority pods.
Now we know how kubernetes pod scheduling priority works with Priorityclass and preemption.
Pod Priority FAQs
What is Kubernetes DaemonSet Priority?
Daemonset has priority like any other pod. Therefore, if you want your Daemonsets to be stable and not evicted during a node resource crunch, you need to set a higher pod PriorityClass to the Daemonset.
How is Pod QoS related to Pod Priority & Preemption?
Kubelet first considers the QoS class and then the pod priority value to evict pods. This happens only when there is a resource shortage on the nodes.
However, preemption logic kicks in only when high-priority pods are on the scheduling queue. The scheduler ignores the pod QoS during pod preemption. Whereas a QoS-based eviction happens without a scheduling queue due to a resource crunch.
What is the significance of Pod Priority?
When you deploy apps to Kubernetes in production, there are certain apps you don’t want to get killed. For example, a metrics collector Daemonset, logging agents, payment service, etc.
To ensure the availability of mission-critical pods, you can create a hierarchy of pod tiers with priorities; when there is a resource crunch in the clusters, kubelet tries to kill the low-priority pods to accommodate pods with higher PriorityClass.
Conclusion
As a DevOps Engineer, it is very important to understand kubernetes pod priority when you work on Kubernetes implementations.
Also, it is one of the important topics in Kubernetes certification as well.
Getting started with Kubernetes? check out the automated Kubernetes cluster setup using Vagrant