Skip to content

Instantly share code, notes, and snippets.

@vamsijakkula
Created May 8, 2020 05:29
Show Gist options
  • Save vamsijakkula/3e228c691a258f83181a486aab53b7bd to your computer and use it in GitHub Desktop.
Save vamsijakkula/3e228c691a258f83181a486aab53b7bd to your computer and use it in GitHub Desktop.
MinioPVC
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