Smart Learning/Kubernetes Learning Journey/Storage and Persistent Volumes

Mysql Deployment With PV / Mysql PV

TrackKubernetes Learning Journey
Current SectionStorage and Persistent Volumes
Progress40 of 271
apiVersion: v1
kind: PersistentVolume
metadata:
  name: mysql-pv-1
spec:
  capacity:
    storage: 5Gi
  accessModes:
    - ReadWriteMany
  hostPath:
    path: /mnt/data