2017-11-01 11:56:40 -04:00
|
|
|
# Configuring GitLab Runners
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
Ideally, the GitLab Runner should not be installed on the same machine as GitLab.
|
2017-02-15 13:27:40 -05:00
|
|
|
Read the [requirements documentation](../../install/requirements.md#gitlab-runner)
|
2016-04-11 05:41:27 -04:00
|
|
|
for more information.
|
|
|
|
|
2018-05-08 04:53:26 -04:00
|
|
|
## Shared, specific and group Runners
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
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
|
2018-09-19 12:03:00 -04:00
|
|
|
Runners. For example, if you want to deploy a certain project, you can set up
|
2017-06-06 12:56:30 -04:00
|
|
|
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.
|
2018-05-08 04:53:26 -04:00
|
|
|
- **Group Runners** are useful when you have multiple projects under one group
|
2018-05-08 05:11:48 -04:00
|
|
|
and would like all projects to have access to a set of Runners. Group Runners
|
2018-05-08 04:53:26 -04:00
|
|
|
process jobs using a [FIFO] queue.
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
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**
|
2018-03-30 08:48:03 -04:00
|
|
|
under **Settings > CI/CD**.
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
Specific Runners do not get shared with forked projects automatically.
|
2017-06-06 12:56:30 -04:00
|
|
|
A fork does copy the CI settings (jobs, allow shared, etc) of the cloned
|
|
|
|
repository.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
## Registering a shared Runner
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
You can only register a shared Runner if you are an admin of the GitLab instance.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
1. Grab the shared-Runner token on the `admin/runners` page
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
![Shared Runners admin area](img/shared_runners_admin.png)
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
1. [Register the Runner][register]
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
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
|
2017-09-09 09:44:14 -04:00
|
|
|
**Settings ➔ CI/CD** page. Previous versions of GitLab defaulted shared
|
2017-06-06 12:56:30 -04:00
|
|
|
Runners to disabled.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
## Registering a specific Runner
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-05-08 04:49:37 -04:00
|
|
|
Registering a specific Runner can be done in two ways:
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
1. Creating a Runner with the project registration token
|
|
|
|
1. Converting a shared Runner into a specific Runner (one-way, admin only)
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
### Registering a specific Runner with a project registration token
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
To create a specific Runner without having admin rights to the GitLab instance,
|
2017-06-06 12:56:30 -04:00
|
|
|
visit the project you want to make the Runner work for in GitLab:
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
1. Go to **Settings > CI/CD** to obtain the token
|
2017-06-06 12:56:30 -04:00
|
|
|
1. [Register the Runner][register]
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-05-08 04:53:26 -04:00
|
|
|
## Registering a group Runner
|
|
|
|
|
2018-05-22 06:16:06 -04:00
|
|
|
Creating a group Runner requires Maintainer permissions for the group. To create a
|
2018-05-08 04:53:26 -04:00
|
|
|
group Runner visit the group you want to make the Runner work for in GitLab:
|
|
|
|
|
|
|
|
1. Go to **Settings > CI/CD** to obtain the token
|
|
|
|
1. [Register the Runner][register]
|
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
### Making an existing shared Runner specific
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
1. Go to the Runners in the admin area **Overview > Runners** (`/admin/runners`)
|
2017-06-06 12:56:30 -04:00
|
|
|
and find your Runner
|
|
|
|
1. Enable any projects under **Restrict projects for this Runner** to be used
|
|
|
|
with the Runner
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
From now on, the shared Runner will be specific to those projects.
|
|
|
|
|
|
|
|
## Locking a specific Runner from being enabled for other projects
|
2016-06-07 10:48:16 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
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.
|
2017-06-06 12:56:30 -04:00
|
|
|
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:
|
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
1. Visit your project's **Settings > CI/CD**
|
2017-06-06 12:56:30 -04:00
|
|
|
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
|
2016-06-07 10:48:16 -04:00
|
|
|
|
2017-09-05 09:25:33 -04:00
|
|
|
## Assigning a Runner to another project
|
|
|
|
|
2018-05-22 06:16:06 -04:00
|
|
|
If you are Maintainer on a project where a specific Runner is assigned to, and the
|
2017-09-05 09:25:33 -04:00
|
|
|
Runner is not [locked only to that project](#locking-a-specific-runner-from-being-enabled-for-other-projects),
|
2018-05-22 06:16:06 -04:00
|
|
|
you can enable the Runner also on any other project where you have Maintainer permissions.
|
2017-09-05 09:25:33 -04:00
|
|
|
|
|
|
|
To enable/disable a Runner in your project:
|
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
1. Visit your project's **Settings > CI/CD**
|
2017-09-05 09:25:33 -04:00
|
|
|
1. Find the Runner you wish to enable/disable
|
|
|
|
1. Click **Enable for this project** or **Disable for this project**
|
|
|
|
|
|
|
|
> **Note**:
|
|
|
|
Consider that if you don't lock your specific Runner to a specific project, any
|
2018-05-22 06:16:06 -04:00
|
|
|
user with Maintainer role in you project can assign your Runner to another arbitrary
|
2017-09-05 09:25:33 -04:00
|
|
|
project without requiring your authorization, so use it with caution.
|
|
|
|
|
2019-01-09 21:37:58 -05:00
|
|
|
CAUTION: **Caution:**
|
|
|
|
Never add a private Runner that you're using in your private projects to a
|
|
|
|
project that you share with other people.
|
|
|
|
|
|
|
|
CAUTION: **Caution:**
|
|
|
|
Never use a Runner from a project which has multiple maintainers in your
|
|
|
|
private project.
|
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
An admin can enable/disable a specific Runner for projects:
|
|
|
|
|
|
|
|
1. Navigate to **Admin > Runners**
|
2018-11-12 19:39:21 -05:00
|
|
|
1. Find the Runner you wish to enable/disable
|
|
|
|
1. Click edit on the Runner
|
|
|
|
1. Click **Enable** or **Disable** on the project
|
2018-03-30 08:48:03 -04:00
|
|
|
|
2017-08-28 05:19:45 -04:00
|
|
|
## Protected Runners
|
2017-08-23 12:07:35 -04:00
|
|
|
|
2018-09-06 12:52:18 -04:00
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/13194)
|
|
|
|
> in GitLab 10.0.
|
2017-08-23 12:07:35 -04:00
|
|
|
|
2017-08-28 05:19:45 -04:00
|
|
|
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 ignores other jobs.
|
2017-08-23 12:07:35 -04:00
|
|
|
|
2017-08-28 05:19:45 -04:00
|
|
|
To protect/unprotect Runners:
|
2017-08-23 12:07:35 -04:00
|
|
|
|
2018-03-30 08:48:03 -04:00
|
|
|
1. Visit your project's **Settings > CI/CD**
|
2017-08-28 05:19:45 -04:00
|
|
|
1. Find a Runner you want to protect/unprotect and make sure it's enabled
|
|
|
|
1. Click the pencil button besides the Runner name
|
2017-08-23 12:07:35 -04:00
|
|
|
1. Check the **Protected** option
|
|
|
|
1. Click **Save changes** for the changes to take effect
|
|
|
|
|
2017-08-28 05:19:45 -04:00
|
|
|
![specific Runners edit icon](img/protected_runners_check_box.png)
|
2017-08-25 04:48:33 -04:00
|
|
|
|
2018-01-18 11:16:23 -05:00
|
|
|
## Manually clearing the Runners cache
|
|
|
|
|
2017-06-15 05:30:23 -04:00
|
|
|
Read [clearing the cache](../caching/index.md#clearing-the-cache).
|
2018-01-18 11:16:23 -05:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
## How shared Runners pick jobs
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
**Example 1**
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
We have following jobs in queue:
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-15 15:53:44 -04:00
|
|
|
- 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
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
With the fair usage algorithm jobs are assigned in following order:
|
|
|
|
|
2017-06-15 15:53:44 -04:00
|
|
|
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
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
**Example 2**
|
|
|
|
|
|
|
|
We have following jobs in queue:
|
|
|
|
|
2017-06-15 15:53:44 -04:00
|
|
|
- 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
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
With the fair usage algorithm jobs are assigned in following order:
|
|
|
|
|
2017-06-15 15:53:44 -04:00
|
|
|
1. Job 1 is chosen first, because it has the lowest job number from projects with no running jobs (i.e. all projects)
|
2017-06-06 12:56:30 -04:00
|
|
|
1. We finish job 1
|
2017-06-15 15:53:44 -04:00
|
|
|
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)
|
2017-06-06 12:56:30 -04:00
|
|
|
1. We finish job 4
|
2017-06-15 15:53:44 -04:00
|
|
|
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?)
|
2017-06-06 12:56:30 -04:00
|
|
|
|
|
|
|
## Using shared Runners effectively
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
If you are planning to use shared Runners, there are several things you
|
2015-08-25 21:42:46 -04:00
|
|
|
should keep in mind.
|
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
### Using tags
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-09-19 12:03:00 -04:00
|
|
|
You must set up a Runner to be able to run all the different types of jobs
|
2015-08-25 21:42:46 -04:00
|
|
|
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
|
2017-06-15 05:30:23 -04:00
|
|
|
shared Runners will [only run the jobs they are equipped to run](../yaml/README.md#tags).
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
For instance, at GitLab we have Runners tagged with "rails" if they contain
|
2015-08-25 21:42:46 -04:00
|
|
|
the appropriate dependencies to run Rails test suites.
|
|
|
|
|
2017-06-06 12:56:30 -04:00
|
|
|
### Preventing Runners with tags from picking jobs without tags
|
2016-05-06 06:44:20 -04:00
|
|
|
|
2017-06-15 05:30:23 -04:00
|
|
|
You can configure a Runner to prevent it from picking
|
|
|
|
[jobs with tags](../yaml/README.md#tags) when the Runner does not have tags
|
|
|
|
assigned. This setting can be enabled the first
|
2017-06-06 12:56:30 -04:00
|
|
|
time you [register a Runner][register] and can be changed afterwards under
|
|
|
|
each Runner's settings.
|
|
|
|
|
|
|
|
To make a Runner pick tagged/untagged jobs:
|
|
|
|
|
2017-09-09 09:44:14 -04:00
|
|
|
1. Visit your project's **Settings ➔ CI/CD**
|
2017-06-06 12:56:30 -04:00
|
|
|
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
|
2016-05-06 06:44:20 -04:00
|
|
|
|
2018-02-20 23:28:08 -05:00
|
|
|
### Setting maximum job timeout for a Runner
|
|
|
|
|
|
|
|
For each Runner you can specify a _maximum job timeout_. Such timeout,
|
|
|
|
if smaller than [project defined timeout], will take the precedence. This
|
|
|
|
feature can be used to prevent Shared Runner from being appropriated
|
|
|
|
by a project by setting a ridiculous big timeout (e.g. one week).
|
|
|
|
|
|
|
|
When not configured, Runner will not override project timeout.
|
|
|
|
|
|
|
|
How this feature will work:
|
|
|
|
|
|
|
|
**Example 1 - Runner timeout bigger than project timeout**
|
|
|
|
|
|
|
|
1. You set the _maximum job timeout_ for a Runner to 24 hours
|
|
|
|
1. You set the _CI/CD Timeout_ for a project to **2 hours**
|
|
|
|
1. You start a job
|
|
|
|
1. The job, if running longer, will be timeouted after **2 hours**
|
|
|
|
|
|
|
|
**Example 2 - Runner timeout not configured**
|
|
|
|
|
|
|
|
1. You remove the _maximum job timeout_ configuration from a Runner
|
|
|
|
1. You set the _CI/CD Timeout_ for a project to **2 hours**
|
|
|
|
1. You start a job
|
|
|
|
1. The job, if running longer, will be timeouted after **2 hours**
|
|
|
|
|
|
|
|
**Example 3 - Runner timeout smaller than project timeout**
|
|
|
|
|
|
|
|
1. You set the _maximum job timeout_ for a Runner to **30 minutes**
|
|
|
|
1. You set the _CI/CD Timeout_ for a project to 2 hours
|
|
|
|
1. You start a job
|
|
|
|
1. The job, if running longer, will be timeouted after **30 minutes**
|
|
|
|
|
2016-05-06 06:44:20 -04:00
|
|
|
### Be careful with sensitive information
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-09-06 01:56:11 -04:00
|
|
|
With some [Runner Executors](https://docs.gitlab.com/runner/executors/README.html),
|
|
|
|
if you can run a job on the Runner, you can get access to any code it runs
|
2017-02-13 11:59:57 -05:00
|
|
|
and get the token of the Runner. With shared Runners, this means that anyone
|
2017-06-06 12:56:30 -04:00
|
|
|
that runs jobs on the Runner, can access anyone else's code that runs on the
|
|
|
|
Runner.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
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.
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
The above is easily avoided by restricting the usage of shared Runners
|
2017-09-06 01:56:11 -04:00
|
|
|
on large public GitLab instances, controlling access to your GitLab instance,
|
|
|
|
and using more secure [Runner Executors](https://docs.gitlab.com/runner/executors/README.html).
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
### Forks
|
|
|
|
|
|
|
|
Whenever a project is forked, it copies the settings of the jobs that relate
|
2018-09-19 12:03:00 -04:00
|
|
|
to it. This means that if you have shared Runners set up for a project and
|
2017-02-13 11:59:57 -05:00
|
|
|
someone forks that project, the shared Runners will also serve jobs of this
|
2015-08-25 21:42:46 -04:00
|
|
|
project.
|
|
|
|
|
2016-04-11 05:41:27 -04:00
|
|
|
## Attack vectors in Runners
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
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/).
|
2017-06-06 12:56:30 -04:00
|
|
|
|
2018-04-10 18:03:26 -04:00
|
|
|
### Resetting the registration token for a Project
|
|
|
|
|
|
|
|
If you think that registration token for a Project was revealed, you should
|
|
|
|
reset them. It's recommended because such token can be used to register another
|
2018-10-22 02:21:12 -04:00
|
|
|
Runner to the Project. It may be next used to obtain the values of secret
|
2018-04-10 18:03:26 -04:00
|
|
|
variables or clone the project code, that normally may be unavailable for the
|
|
|
|
attacker.
|
|
|
|
|
|
|
|
To reset the token:
|
|
|
|
|
|
|
|
1. Go to **Settings > CI/CD** for a specified Project
|
|
|
|
1. Expand the **General pipelines settings** section
|
|
|
|
1. Find the **Runner token** form field and click the **Reveal value** button
|
|
|
|
1. Delete the value and save the form
|
|
|
|
1. After the page is refreshed, expand the **Runners settings** section
|
|
|
|
and check the registration token - it should be changed
|
|
|
|
|
|
|
|
From now on the old token is not valid anymore and will not allow to register
|
|
|
|
a new Runner to the project. If you are using any tools to provision and
|
|
|
|
register new Runners, you should now update the token that is used to the
|
|
|
|
new value.
|
|
|
|
|
2018-03-18 20:16:18 -04:00
|
|
|
## Determining the IP address of a Runner
|
|
|
|
|
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/17286) in GitLab 10.6.
|
|
|
|
|
|
|
|
It may be useful to know the IP address of a Runner so you can troubleshoot
|
|
|
|
issues with that Runner. GitLab stores and displays the IP address by viewing
|
|
|
|
the source of the HTTP requests it makes to GitLab when polling for jobs. The
|
|
|
|
IP address is always kept up to date so if the Runner IP changes it will be
|
|
|
|
automatically updated in GitLab.
|
|
|
|
|
|
|
|
The IP address for shared Runners and specific Runners can be found in
|
|
|
|
different places.
|
|
|
|
|
|
|
|
### Shared Runners
|
|
|
|
|
|
|
|
To view the IP address of a shared Runner you must have admin access to
|
|
|
|
the GitLab instance. To determine this:
|
|
|
|
|
|
|
|
1. Visit **Admin area ➔ Overview ➔ Runners**
|
|
|
|
1. Look for the Runner in the table and you should see a column for "IP Address"
|
|
|
|
|
|
|
|
![shared Runner IP address](img/shared_runner_ip_address.png)
|
|
|
|
|
|
|
|
### Specific Runners
|
|
|
|
|
|
|
|
You can find the IP address of a Runner for a specific project by:
|
|
|
|
|
|
|
|
1. Visit your project's **Settings ➔ CI/CD**
|
|
|
|
1. Find the Runner and click on it's ID which links you to the details page
|
|
|
|
1. On the details page you should see a row for "IP Address"
|
|
|
|
|
|
|
|
![specific Runner IP address](img/specific_runner_ip_address.png)
|
2018-02-20 23:28:08 -05:00
|
|
|
|
|
|
|
[install]: http://docs.gitlab.com/runner/install/
|
|
|
|
[fifo]: https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics)
|
|
|
|
[register]: http://docs.gitlab.com/runner/register/
|
|
|
|
[protected branches]: ../../user/project/protected_branches.md
|
|
|
|
[protected tags]: ../../user/project/protected_tags.md
|
|
|
|
[project defined timeout]: ../../user/project/pipelines/settings.html#timeout
|