Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
gitlab-runner
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1,989
Issues
1,989
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
189
Merge Requests
189
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GitLab.org
gitlab-runner
Commits
780e56d5
Commit
780e56d5
authored
Nov 20, 2015
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs and CHANGELOG
parent
01715d85
Pipeline
#268461
passed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
9 deletions
+19
-9
CHANGELOG.md
CHANGELOG.md
+9
-0
docs/configuration/tls-self-signed.md
docs/configuration/tls-self-signed.md
+10
-9
No files found.
CHANGELOG.md
View file @
780e56d5
...
...
@@ -3,6 +3,15 @@ v 0.7.0 (unreleased)
-
Refactor bash script adding pre-build and post-build steps
-
Add support for build artifacts
-
Add support for caching build directories
-
Add command to generate archive with cached folders or artifacts
-
Use separate containers to run pre-build (git clonning), build (user scripts) and post-build (uploading artifacts)
-
Expand variables, allowing to use $CI_BUILD_TAG in image names, or in other variables
-
Make shell executor to use absolute path for project dir
-
Be strict about code formatting
-
Move network related code to separate package
-
Automatically load TLS certificates stored in /etc/gitlab-runner/certs/
<hostname>
.crt
-
Allow to specify tls-ca-file during registration
-
Allow to disable tls verification during registration
v 0.6.1
-
Revert: Fix tags handling when using git fetch: fetch all tags and prune the old ones
...
...
docs/configuration/tls-self-signed.md
View file @
780e56d5
...
...
@@ -10,12 +10,12 @@ The GitLab Runner provides these options:
2.
GitLab Runner reads the PEM (
**DER format is not supported**
) certificate from predefined file:
- `/etc/gitlab-runner/certs/hostname.crt` on *nix systems when gitlab-runner is executed as root.
- `~/.gitlab-runner/certs/hostname.crt` on *nix systems when gitlab-runner is executed as non-root,
- `./certs/hostname.crt` on other systems.
If address of your server is: `https://my.gitlab.server.com:8443/`.
Create the certificate file at: `/etc/gitlab-runner/certs/my.gitlab.server.com`.
- `/etc/gitlab-runner/certs/hostname.crt` on *nix systems when gitlab-runner is executed as root.
- `~/.gitlab-runner/certs/hostname.crt` on *nix systems when gitlab-runner is executed as non-root,
- `./certs/hostname.crt` on other systems.
If address of your server is: `https://my.gitlab.server.com:8443/`.
Create the certificate file at: `/etc/gitlab-runner/certs/my.gitlab.server.com`.
3.
GitLab Runner exposes
`tls-ca-file`
option during registration and in
[
`config.toml`
](
advanced-configuration.md
)
which allows you to specify custom file with certificates. This file will be read everytime when runner tries to
...
...
@@ -25,9 +25,10 @@ access the GitLab server.
which allows you to skip TLS verification when connecting to server.
**This approach is INSECURE! Use at your own risk!**
Anyone can eavesdrop your connection:
-
see the runner token which is used to authenticate against GitLab,
-
see tokens which are used to clone GitLab projects,
-
see the secure variables that are passed to runner.
- see the runner token which is used to authenticate against GitLab,
- see tokens which are used to clone GitLab projects,
- see the secure variables that are passed to runner.
### Git cloning
...
...
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