diff options
author | Matt Clay <matt@mystile.com> | 2025-01-10 06:16:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-10 06:16:01 +0100 |
commit | 96f7090acc13f24012d285ccf3e3584523f04983 (patch) | |
tree | 415a5112c7eda0ecac845affc464e3623c87d8b4 | |
parent | constructed, let users know some limitations (#84510) (diff) | |
download | ansible-96f7090acc13f24012d285ccf3e3584523f04983.tar.xz ansible-96f7090acc13f24012d285ccf3e3584523f04983.zip |
Use ECR Public for container test (#84537)
-rwxr-xr-x | test/integration/targets/ansible-test-container/runme.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/ansible-test-container/runme.py b/test/integration/targets/ansible-test-container/runme.py index c04ee89586..3b86a9a5e1 100755 --- a/test/integration/targets/ansible-test-container/runme.py +++ b/test/integration/targets/ansible-test-container/runme.py @@ -394,7 +394,7 @@ def run_test(scenario: TestScenario) -> TestResult: def prepare_prime_podman_storage() -> list[str]: """Partially prime podman storage and return a command to complete the remainder.""" - prime_storage_command = ['rm -rf ~/.local/share/containers; STORAGE_DRIVER=overlay podman pull quay.io/bedrock/alpine:3.16.2'] + prime_storage_command = ['rm -rf ~/.local/share/containers; STORAGE_DRIVER=overlay podman pull public.ecr.aws/docker/library/alpine:3.21.2'] test_containers = pathlib.Path(f'~{UNPRIVILEGED_USER_NAME}/.local/share/containers').expanduser() |