16 lines
472 B
Plaintext
16 lines
472 B
Plaintext
|
#jinja2: lstrip_blocks: True
|
||
|
{{ ansible_managed | comment }}
|
||
|
MINIO_VOLUMES="{{ minio_data_dirs | join(' ') }}"
|
||
|
MINIO_OPTS="--address {{ minio_bind_ip }}:{{ minio_bind_port }} {{ minio_server_opts | join(' ') }}"
|
||
|
|
||
|
{% if minio_access_key %}
|
||
|
MINIO_ACCESS_KEY="{{ minio_access_key }}"
|
||
|
{% endif %}
|
||
|
{% if minio_secret_key %}
|
||
|
MINIO_SECRET_KEY="{{ minio_secret_key }}"
|
||
|
{% endif %}
|
||
|
|
||
|
{% for extra in minio_server_env_extra %}
|
||
|
{{ extra.name | upper }}={{ extra.value }}
|
||
|
{% endfor %}
|