-
Notifications
You must be signed in to change notification settings - Fork 92
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
Add option to create minio clusters #19
Conversation
I don't know what's up with the test:
|
If you do molecule converge and you connect to the containers is minio running? It might be that for whatever reason minio fails to start. I'll give it a try later and try to see what's up. |
Figured it out, Minio is very sensitive to the setup of volumes in the erasure code mode. |
README.md
Outdated
```yaml | ||
minio_server_datadirs: | ||
- '/minio-data' | ||
minio_server_cluster_nodes: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It needs at least 4 nodes, let's not confuse users with 3 nodes in example.
|
||
```yaml | ||
minio_server_datadirs: | ||
- '/minio-data' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs at least 4 directories, not 1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need 4 storage targets over the whole cluster, not per server.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right.
Overall it looks good, I just dropped some comments regarding documentation. |
@paulfantom I added some additional notes to the README. |
Add a cluster list that overrides the datadirs list, this allows for local creation of data storage directories separate from a list of cluster members.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Add a cluster list that overrides the datadirs list, this allows for
local creation of data storage directories separate from a list of
cluster members.