mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-11-25 11:55:10 +01:00
341e3003a8
Create data directories automatically. * Add flag to disable automatic creation.
31 lines
698 B
YAML
31 lines
698 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
|
|
|
|
# Additional minio server CLI options
|
|
minio_server_opts: ""
|
|
|
|
# Minio access and secret keys
|
|
minio_access_key: ""
|
|
minio_secret_key: ""
|
|
|
|
# Switches to disable minio server and/or minio client installation
|
|
skip_server: False
|
|
skip_client: False
|