Created
April 25, 2020 11:15
-
-
Save wshihadeh/ddb4bdf5bafe7a5e4479e41da220a8b9 to your computer and use it in GitHub Desktop.
PersistentVolumeClaim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: db-data-pvc | |
spec: | |
storageClassName: generic | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 500Mi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment