Commit c6602594 authored by Hordur Freyr Yngvason's avatar Hordur Freyr Yngvason Committed by Thong Kuah

Pin Auto DevOps dind version to fix pull timeout

See https://gitlab.com/gitlab-org/gitlab-runner/issues/6697
parent 92c62ed1
---
title: Pin Auto DevOps Docker-in-Docker service image to work around pull timeouts
merge_request: 25286
author:
type: fixed
performance:
stage: performance
image: docker:stable
# pin to a version matching the dind service, just to be safe
image: docker:19.03.5
allow_failure: true
variables:
DOCKER_TLS_CERTDIR: ""
services:
- docker:stable-dind
# pin to a known working version until https://gitlab.com/gitlab-org/gitlab-runner/issues/6697 is fixed
- docker:19.03.5-dind
script:
- |
if ! docker info &>/dev/null; then
......
......@@ -4,7 +4,8 @@ build:
variables:
DOCKER_TLS_CERTDIR: ""
services:
- docker:stable-dind
# pin to a known working version until https://gitlab.com/gitlab-org/gitlab-runner/issues/6697 is fixed
- docker:19.03.5-dind
script:
- |
if [[ -z "$CI_COMMIT_TAG" ]]; then
......
code_quality:
stage: test
image: docker:stable
# pin to a version matching the dind service, just to be safe
image: docker:19.03.5
allow_failure: true
services:
- docker:stable-dind
# pin to a known working version until https://gitlab.com/gitlab-org/gitlab-runner/issues/6697 is fixed
- docker:19.03.5-dind
variables:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment