Skip to content

Instantly share code, notes, and snippets.

@chrisedrego
Created September 18, 2020 19:48
Show Gist options
  • Save chrisedrego/949cf704937a9202eb36473750426d84 to your computer and use it in GitHub Desktop.
Save chrisedrego/949cf704937a9202eb36473750426d84 to your computer and use it in GitHub Desktop.
Persistent Volume Claim for mysql
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mysql-storage
namespace: mysql
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment