Kubernetes - Scheduling
Given this Pod spec snippet, what will happen if no nodes have label
disk=ssd?
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: disk
operator: In
values:
- ssd
