Files
awx-operator/roles/installer/templates/execution_environments.py.j2
2021-11-02 09:57:04 +01:00

7 lines
214 B
Django/Jinja

GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [
{% for item in ee_images %}
{'name': '{{ item.name }}' , 'image': '{{ item.image }}'},
{% endfor %}
]
CONTROL_PLANE_EXECUTION_ENVIRONMENT = '{{ _control_plane_ee_image }}'