A pod with no toleration
A tainted node and a pod that cannot land on it, which presents as Pending
apiVersion: v1
kind: Node
metadata:
name: gpu-1
spec:
taints:
- key: dedicated
value: gpu
effect: NoSchedule
---
apiVersion: v1
kind: Pod
metadata:
name: app
spec:
containers:
- name: app
image: app:1