summaryrefslogtreecommitdiffstats
path: root/awxkit
diff options
context:
space:
mode:
authorAlan Rominger <arominge@redhat.com>2023-06-23 16:15:11 +0200
committerGitHub <noreply@github.com>2023-06-23 16:15:11 +0200
commit755e55ec70071f487c604ebacdb2d8a99c8506f9 (patch)
treef4891b3865b626be9baad440ad3499552d1296d4 /awxkit
parent[wsrelay] Give connection tasks time to clean up (diff)
downloadawx-755e55ec70071f487c604ebacdb2d8a99c8506f9.tar.xz
awx-755e55ec70071f487c604ebacdb2d8a99c8506f9.zip
Remove reference to unmaintained runner image (#14143)
Diffstat (limited to 'awxkit')
-rw-r--r--awxkit/awxkit/api/pages/execution_environments.py2
1 files changed, 1 insertions, 1 deletions
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))