Add a central simple getting started guide with kubernetes guide.

Point several getting started guides at this doc.
This commit is contained in:
Brendan Burns
2015-04-30 22:16:59 -07:00
parent 262c34e7db
commit 37eedef348
10 changed files with 214 additions and 213 deletions

23
examples/replication.yaml Normal file
View File

@@ -0,0 +1,23 @@
apiVersion: v1beta3
kind: ReplicationController
metadata:
name: nginx
namespace: default
spec:
replicas: 3
selector:
app: nginx
template:
metadata:
name: nginx
labels:
app: nginx
spec:
containers:
- image: nginx
imagePullPolicy: IfNotPresent
name: nginx
ports:
- containerPort: 80
protocol: TCP
restartPolicy: Always