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.
This commit is contained in:
Nikhita Raghunath 2018-07-09 12:37:55 +05:30
parent e943d09fa3
commit 11cb1957c4

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80