2020-05-19 08:18:29 +00:00
|
|
|
#jinja2: lstrip_blocks: True
|
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
MINIO_VOLUMES="{{ minio_data_dirs | join(' ') }}"
|
2021-07-10 12:15:00 +00:00
|
|
|
MINIO_OPTS="--address {{ minio_bind_ip }}:{{ minio_bind_port }} --console-address {{ minio_console_bind_ip }}:{{ minio_console_bind_port }} {{ minio_server_opts | join(' ') }}"
|
2020-05-19 08:18:29 +00:00
|
|
|
|
2021-07-10 12:15:00 +00:00
|
|
|
MINIO_ROOT_USER="{{ minio_access_key }}"
|
|
|
|
MINIO_ROOT_PASSWORD="{{ minio_secret_key }}"
|
|
|
|
{% if minio_kms_secret_key is defined %}
|
|
|
|
MINIO_KMS_SECRET_KEY={{ minio_kms_secret_key }}
|
2020-05-19 08:18:29 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for extra in minio_server_env_extra %}
|
|
|
|
{{ extra.name | upper }}={{ extra.value }}
|
|
|
|
{% endfor %}
|