Files
kubernetes-advanced/taints/pod.yaml
Thomas Kruse 24b9717db2 init
2026-09-02 22:11:05 +02:00

15 lines
219 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: mypod
spec:
containers:
- name: nginx
image: nginx
resources: {}
tolerations:
- key: "demo"
operator: "Equal"
value: "student"
effect: "NoSchedule"