From b0fff9ccbdb95fdda1ab533b2fd9c0c3084b0434 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 28 Jan 2025 15:46:51 -0800 Subject: [PATCH] Switch standalone mariadb to opendevmirror hosted mariadb image One fewer image to pull from docker hub eating into our rate limits. Note that this will restart the standalone mariadb container when deployed. This may impact Zuul's ability to record jobs temporarily. Change-Id: I4f46c63f3002740c2246f11d1ad69bd43e61036c --- playbooks/roles/mariadb/templates/docker-compose.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/mariadb/templates/docker-compose.yaml.j2 b/playbooks/roles/mariadb/templates/docker-compose.yaml.j2 index 37e65f5017..57cbb285d0 100644 --- a/playbooks/roles/mariadb/templates/docker-compose.yaml.j2 +++ b/playbooks/roles/mariadb/templates/docker-compose.yaml.j2 @@ -1,7 +1,7 @@ version: '2' services: mariadb: - image: docker.io/library/mariadb:10.11 + image: quay.io/opendevmirror/mariadb:10.11 network_mode: host environment: MYSQL_ROOT_PASSWORD: "{{ mariadb_root_password }}"