ansible-minio/defaults/main.yml
Ben Kochie 828bd25175
Add option to create minio clusters
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.
2018-06-25 23:00:45 +02:00

34 lines
793 B
YAML

---
# Minio binaries path
minio_server_bin: /usr/local/bin/minio
minio_client_bin: /usr/local/bin/mc
# Runtime user and group for the minio server service
minio_user: minio
minio_group: minio
# Path to the file containing the ENV variables for the minio server
minio_server_envfile: /etc/default/minio
# Minio server listen address
minio_server_addr: ":9091"
# Minio server data directories
minio_server_datadirs: [ ]
minio_server_make_datadirs: true
# Minio server cluster node list.
minio_server_cluster_nodes: [ ]
# Additional minio server CLI options
minio_server_opts: ""
# Minio access and secret keys
minio_access_key: ""
minio_secret_key: ""
# Switches to enable/disable the minio server and/or minio client installation.
minio_install_server: true
minio_install_client: true