15 lines
400 B
Django/Jinja
15 lines
400 B
Django/Jinja
# This file is managed by Ansible.
|
|
AIRFLOW_UID={{ airflow_uid | default(1003) }}
|
|
AIRFLOW_GID=0
|
|
HOSTNAME={{ inventory_hostname }}
|
|
|
|
# Passwords
|
|
POSTGRES_PASSWORD={{ postgres_password }}
|
|
REDIS_PASSWORD={{ redis_password }}
|
|
AIRFLOW_ADMIN_PASSWORD={{ airflow_admin_password }}
|
|
|
|
# For DL workers, specify the master host IP
|
|
{% if 'worker' in service_role %}
|
|
MASTER_HOST_IP={{ master_host_ip }}
|
|
{% endif %}
|