veza/ansible/roles/minio/templates/etc_default_minio.j2

12 lines
261 B
Text
Raw Normal View History

# {{ ansible_managed }}
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD={{ minio_root_password }}
MINIO_VOLUMES="/srv/minio"
{% if minio_haproxy %}
MINIO_OPTS="--address localhost:9002 --console-address localhost:9001"
{% else %}
MINIO_BROWSER=off
{% endif %}