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
c472bec5
Commit
c472bec5
authored
Jul 24, 2019
by
Tiger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set DOCKER_TLS_CERTDIR in CI job templates
https://gitlab.com/gitlab-org/gitlab-ce/issues/65019
parent
a1d1b3aa
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
0 deletions
+12
-0
changelogs/unreleased/65019-job-templates-dind-tls-fix.yml
changelogs/unreleased/65019-job-templates-dind-tls-fix.yml
+5
-0
lib/gitlab/ci/templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
.../templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
+2
-0
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
+2
-0
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
+1
-0
lib/gitlab/ci/templates/Security/Dependency-Scanning.gitlab-ci.yml
...b/ci/templates/Security/Dependency-Scanning.gitlab-ci.yml
+1
-0
lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml
lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml
+1
-0
No files found.
changelogs/unreleased/65019-job-templates-dind-tls-fix.yml
0 → 100644
View file @
c472bec5
---
title
:
Set DOCKER_TLS_CERTDIR in CI job templates to fix Docker-in-Docker service
merge_request
:
31080
author
:
type
:
fixed
lib/gitlab/ci/templates/Jobs/Browser-Performance-Testing.gitlab-ci.yml
View file @
c472bec5
...
...
@@ -2,6 +2,8 @@ performance:
stage
:
performance
image
:
docker:stable
allow_failure
:
true
variables
:
DOCKER_TLS_CERTDIR
:
"
"
services
:
-
docker:stable-dind
script
:
...
...
lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
View file @
c472bec5
build
:
stage
:
build
image
:
"
registry.gitlab.com/gitlab-org/cluster-integration/auto-build-image/master:stable"
variables
:
DOCKER_TLS_CERTDIR
:
"
"
services
:
-
docker:stable-dind
script
:
...
...
lib/gitlab/ci/templates/Jobs/Code-Quality.gitlab-ci.yml
View file @
c472bec5
...
...
@@ -6,6 +6,7 @@ code_quality:
-
docker:stable-dind
variables
:
DOCKER_DRIVER
:
overlay2
DOCKER_TLS_CERTDIR
:
"
"
script
:
-
|
if ! docker info &>/dev/null; then
...
...
lib/gitlab/ci/templates/Security/Dependency-Scanning.gitlab-ci.yml
View file @
c472bec5
...
...
@@ -9,6 +9,7 @@ dependency_scanning:
image
:
docker:stable
variables
:
DOCKER_DRIVER
:
overlay2
DOCKER_TLS_CERTDIR
:
"
"
allow_failure
:
true
services
:
-
docker:stable-dind
...
...
lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml
View file @
c472bec5
...
...
@@ -9,6 +9,7 @@ sast:
image
:
docker:stable
variables
:
DOCKER_DRIVER
:
overlay2
DOCKER_TLS_CERTDIR
:
"
"
allow_failure
:
true
services
:
-
docker:stable-dind
...
...
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