From 9b2d2a185697496a924071187917522344f158f4 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Wed, 11 Aug 2021 11:36:42 -0400 Subject: [PATCH] Use awx-ee:latest to get latest receptor and runner We are updating the requirements to get the latest receptor and runner in the task container, we should also have the latest in the EE --- awx/settings/defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 37243bd7ee..4fc305be77 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -182,13 +182,13 @@ DEFAULT_EXECUTION_ENVIRONMENT = None # Should be ordered from highest to lowest precedence. # The awx-manage register_default_execution_environments command reads this setting and registers the EE(s) # If a registry credential is needed to pull the image, that can be provided to the awx-manage command -GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [{'name': 'AWX EE 0.5.0', 'image': 'quay.io/ansible/awx-ee:0.5.0'}] +GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [{'name': 'AWX EE 0.5.0', 'image': 'quay.io/ansible/awx-ee:latest'}] # This setting controls which EE will be used for project updates. # The awx-manage register_default_execution_environments command reads this setting and registers the EE # This image is distinguished from others by having "managed" set to True and users have limited # ability to modify it through the API. # If a registry credential is needed to pull the image, that can be provided to the awx-manage command -CONTROL_PLANE_EXECUTION_ENVIRONMENT = 'quay.io/ansible/awx-ee:0.5.0' +CONTROL_PLANE_EXECUTION_ENVIRONMENT = 'quay.io/ansible/awx-ee:latest' # Note: This setting may be overridden by database settings. STDOUT_MAX_BYTES_DISPLAY = 1048576