From 11cb1957c4ca72e04d190676cd6f7b204faa995c Mon Sep 17 00:00:00 2001 From: Nikhita Raghunath Date: Mon, 9 Jul 2018 12:37:55 +0530 Subject: [PATCH] Add pod.yaml to user-guide This is referenced in k/community for an example on how to run Kubernetes locally. It was removed earlier since it was thought as not used. --- test/fixtures/doc-yaml/user-guide/pod.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/fixtures/doc-yaml/user-guide/pod.yaml diff --git a/test/fixtures/doc-yaml/user-guide/pod.yaml b/test/fixtures/doc-yaml/user-guide/pod.yaml new file mode 100644 index 00000000000..7053af0be4b --- /dev/null +++ b/test/fixtures/doc-yaml/user-guide/pod.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nginx + labels: + app: nginx +spec: + containers: + - name: nginx + image: nginx + ports: + - containerPort: 80