-
Notifications
You must be signed in to change notification settings - Fork 23
fix(deis-minio): store minio data on a persistent volume #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ectory at /mnt/minio/data
|
@arschles did you see the comment against the host path in http://kubernetes.io/docs/user-guide/persistent-volumes/#types-of-persistent-volumes saying it will not work for multi node cluster which makes sense because what if the pod is restarts on another node |
|
@kmala yep, saw that. IIRC this was a proof of concept, with the idea being that it could be extended to a single-replica minio server backed by a persistent disk (such as Anyway, since this was a proof of concept and it's not really rational to run it in production (as you said), objections to closing? |
|
none. close away! |
|
Ok, closing |
This PR only enables persistence on the host's disk.
Volumes Reference: http://kubernetes.io/v1.1/docs/user-guide/volumes.html#persistentvolumeclaim
Persistence reference: https://github.com/kubernetes/kubernetes/blob/release-1.1/docs/user-guide/persistent-volumes.md
Related: deis/charts#72
Ref: deis/deis#4809