README.md 9.9 KB
Newer Older
D
Douwe Maan 已提交
1 2
# Runners

A
Achilleas Pipinellis 已提交
3 4 5
In GitLab CI, Runners run the code defined in [`.gitlab-ci.yml`](../yaml/README.md).
They are isolated (virtual) machines that pick up jobs through the coordinator
API of GitLab CI.
D
Douwe Maan 已提交
6

7 8
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.
D
Douwe Maan 已提交
9

A
Achilleas Pipinellis 已提交
10
Ideally, the GitLab Runner should not be installed on the same machine as GitLab.
11
Read the [requirements documentation](../../install/requirements.md#gitlab-runner)
12 13
for more information.

A
Achilleas Pipinellis 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
## Shared vs specific Runners

After [installing the Runner][install], you can either register it as shared or
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
are:

- **Shared Runners** are useful for jobs that have similar requirements,
  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
  multiple projects. This makes it easier to maintain and update them.
  Shared Runners process jobs using a [fair usage queue](#how-shared-runners-pick-jobs).
  In contrast to specific Runners that use a FIFO queue, this prevents
  cases where projects create hundreds of jobs which can lead to eating all
  available shared Runners resources.
- **Specific Runners** are useful for jobs that have special requirements or for
  projects with a specific demand. If a job has certain requirements, you can set
  up the specific Runner with this in mind, while not having to do this for all
  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.
D
Douwe Maan 已提交
43

44 45 46
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
the Runner to be able to run its jobs.
D
Douwe Maan 已提交
47

48
Specific Runners do not get shared with forked projects automatically.
A
Achilleas Pipinellis 已提交
49 50
A fork does copy the CI settings (jobs, allow shared, etc) of the cloned
repository.
D
Douwe Maan 已提交
51

A
Achilleas Pipinellis 已提交
52
## Registering a shared Runner
D
Douwe Maan 已提交
53

A
Achilleas Pipinellis 已提交
54
You can only register a shared Runner if you are an admin of the GitLab instance.
D
Douwe Maan 已提交
55

A
Achilleas Pipinellis 已提交
56
1. Grab the shared-Runner token on the `admin/runners` page
D
Douwe Maan 已提交
57

A
Achilleas Pipinellis 已提交
58
    ![Shared Runners admin area](img/shared_runners_admin.png)
D
Douwe Maan 已提交
59

A
Achilleas Pipinellis 已提交
60
1. [Register the Runner][register]
D
Douwe Maan 已提交
61

A
Achilleas Pipinellis 已提交
62 63 64 65
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.
D
Douwe Maan 已提交
66

A
Achilleas Pipinellis 已提交
67
## Registering a specific Runner
D
Douwe Maan 已提交
68 69 70

Registering a specific can be done in two ways:

71 72
1. Creating a Runner with the project registration token
1. Converting a shared Runner into a specific Runner (one-way, admin only)
D
Douwe Maan 已提交
73

A
Achilleas Pipinellis 已提交
74
### Registering a specific Runner with a project registration token
D
Douwe Maan 已提交
75

76
To create a specific Runner without having admin rights to the GitLab instance,
A
Achilleas Pipinellis 已提交
77
visit the project you want to make the Runner work for in GitLab:
D
Douwe Maan 已提交
78

A
Achilleas Pipinellis 已提交
79 80
1. Go to **Settings ➔ Pipelines** to obtain the token
1. [Register the Runner][register]
D
Douwe Maan 已提交
81

A
Achilleas Pipinellis 已提交
82
### Making an existing shared Runner specific
D
Douwe Maan 已提交
83

A
Achilleas Pipinellis 已提交
84 85 86
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.
D
Douwe Maan 已提交
87

A
Achilleas Pipinellis 已提交
88 89 90 91
1. Go to the Runners in the admin area **Overview ➔ Runners** (`/admin/runners`)
   and find your Runner
1. Enable any projects under **Restrict projects for this Runner** to be used
   with the Runner
D
Douwe Maan 已提交
92

A
Achilleas Pipinellis 已提交
93 94 95
From now on, the shared Runner will be specific to those projects.

## Locking a specific Runner from being enabled for other projects
96

97 98
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.
A
Achilleas Pipinellis 已提交
99 100 101 102 103 104 105 106 107 108
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
109

S
Add doc  
Shinya Maeda 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
## Protected runners

>**Notes:**
This feature requires GitLab 10.0 or higher.

You can protect runners from revealing sensitive information.
Whenever a runner is protected, the runner picks only jobs created on
[protected branches] or [protected tags], and ignore other jobs.

To protect/unprotect runners:

1. Visit your project's **Settings ➔ Pipelines**
1. Find a runner you want to protect/unprotect and make sure it's enabled
1. Click a pencil button ![specific runners edit icon](img/specific_runners_edit_icon.png) resides runner name
1. Check the **Protected** option
1. Click **Save changes** for the changes to take effect

A
Achilleas Pipinellis 已提交
127
## How shared Runners pick jobs
D
Douwe Maan 已提交
128

A
Achilleas Pipinellis 已提交
129 130 131
Shared Runners abide to a process queue we call fair usage. The fair usage
algorithm tries to assign jobs to shared Runners from projects that have the
lowest number of jobs currently running on shared Runners.
D
Douwe Maan 已提交
132

A
Achilleas Pipinellis 已提交
133
**Example 1**
D
Douwe Maan 已提交
134

A
Achilleas Pipinellis 已提交
135
We have following jobs in queue:
D
Douwe Maan 已提交
136

137 138 139 140 141 142
- 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
A
Achilleas Pipinellis 已提交
143 144 145

With the fair usage algorithm jobs are assigned in following order:

146 147 148 149 150 151
1. Job 1 is chosen first, because it has the lowest job number from projects with no running jobs (i.e. all projects)
1. Job 4 is next, because 4 is now the lowest job number from projects with no running jobs (Project 1 has a job running)
1. Job 6 is next, because 6 is now the lowest job number from projects with no running jobs (Projects 1 and 2 have jobs running)
1. Job 2 is next, because, of projects with the lowest number of jobs running (each has 1), it is the lowest job number
1. Job 5 is next, because Project 1 now has 2 jobs running, and between Projects 2 and 3, Job 5 is the lowest remaining job number
1. Lastly we choose Job 3... because it's the only job left
A
Achilleas Pipinellis 已提交
152 153 154 155 156 157 158

---

**Example 2**

We have following jobs in queue:

159 160 161 162 163 164
- 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
A
Achilleas Pipinellis 已提交
165 166 167

With the fair usage algorithm jobs are assigned in following order:

168
1. Job 1 is chosen first, because it has the lowest job number from projects with no running jobs (i.e. all projects)
A
Achilleas Pipinellis 已提交
169
1. We finish job 1
170 171
1. Job 2 is next, because, having finished Job 1, all projects have 0 jobs running again, and 2 is the lowest available job number
1. Job 4 is next, because with Project 1 running a job, 4 is the lowest number from projects running no jobs (Projects 2 and 3)
A
Achilleas Pipinellis 已提交
172
1. We finish job 4
173 174 175
1. Job 5 is next, because having finished Job 4, Project 2 has no jobs running again
1. Job 6 is next, because Project 3 is the only project left with no running jobs
1. Lastly we choose Job 3... because, again, it's the only job left (who says 1 is the loneliest number?)
A
Achilleas Pipinellis 已提交
176 177

## Using shared Runners effectively
D
Douwe Maan 已提交
178

179
If you are planning to use shared Runners, there are several things you
D
Douwe Maan 已提交
180 181
should keep in mind.

A
Achilleas Pipinellis 已提交
182
### Using tags
D
Douwe Maan 已提交
183

184
You must setup a Runner to be able to run all the different types of jobs
D
Douwe Maan 已提交
185 186 187 188
that it may encounter on the projects it's shared over. This would be
problematic for large amounts of projects, if it wasn't for tags.

By tagging a Runner for the types of jobs it can handle, you can make sure
189
shared Runners will only run the jobs they are equipped to run.
D
Douwe Maan 已提交
190

191
For instance, at GitLab we have Runners tagged with "rails" if they contain
D
Douwe Maan 已提交
192 193
the appropriate dependencies to run Rails test suites.

A
Achilleas Pipinellis 已提交
194
### Preventing Runners with tags from picking jobs without tags
195

196
You can configure a Runner to prevent it from picking jobs with tags when
A
Achilleas Pipinellis 已提交
197 198 199 200 201 202 203 204 205 206 207
the Runner does not have tags assigned. This setting can be enabled the first
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
208 209

### Be careful with sensitive information
D
Douwe Maan 已提交
210

211 212
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
A
Achilleas Pipinellis 已提交
213 214
that runs jobs on the Runner, can access anyone else's code that runs on the
Runner.
D
Douwe Maan 已提交
215

216 217
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.
D
Douwe Maan 已提交
218

219
The above is easily avoided by restricting the usage of shared Runners
D
Douwe Maan 已提交
220 221 222 223 224
on large public GitLab instances and controlling access to your GitLab instance.

### Forks

Whenever a project is forked, it copies the settings of the jobs that relate
225 226
to it. This means that if you have shared Runners setup for a project and
someone forks that project, the shared Runners will also serve jobs of this
D
Douwe Maan 已提交
227 228
project.

229
## Attack vectors in Runners
D
Douwe Maan 已提交
230

231 232 233
Mentioned briefly earlier, but the following things of Runners can be exploited.
We're always looking for contributions that can mitigate these
[Security Considerations](https://docs.gitlab.com/runner/security/).
A
Achilleas Pipinellis 已提交
234 235 236 237

[install]: http://docs.gitlab.com/runner/install/
[fifo]: https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics)
[register]: http://docs.gitlab.com/runner/register/
S
Add doc  
Shinya Maeda 已提交
238 239
[protected branches]: ../../user/project/protected_branches.md
[protected tags]: ../../user/project/protected_tags.md