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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
b4972c4b
Commit
b4972c4b
authored
Jun 08, 2017
by
Sean Packham
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'docs/shared-runners' into 'master'
Refactor Runners docs Closes #18882 See merge request !11948
parents
378830c5
e717c735
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
136 additions
and
78 deletions
+136
-78
doc/ci/runners/README.md
doc/ci/runners/README.md
+136
-78
doc/ci/runners/img/shared_runners_admin.png
doc/ci/runners/img/shared_runners_admin.png
+0
-0
doc/ci/runners/project_specific.png
doc/ci/runners/project_specific.png
+0
-0
doc/ci/runners/shared_runner.png
doc/ci/runners/shared_runner.png
+0
-0
No files found.
doc/ci/runners/README.md
View file @
b4972c4b
# Runners
# Runners
In GitLab CI, Runners run
your
[
yaml
](
../yaml/README.md
)
.
In GitLab CI, Runners run
the code defined in
[
`.gitlab-ci.yml`
](
../yaml/README.md
)
.
A Runner is an isolated (virtual) machine that picks up jobs
They are isolated (virtual) machines that pick up jobs through the coordinator
through the coordinator
API of GitLab CI.
API of GitLab CI.
A Runner can be specific to a certain project or serve any project
A Runner can be specific to a certain project or serve any project
in GitLab CI. A Runner that serves all projects is called a shared Runner.
in GitLab CI. A Runner that serves all projects is called a shared Runner.
Ideally, GitLab Runner should not be installed on the same machine as GitLab.
Ideally,
the
GitLab Runner should not be installed on the same machine as GitLab.
Read the
[
requirements documentation
](
../../install/requirements.md#gitlab-runner
)
Read the
[
requirements documentation
](
../../install/requirements.md#gitlab-runner
)
for more information.
for more information.
## Shared vs. Specific Runners
## Shared vs specific Runners
A Runner that is specific only runs for the specified project. A shared Runner
After
[
installing the Runner
][
install
]
, you can either register it as shared or
can run jobs for every project that has enabled the option
**Allow shared Runners**
.
specific. You can only register a shared Runner if you have admin access to
the GitLab instance. The main differences between a shared and a specific Runner
**Shared Runners**
are useful for jobs that have similar requirements,
are:
between multiple projects. Rather than having multiple Runners idling for
many projects, you can have a single or a small number of Runners that handle
-
**Shared Runners**
are useful for jobs that have similar requirements,
multiple projects. This makes it easier to maintain and update Runners.
between multiple projects. Rather than having multiple Runners idling for
many projects, you can have a single or a small number of Runners that handle
**Specific Runners**
are useful for jobs that have special requirements or for
multiple projects. This makes it easier to maintain and update them.
projects with a specific demand. If a job has certain requirements, you can set
Shared Runners process jobs using a
[
fair usage queue
](
#how-shared-runners-pick-jobs
)
.
up the specific Runner with this in mind, while not having to do this for all
In contrast to specific Runners that use a FIFO queue, this prevents
Runners. For example, if you want to deploy a certain project, you can setup
cases where projects create hundreds of jobs which can lead to eating all
a specific Runner to have the right credentials for this.
available shared Runners resources.
-
**Specific Runners**
are useful for jobs that have special requirements or for
Projects with high demand of CI activity can also benefit from using specific Runners.
projects with a specific demand. If a job has certain requirements, you can set
By having dedicated Runners you are guaranteed that the Runner is not being held
up the specific Runner with this in mind, while not having to do this for all
up by another project's jobs.
Runners. For example, if you want to deploy a certain project, you can setup
a specific Runner to have the right credentials for this. The
[
usage of tags
](
#using-tags
)
may be useful in this case. Specific Runners process jobs using a [FIFO] queue.
A Runner that is specific only runs for the specified project(s). A shared Runner
can run jobs for every project that has enabled the option
**Allow shared Runners**
under
**Settings ➔ Pipelines**
.
Projects with high demand of CI activity can also benefit from using specific
Runners. By having dedicated Runners you are guaranteed that the Runner is not
being held up by another project's jobs.
You can set up a specific Runner to be used by multiple projects. The difference
You can set up a specific Runner to be used by multiple projects. The difference
with a shared Runner is that you have to enable each project explicitly for
with a shared Runner is that you have to enable each project explicitly for
the Runner to be able to run its jobs.
the Runner to be able to run its jobs.
Specific Runners do not get shared with forked projects automatically.
Specific Runners do not get shared with forked projects automatically.
A fork does copy the CI settings (jobs, allow shared, etc) of the cloned repository.
A fork does copy the CI settings (jobs, allow shared, etc) of the cloned
repository.
# Creating and Registering a Runner
There are several ways to create a Runner. Only after creation, upon
registration its status as Shared or Specific is determined.
[
See the documentation for
](
https://docs.gitlab.com/runner/install
)
the different methods of installing a Runner instance.
After installing the Runner, you can either register it as
`Shared`
or as
`Specific`
.
## Registering a shared Runner
You can only register a Shared Runner if you have admin access to the GitLab instance.
## Registering a Shared Runner
You can only register a shared Runner if you are an admin of the GitLab instance.
You can only register a shared Runner if you are an admin on the linked
1.
Grab the shared-Runner token on the
`admin/runners`
page
GitLab instance.
Grab the shared-Runner token on the
`admin/runners`
page of your GitLab CI
![Shared Runners admin area](img/shared_runners_admin.png)
instance.
![
shared token
](
shared_runner.png
)
1.
[
Register the Runner
][
register
]
Now simply register the Runner as any Runner:
Shared Runners are enabled by default as of GitLab 8.2, but can be disabled
with the
**Disable shared Runners**
button which is present under each project's
**Settings ➔ Pipelines**
page. Previous versions of GitLab defaulted shared
Runners to disabled.
```
## Registering a specific Runner
sudo gitlab-ci-multi-runner register
```
Shared Runners are enabled by default as of GitLab 8.2, but can be disabled with the
`DISABLE SHARED RUNNERS`
button. Previous versions of GitLab defaulted shared Runners to
disabled.
## Registering a Specific Runner
Registering a specific can be done in two ways:
Registering a specific can be done in two ways:
1.
Creating a Runner with the project registration token
1.
Creating a Runner with the project registration token
1.
Converting a shared Runner into a specific Runner (one-way, admin only)
1.
Converting a shared Runner into a specific Runner (one-way, admin only)
There are several ways to create a Runner instance. The steps below only
### Registering a specific Runner with a project registration token
concern registering the Runner on GitLab CI.
### Registering a Specific Runner with a Project Registration token
To create a specific Runner without having admin rights to the GitLab instance,
To create a specific Runner without having admin rights to the GitLab instance,
visit the project you want to make the Runner work for in GitLab
CI.
visit the project you want to make the Runner work for in GitLab
:
Click on the Runner tab and use the registration token you find there to
1.
Go to
**Settings ➔ Pipelines**
to obtain the token
setup a specific Runner for this project.
1.
[
Register the Runner
][
register
]
![
project Runners in GitLab CI
](
project_specific.png
)
### Making an existing shared Runner specific
To register the Runner, run the command below and follow instructions:
If you are an admin on your GitLab instance, you can turn any shared Runner into
a specific one, but not the other way around. Keep in mind that this is a one
way transition.
```
1.
Go to the Runners in the admin area
**Overview ➔ Runners**
(
`/admin/runners`
)
sudo gitlab-ci-multi-runner register
and find your Runner
```
1.
Enable any projects under
**Restrict projects for this Runner**
to be used
with the Runner
### Lock a specific Runner from being enabled for other projects
From now on, the shared Runner will be specific to those projects.
## Locking a specific Runner from being enabled for other projects
You can configure a Runner to assign it exclusively to a project. When a
You can configure a Runner to assign it exclusively to a project. When a
Runner is locked this way, it can no longer be enabled for other projects.
Runner is locked this way, it can no longer be enabled for other projects.
This setting is available on each Runner in
*Project Settings*
>
*Runners*
.
This setting can be enabled the first time you
[
register a Runner
][
register
]
and
can be changed afterwards under each Runner's settings.
To lock/unlock a Runner:
1.
Visit your project's
**Settings ➔ Pipelines**
1.
Find the Runner you wish to lock/unlock and make sure it's enabled
1.
Click the pencil button
1.
Check the
**Lock to current projects**
option
1.
Click
**Save changes**
for the changes to take effect
##
# Making an existing Shared Runner Specific
##
How shared Runners pick jobs
If you are an admin on your GitLab instance,
Shared Runners abide to a process queue we call fair usage. The fair usage
you can make any shared Runner a specific Runner, _but you can not
algorithm tries to assign jobs to shared Runners from projects that have the
make a specific Runner a shared Runner_
.
lowest number of jobs currently running on shared Runners
.
To make a shared Runner specific, go to the Runner page (
`/admin/runners`
)
**Example 1**
and find your Runner. Add any projects on the left to make this Runner
run exclusively for these projects, therefore making it a specific Runner.
![
making a shared Runner specific
](
shared_to_specific_admin.png
)
We have following jobs in queue:
## Using Shared Runners Effectively
-
job 1 for project 1
-
job 2 for project 1
-
job 3 for project 1
-
job 4 for project 2
-
job 5 for project 2
-
job 6 for project 3
With the fair usage algorithm jobs are assigned in following order:
1.
We choose job 1, because project 1 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We choose job 4, because project 2 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We choose job 6, because project 3 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We choose job 2, because project 1 as other it runs 1 job
1.
We choose job 5, because project 2 runs 1 job, where project 1 runs 2 jobs now
1.
We choose job 3, because project 1 and runs 2 jobs
---
**Example 2**
We have following jobs in queue:
-
job 1 for project 1
-
job 2 for project 1
-
job 3 for project 1
-
job 4 for project 2
-
job 5 for project 2
-
job 6 for project 3
With the fair usage algorithm jobs are assigned in following order:
1.
We choose job 1, because project 1 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We finish job 1
1.
We choose job 2, because project 1 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We choose job 4, because project 2 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We finish job 4
1.
We choose job 5, because project 2 doesn't run currently any jobs and has the lowest job number from projects that doesn't run jobs
1.
We choose job 6, because project 3 doesn't run currently any jobs
1.
We choose job 3, because project 1, 2 and 3 runs exactly one job now
## Using shared Runners effectively
If you are planning to use shared Runners, there are several things you
If you are planning to use shared Runners, there are several things you
should keep in mind.
should keep in mind.
### Us
e T
ags
### Us
ing t
ags
You must setup a Runner to be able to run all the different types of jobs
You must setup a Runner to be able to run all the different types of jobs
that it may encounter on the projects it's shared over. This would be
that it may encounter on the projects it's shared over. This would be
...
@@ -130,17 +174,27 @@ shared Runners will only run the jobs they are equipped to run.
...
@@ -130,17 +174,27 @@ shared Runners will only run the jobs they are equipped to run.
For instance, at GitLab we have Runners tagged with "rails" if they contain
For instance, at GitLab we have Runners tagged with "rails" if they contain
the appropriate dependencies to run Rails test suites.
the appropriate dependencies to run Rails test suites.
### Prevent
Runner
with tags from picking jobs without tags
### Prevent
ing Runners
with tags from picking jobs without tags
You can configure a Runner to prevent it from picking jobs with tags when
You can configure a Runner to prevent it from picking jobs with tags when
the Runner does not have tags assigned. This setting is available on each
the Runner does not have tags assigned. This setting can be enabled the first
Runner in
*Project Settings*
>
*Runners*
.
time you
[
register a Runner
][
register
]
and can be changed afterwards under
each Runner's settings.
To make a Runner pick tagged/untagged jobs:
1.
Visit your project's
**Settings ➔ Pipelines**
1.
Find the Runner you wish and make sure it's enabled
1.
Click the pencil button
1.
Check the
**Run untagged jobs**
option
1.
Click
**Save changes**
for the changes to take effect
### Be careful with sensitive information
### Be careful with sensitive information
If you can run a job on a Runner, you can get access to any code it runs
If you can run a job on a Runner, you can get access to any code it runs
and get the token of the Runner. With shared Runners, this means that anyone
and get the token of the Runner. With shared Runners, this means that anyone
that runs jobs on the Runner, can access anyone else's code that runs on the Runner.
that runs jobs on the Runner, can access anyone else's code that runs on the
Runner.
In addition, because you can get access to the Runner token, it is possible
In addition, because you can get access to the Runner token, it is possible
to create a clone of a Runner and submit false jobs, for example.
to create a clone of a Runner and submit false jobs, for example.
...
@@ -160,3 +214,7 @@ project.
...
@@ -160,3 +214,7 @@ project.
Mentioned briefly earlier, but the following things of Runners can be exploited.
Mentioned briefly earlier, but the following things of Runners can be exploited.
We're always looking for contributions that can mitigate these
We're always looking for contributions that can mitigate these
[
Security Considerations
](
https://docs.gitlab.com/runner/security/
)
.
[
Security Considerations
](
https://docs.gitlab.com/runner/security/
)
.
[
install
]:
http://docs.gitlab.com/runner/install/
[
fifo
]:
https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics)
[
register
]:
http://docs.gitlab.com/runner/register/
doc/ci/runners/img/shared_runners_admin.png
0 → 100644
View file @
b4972c4b
28.5 KB
doc/ci/runners/project_specific.png
deleted
100644 → 0
View file @
378830c5
29.5 KB
doc/ci/runners/shared_runner.png
deleted
100644 → 0
View file @
378830c5
17.4 KB
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