From 075969f25d133dc41389d23672fdc8d476dfed62 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 7 Jun 2021 15:50:53 -0400 Subject: [PATCH] Use new setting for control plan ee Now this is consumed by the awx-manage register_default_execution_environments to make the EE that is used for project updates --- roles/installer/templates/execution_environments.py.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/installer/templates/execution_environments.py.j2 b/roles/installer/templates/execution_environments.py.j2 index bd98bea2..4774b422 100644 --- a/roles/installer/templates/execution_environments.py.j2 +++ b/roles/installer/templates/execution_environments.py.j2 @@ -1,5 +1,6 @@ -DEFAULT_EXECUTION_ENVIRONMENTS = [ +GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [ {% for item in ee_images %} {'name': '{{ item.name }}' , 'image': '{{ item.image }}'}, {% endfor %} ] +CONTROL_PLANE_EXECUTION_ENVIRONMENT = {{ control_plane_ee_image }}