Add tasks/configure-pod-container/configure-volume-storage.md (#13949)

This commit is contained in:
roi
2019-05-13 19:52:16 +02:00
committed by Kubernetes Prow Robot
parent a05ab94643
commit abf7289e92
2 changed files with 145 additions and 0 deletions
@@ -0,0 +1,14 @@
apiVersion: v1
kind: Pod
metadata:
name: redis
spec:
containers:
- name: redis
image: redis
volumeMounts:
- name: redis-storage
mountPath: /data/redis
volumes:
- name: redis-storage
emptyDir: {}