mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-06 21:32:52 +00:00
7 lines
213 B
Django/Jinja
7 lines
213 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 }}'
|