Update Kubernetes example yaml files (#5278)

Removed the non production ready Kubernetes constructs that are not needed
for standard Minio deployment. General cleanup of the documents.
This commit is contained in:
Nitish Tiwari
2017-12-12 10:29:00 +05:30
committed by GitHub
parent 2853fa1882
commit 8c08571cd9
5 changed files with 46 additions and 41 deletions

View File

@@ -1,15 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
# This name uniquely identifies the PVC. Will be used in deployment below.
# This name uniquely identifies the PVC. This is used in deployment.
name: minio-pv-claim
annotations:
volume.alpha.kubernetes.io/storage-class: anything
labels:
app: minio-storage-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.