ansible-test - Update utility containers (#84545)

pull/84477/head
Matt Clay 11 months ago committed by GitHub
parent 20baf29a2a
commit eb475e23f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,3 +2,6 @@ minor_changes:
- ansible-test - Replace container Fedora 40 with 41.
- ansible-test - Replace container Alpine 3.20 with 3.21.
- ansible-test - Update distro containers to remove unnecessary pakages (apache2, subversion, ruby).
- ansible-test - Update the HTTP test container.
- ansible-test - Update the PyPI test container.
- ansible-test - Update the utility container.

@ -31,7 +31,7 @@ class HttptesterProvider(CloudProvider):
def __init__(self, args: IntegrationConfig) -> None:
super().__init__(args)
self.image = os.environ.get('ANSIBLE_HTTP_TEST_CONTAINER', 'quay.io/ansible/http-test-container:3.2.0')
self.image = os.environ.get('ANSIBLE_HTTP_TEST_CONTAINER', 'quay.io/ansible/http-test-container:3.3.0')
self.uses_docker = True

@ -49,7 +49,7 @@ DOCKER_COMMANDS = [
'podman',
]
UTILITY_IMAGE = 'quay.io/ansible/ansible-test-utility-container:3.1.0'
UTILITY_IMAGE = 'quay.io/ansible/ansible-test-utility-container:3.2.0'
# Max number of open files in a docker container.
# Passed with --ulimit option to the docker run command.

@ -69,7 +69,7 @@ def run_pypi_proxy(args: EnvironmentConfig, targets_use_pypi: bool) -> None:
display.warning('Unable to use the PyPI proxy because Docker is not available. Installation of packages using `pip` may fail.')
return
image = 'quay.io/ansible/pypi-test-container:3.2.0'
image = 'quay.io/ansible/pypi-test-container:3.3.0'
port = 3141
run_support_container(

Loading…
Cancel
Save