Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c6602594
Commit
c6602594
authored
Feb 16, 2020
by
Hordur Freyr Yngvason
Committed by
Thong Kuah
Feb 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pin Auto DevOps dind version to fix pull timeout
See
https://gitlab.com/gitlab-org/gitlab-runner/issues/6697
parent
92c62ed1
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
5 deletions
+15
-5
changelogs/unreleased/pin-auto-devops-dind-version.yml
changelogs/unreleased/pin-auto-devops-dind-version.yml
+5
-0
lib/gitlab/ci/templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
.../templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
+4
-2
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
+2
-1
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
+4
-2
No files found.
changelogs/unreleased/pin-auto-devops-dind-version.yml
0 → 100644
View file @
c6602594
---
title
:
Pin Auto DevOps Docker-in-Docker service image to work around pull timeouts
merge_request
:
25286
author
:
type
:
fixed
lib/gitlab/ci/templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
View file @
c6602594
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
...
...
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
View file @
c6602594
...
...
@@ -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
...
...
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
View file @
c6602594
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
:
"
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment