Questions
As we conclude, here is a list of questions for you to test your knowledge regarding this chapter’s material. You will find the answers in the Assessments section of the Appendix:
- Which of the following stages are part of scheduling in Kubernetes (pick multiple)?
- Spreading
- Launching
- Filtering
- Scoring
- What happens if the Kubernetes scheduler cannot assign a pod to a node?
- It will be stuck in a
CrashLoopBackOff
state - It will be stuck in a
Pending
state - It will be stuck in a
NotScheduled
state - It will be forcefully run on one of the control plane nodes
- It will be stuck in a
- Which of the following scheduler instructions will not prevent a pod from being scheduled if a condition cannot be satisfied (soft affinity or soft anti-affinity)?
requiredDuringSchedulingIgnoredDuringExecution
preferredDuringSchedulingIgnoredDuringExecution
neededDuringSchedulingIgnoredDuringExecution
softAffinity
- Which Kubernetes scheduler feature should be used to control how Pods are spread across different...