k3s/examples/mysql-wordpress-pd/local-volumes.yaml

28 lines
406 B
YAML
Raw Normal View History

apiVersion: v1
kind: PersistentVolume
metadata:
name: local-pv-1
labels:
type: local
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
2016-08-24 16:18:08 +00:00
path: /tmp/data/pv-1
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: local-pv-2
labels:
type: local
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
2016-08-24 16:18:08 +00:00
path: /tmp/data/pv-2