From 3edbef16f394de6f490651f588cb5883dd06c292 Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Thu, 19 Dec 2024 17:54:19 -0600 Subject: [PATCH] [deploy-env] Fix fetching images Even with the docker proxy cache we often get jobs failed due to Docker Hub rate limits. As per recommendation from the Opendev Infra team let's pull as many as possible images from other registires. This PR updates the dnsmasq and nginx images used for auxiliary purposes during deployments. Change-Id: I58946e6fc63d726e08d83ea7f96e7fef140ddf21 --- roles/deploy-env/defaults/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/deploy-env/defaults/main.yaml b/roles/deploy-env/defaults/main.yaml index 3aebbf0fa..e34476c51 100644 --- a/roles/deploy-env/defaults/main.yaml +++ b/roles/deploy-env/defaults/main.yaml @@ -66,6 +66,6 @@ tunnel_network_cidr: "172.24.5.0/24" tunnel_client_cidr: "172.24.5.2/24" tunnel_cluster_cidr: "172.24.5.1/24" -dnsmasq_image: "docker.io/openstackhelm/neutron:2024.2-ubuntu_jammy" -nginx_image: "docker.io/nginx:alpine3.18" +dnsmasq_image: "quay.io/airshipit/neutron:2024.2-ubuntu_jammy" +nginx_image: "quay.io/airshipit/nginx:alpine3.18" ...