Files
website/content/pt-br/examples/pods/pod-with-toleration.yaml
Zilmar de Souza Junior b0904d2328 [l10n] PT-BR - docs/concepts/scheduling-eviction/taint-and-toleration.md (#30049)
* [l10n] starting pt-br l10n

[l10n] Localização para pt-br finalizada

* Apply suggestions from code review

Co-authored-by: Ricardo Katz <rikatz@users.noreply.github.com>

Co-authored-by: Ricardo Katz <rikatz@users.noreply.github.com>
2021-10-23 13:08:21 -07:00

16 lines
246 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
env: test
spec:
containers:
- name: nginx
image: nginx
imagePullPolicy: IfNotPresent
tolerations:
- key: "example-key"
operator: "Exists"
effect: "NoSchedule"