Initial add of a walkthrough of basic Kubernetes concepts.

This commit is contained in:
Brendan Burns
2014-09-18 14:44:37 -07:00
parent e25171969b
commit 29cf1a783b
3 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
apiVersion: v1beta1
id: storage
desiredState:
manifest:
version: v1beta1
id: storage
containers:
- name: redis
image: dockerfile/redis
volumeMounts:
# name must match the volume name below
- name: redis-persistent-storage
# mount path within the container
mountPath: /data/redis
volumes:
- name: redis-persistent-storage
source:
emptyDir: {}