summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2022-02-17 13:05:06 -0800
committerMatt Clay <matt@mystile.com>2022-02-17 16:18:29 -0800
commit582d3b1488ad0d88100324b385a1a07c34637dfc (patch)
tree57e4d18323afeb7d700a8266f0e642c97a2270cf /test
parent782b8645b839b6b7b699ac0167b23c7098dd4f6c (diff)
downloadansible-582d3b1488ad0d88100324b385a1a07c34637dfc.tar.gz
[stable-2.12] ansible-test - Use quay.io containers in plugins.
(cherry picked from commit c27fd777f4d82fc1eefaa20114cf1f76b7ce1bee) Co-authored-by: Matt Clay <matt@mystile.com>
Diffstat (limited to 'test')
-rw-r--r--test/lib/ansible_test/_internal/commands/integration/cloud/galaxy.py2
-rw-r--r--test/lib/ansible_test/_internal/commands/integration/cloud/openshift.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/galaxy.py b/test/lib/ansible_test/_internal/commands/integration/cloud/galaxy.py
index 9c9000715d..de58cbf5bc 100644
--- a/test/lib/ansible_test/_internal/commands/integration/cloud/galaxy.py
+++ b/test/lib/ansible_test/_internal/commands/integration/cloud/galaxy.py
@@ -86,7 +86,7 @@ class GalaxyProvider(CloudProvider):
# the newer update is available.
self.pulp = os.environ.get(
'ANSIBLE_PULP_CONTAINER',
- 'docker.io/pulp/pulp-galaxy-ng@sha256:b79a7be64eff86d8f58db9ca83ed4967bd8b4e45c99addb17a91d11926480cf1'
+ 'quay.io/ansible/pulp-galaxy-ng:b79a7be64eff'
)
self.uses_docker = True
diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/openshift.py b/test/lib/ansible_test/_internal/commands/integration/cloud/openshift.py
index c30785afaf..10f63ac05a 100644
--- a/test/lib/ansible_test/_internal/commands/integration/cloud/openshift.py
+++ b/test/lib/ansible_test/_internal/commands/integration/cloud/openshift.py
@@ -36,7 +36,7 @@ class OpenShiftCloudProvider(CloudProvider):
super().__init__(args, config_extension='.kubeconfig')
# The image must be pinned to a specific version to guarantee CI passes with the version used.
- self.image = 'openshift/origin:v3.9.0'
+ self.image = 'quay.io/ansible/openshift-origin:v3.9.0'
self.uses_docker = True
self.uses_config = True