Created
September 12, 2021 05:32
-
-
Save a-patel/1f2df397d22b2ac659ba4d03af1dfee9 to your computer and use it in GitHub Desktop.
Kubernetes - Storage - Persistent Volumes Claims (PVC)
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: myapp-mongo-pvc | |
namespace: myapp-ns | |
spec: | |
storageClassName: myapp-sc | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 500Mi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment