Created
May 8, 2020 05:29
-
-
Save vamsijakkula/3e228c691a258f83181a486aab53b7bd to your computer and use it in GitHub Desktop.
MinioPVC
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: | |
# This name uniquely identifies the PVC. This is used in deployment. | |
name: minio-pv-claim | |
spec: | |
# Read more about access modes here: http://kubernetes.io/docs/user-guide/persistent-volumes/#access-modes | |
accessModes: | |
# The volume is mounted as read-write by a single node | |
- ReadWriteOnce | |
resources: | |
# This is the request for storage. Should be available in the cluster. | |
requests: | |
storage: 10Gi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment