Write new Task: Configuring a Pod to use a PersistentVolume.

This commit is contained in:
steveperry-53
2017-01-17 12:04:57 -08:00
parent e4ea7eea30
commit 591adaffe5
5 changed files with 257 additions and 0 deletions
@@ -0,0 +1,13 @@
kind: PersistentVolume
apiVersion: v1
metadata:
name: task-pv-volume
labels:
type: local
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/tmp/data"