From b2236f9afa983b81e0e1b4f8837bcd68bf0ea4fa Mon Sep 17 00:00:00 2001 From: inductor Date: Sun, 19 Jul 2020 15:51:07 +0900 Subject: [PATCH] hotfix build --- content/ja/examples/pods/pod-with-toleration.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 content/ja/examples/pods/pod-with-toleration.yaml diff --git a/content/ja/examples/pods/pod-with-toleration.yaml b/content/ja/examples/pods/pod-with-toleration.yaml new file mode 100644 index 0000000000..79f2756a8c --- /dev/null +++ b/content/ja/examples/pods/pod-with-toleration.yaml @@ -0,0 +1,15 @@ +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"