From 718b3bab4ab820af2fc4b0417d269e0159d54428 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Thu, 15 Jul 2021 11:27:55 -0400 Subject: [PATCH 1/2] Update defaults.py --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index a6422ef733..417f03d6b9 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -182,7 +182,7 @@ 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.3.0', 'image': 'quay.io/ansible/awx-ee:0.3.0'}] +GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [{'name': 'AWX EE 0.5.0', 'image': 'quay.io/ansible/awx-ee:0.5.0'}] # 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 From b431067aa8571df62220f16b0d4cb5d8a8078e16 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Thu, 15 Jul 2021 11:30:21 -0400 Subject: [PATCH 2/2] also update control plane ee --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 417f03d6b9..676fa9fcdc 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -188,7 +188,7 @@ GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [{'name': 'AWX EE 0.5.0', 'image': 'quay.io/ # 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.3.0' +CONTROL_PLANE_EXECUTION_ENVIRONMENT = 'quay.io/ansible/awx-ee:0.5.0' # Note: This setting may be overridden by database settings. STDOUT_MAX_BYTES_DISPLAY = 1048576