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
61c50f0c
Commit
61c50f0c
authored
Jun 19, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
ff2af126
69e1bd38
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
changelogs/unreleased/11448-fix-cs-with-k8s-runners.yml
changelogs/unreleased/11448-fix-cs-with-k8s-runners.yml
+5
-0
doc/development/i18n/externalization.md
doc/development/i18n/externalization.md
+3
-0
lib/gitlab/ci/templates/Security/Container-Scanning.gitlab-ci.yml
...ab/ci/templates/Security/Container-Scanning.gitlab-ci.yml
+1
-1
No files found.
changelogs/unreleased/11448-fix-cs-with-k8s-runners.yml
0 → 100644
View file @
61c50f0c
---
title
:
Fix Container Scanning job timeout when using the kubernetes executor
merge_request
:
29706
author
:
type
:
fixed
doc/development/i18n/externalization.md
View file @
61c50f0c
...
...
@@ -77,6 +77,9 @@ Or:
hello
=
_
(
"Hello world!"
)
```
NOTE:
**Note:**
Messages in the API (
`lib/api/`
or
`app/graphql`
) do
not need to be externalised.
### HAML files
Given the following content in HAML:
...
...
lib/gitlab/ci/templates/Security/Container-Scanning.gitlab-ci.yml
View file @
61c50f0c
...
...
@@ -30,7 +30,7 @@ container_scanning:
services
:
-
docker:stable-dind
script
:
-
if [
-z "$DOCKER_HOST" -a "$KUBERNETES_PORT"
]; then { export DOCKER_SERVICE="localhost" ; export DOCKER_HOST="tcp://${DOCKER_SERVICE}:2375" ; } fi
-
if [
[ -n "$KUBERNETES_PORT" ]
]; then { export DOCKER_SERVICE="localhost" ; export DOCKER_HOST="tcp://${DOCKER_SERVICE}:2375" ; } fi
-
|
if [[ -n "$CI_REGISTRY_USER" ]]; then
echo "Logging to GitLab Container Registry with CI credentials..."
...
...
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