kubernetes-hands-on/17-volumes/01-simple-mysql-pv.yml

13 lines
180 B
YAML
Raw Normal View History

2019-05-14 22:04:12 +06:00
---
2019-05-09 19:40:55 +06:00
apiVersion: v1
kind: PersistentVolume
metadata:
name: mysql-pv-volume
spec:
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"