Skip to content

Instantly share code, notes, and snippets.

@wshihadeh
Last active April 25, 2020 11:19
Show Gist options
  • Save wshihadeh/8f44a199bdd5addbad39180defb65b37 to your computer and use it in GitHub Desktop.
Save wshihadeh/8f44a199bdd5addbad39180defb65b37 to your computer and use it in GitHub Desktop.
PersistentVolume
apiVersion: v1
kind: PersistentVolume
metadata:
name: db-data-pv
labels:
type: local
spec:
storageClassName: generic
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/var/lib/mysql"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment