Move Guide topic: Replication Controller. (#3203)

* Move Guide topic: Replication Controller.

* Add included file.
This commit is contained in:
Steve Perry
2017-04-03 10:23:03 -07:00
committed by GitHub
parent 6ed0c34d2a
commit a243c28888
4 changed files with 283 additions and 253 deletions
@@ -0,0 +1,19 @@
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx
spec:
replicas: 3
selector:
app: nginx
template:
metadata:
name: nginx
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80