Move walkthroughs from user-guide to tutorials. (#8933)

This commit is contained in:
Steve Perry
2018-06-06 12:36:25 -07:00
committed by k8s-ci-robot
parent 6c5685b01b
commit 70fd7dca04
15 changed files with 18 additions and 41 deletions
+21
View File
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 2 # tells deployment to run 2 pods matching the template
template: # create pods using pod definition in this template
metadata:
# unlike pod-nginx.yaml, the name is not included in the meta data as a unique name is
# generated from the deployment name
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80