Middle+
In what order does Kubernetes terminate pods depending on the Quality of Service (QoS)?
sobes.tech AI
Answer from AI
Kubernetes terminates pods in order of QoS priority:
BestEffortBurstableGuaranteed
This means that pods with the lowest QoS (BestEffort) will be terminated first, followed by those with medium QoS (Burstable), and finally those with the highest QoS (Guaranteed). This order helps to preserve the operation of critical pods for as long as possible during resource shortages.