From: Jim Hahn Date: Thu, 12 Nov 2020 18:42:44 +0000 (-0500) Subject: Work around docker rate limit in CSITs X-Git-Tag: 7.0.1~9 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=integration%2Fcsit.git;a=commitdiff_plain;h=5fb82f025553f9d0d85824064e4c4d8c590c944e Work around docker rate limit in CSITs CSITs are failing regularly due to download rate limits that were recently introduced on dockerhub. Modified the yaml to download mariadb from nexus3 instead of dockerhub. Issue-ID: POLICY-2895 Change-Id: I554a230d11533245a4fe987a2ac809ffc69affc7 Signed-off-by: Jim Hahn (cherry picked from commit dcbfd300fff186fca07092731bd0c3d3044c6731) --- diff --git a/scripts/policy/docker-compose-all.yml b/scripts/policy/docker-compose-all.yml index 55044c91..7b1f00a0 100644 --- a/scripts/policy/docker-compose-all.yml +++ b/scripts/policy/docker-compose-all.yml @@ -18,7 +18,7 @@ version: '2' services: mariadb: - image: mariadb:${POLICY_MARIADB_VER} + image: nexus3.onap.org:10001/mariadb:${POLICY_MARIADB_VER} container_name: mariadb hostname: mariadb command: ['--lower-case-table-names=1', '--wait_timeout=28800']