From 755e55ec70071f487c604ebacdb2d8a99c8506f9 Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Fri, 23 Jun 2023 10:15:11 -0400 Subject: [PATCH] Remove reference to unmaintained runner image (#14143) --- awxkit/awxkit/api/pages/execution_environments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awxkit/awxkit/api/pages/execution_environments.py b/awxkit/awxkit/api/pages/execution_environments.py index 2f9b6d01e3..c63c479a42 100644 --- a/awxkit/awxkit/api/pages/execution_environments.py +++ b/awxkit/awxkit/api/pages/execution_environments.py @@ -20,7 +20,7 @@ class ExecutionEnvironment(HasCreate, HasCopy, base.Base): NATURAL_KEY = ('name',) # fields are name, image, organization, managed, credential - def create(self, name='', image='quay.io/ansible/ansible-runner:devel', organization=Organization, credential=None, pull='', **kwargs): + def create(self, name='', image='quay.io/ansible/awx-ee:latest', organization=Organization, credential=None, pull='', **kwargs): # we do not want to make a credential by default payload = self.create_payload(name=name, image=image, organization=organization, credential=credential, pull=pull, **kwargs) ret = self.update_identity(ExecutionEnvironments(self.connection).post(payload))