Migrating to the new runner registration workflow
- Tier: Free, Premium, Ultimate
- Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated
In GitLab 16.0, we introduced a new runner creation workflow that uses runner authentication tokens to register runners. The legacy workflow that uses registration tokens is deprecated and is scheduled for removal in GitLab 18.0.
For information about the current development status of the new workflow, see epic 7663.
For information about the technical design and reasons for the new architecture, see Next GitLab Runner Token Architecture.
If you experience problems or have concerns about the new runner registration workflow, or need more information, let us know in the feedback issue.
The new runner registration workflow
For the new runner registration workflow, you:
- Create a runner directly in the GitLab UI or programmatically.
- Receive a runner authentication token.
- Use the runner authentication token instead of the registration token when you register a runner with this configuration. Runner managers registered in multiple hosts appear under the same runner in the GitLab UI, but with an identifying system ID.
The new runner registration workflow has the following benefits:
- Preserved ownership records for runners, and minimized impact on users.
- The addition of a unique system ID ensures that you can reuse the same authentication token across multiple runners. For more information, see Reusing a GitLab Runner configuration.
Estimated time frame for planned changes
- In GitLab 15.10 and later, you can use the new runner registration workflow.
- In GitLab 17.0, we plan to disable runner registration tokens.
- In GitLab 18.0, we plan to completely remove support for runner registration tokens.
Prevent your runner registration workflow from breaking
In GitLab 16.11 and earlier, you can use the legacy runner registration workflow.
In GitLab 17.0, the legacy runner registration workflow is disabled by default. You can temporarily re-enable the legacy runner registration workflow. For more information, see Using registration tokens after GitLab 17.0.
If you don’t migrate to the new workflow when you upgrade to GitLab 17.0, the runner registration breaks and the gitlab-runner register
command returns a 410 Gone - runner registration disallowed
error.
To avoid a broken workflow, you must:
- Create a runner and obtain the authentication token.
- Replace the registration token in your runner registration workflow with the authentication token.
In GitLab 17.0 and later, runner registration tokens are disabled. To use stored runner registration tokens to register new runners, you must enable the tokens.
Using registration tokens after GitLab 17.0
To continue using registration tokens after GitLab 17.0:
- On GitLab.com, you can manually enable the legacy runner registration process in the top-level group settings until GitLab 18.0.
- On GitLab Self-Managed, you can manually enable the legacy runner registration process in the Admin area settings until GitLab 18.0.
Impact on existing runners
Existing runners will continue to work as usual after upgrading to GitLab 18.0. This change only affects registration of new runners.
The GitLab Runner Helm chart generates new runner pods every time a job is executed. For these runners, enable legacy runner registration to use registration tokens. In GitLab 18.0 and later, you must migrate to the new runner registration workflow.
Changes to the gitlab-runner register
command syntax
The gitlab-runner register
command accepts runner authentication tokens instead of registration tokens.
You can generate tokens from the Runners page in the Admin area.
The runner authentication tokens are recognizable by their glrt-
prefix.
When you create a runner in the GitLab UI, you specify configuration values that were previously command-line options
prompted by the gitlab-runner register
command.
These command-line options have been deprecated.
If you specify a runner authentication token with:
- the
--token
command-line option, thegitlab-runner register
command does not accept the configuration values. - the
--registration-token
command-line option, thegitlab-runner register
command ignores the configuration values.
Token | Registration command |
---|---|
Runner authentication token | gitlab-runner register --token $RUNNER_AUTHENTICATION_TOKEN |
Runner registration token (deprecated) | gitlab-runner register --registration-token $RUNNER_REGISTRATION_TOKEN <runner configuration arguments> |
Authentication tokens have the prefix, glrt-
.
To ensure minimal disruption to your automation workflow,
legacy-compatible registration processing
triggers if a runner authentication token is specified in the legacy parameter --registration-token
.
Example command for GitLab 15.9:
gitlab-runner register \
--non-interactive \
--executor "shell" \
--url "https://gitlab.com/" \
--tag-list "shell,mac,gdk,test" \
--run-untagged "false" \
--locked "false" \
--access-level "not_protected" \
--registration-token "REDACTED"
In GitLab 15.10 and later, you can create the runner and set attributes in the UI, like
tag list, locked status, and access level.
In GitLab 15.11 and later, these attributes are no longer accepted as arguments to register
when a runner authentication token with the glrt-
prefix is specified.
The following example shows the new command:
gitlab-runner register \
--non-interactive \
--executor "shell" \
--url "https://gitlab.com/" \
--token "REDACTED"
Impact on autoscaling
In autoscaling scenarios such as GitLab Runner Operator or GitLab Runner Helm Chart, the runner authentication token generated from the UI replaces the registration token. This means that the same runner configuration is reused across jobs, instead of creating a runner for each job. The specific runner can be identified by the unique system ID that is generated when the runner process is started.
Creating runners programmatically
In GitLab 15.11 and later, you can use the POST /user/runners REST API to create a runner as an authenticated user. This should only be used if the runner configuration is dynamic or not reusable. If the runner configuration is static, you should reuse the runner authentication token of an existing runner.
For instructions about how to automate runner creation and registration, see the tutorial, Automate runner creation and registration.
Installing GitLab Runner with Helm chart
Several runner configuration options cannot be set during runner registration. These options can only be configured:
- When you create a runner in the UI.
- With the
user/runners
REST API endpoint.
The following configuration options are no longer supported in values.yaml
:
## All these fields are DEPRECATED and the runner WILL FAIL TO START with GitLab Runner 18.0 and later if you specify them.
## If a runner authentication token is specified in runnerRegistrationToken, the registration will succeed, however the
## other values will be ignored.
runnerRegistrationToken: ""
locked: true
tags: ""
maximumTimeout: ""
runUntagged: true
protected: true
The runnerRegistrationToken
field replaces the runnerToken
field. For GitLab Runner on Kubernetes, Helm deploy passes the runner authentication token
to the runner worker pod and creates the runner configuration. In GitLab 17.0, if Kubernetes hosted runners attached to GitLab.com use runnerRegistrationToken
, the runner worker pod uses an unsupported Registration API method at creation.
If you store the runner authentication token in secrets
, you must also modify them.
In the legacy runner registration workflow, fields were specified with:
apiVersion: v1
kind: Secret
metadata:
name: gitlab-runner-secret
type: Opaque
data:
runner-registration-token: "REDACTED" # DEPRECATED, set to ""
runner-token: ""
In the new runner registration workflow, you must use runner-token
instead:
apiVersion: v1
kind: Secret
metadata:
name: gitlab-runner-secret
type: Opaque
data:
runner-registration-token: "" # need to leave as an empty string for compatibility reasons
runner-token: "REDACTED"
If your secret management solution doesn’t allow you to set an empty string for runner-registration-token
,
you can set it to any string. This value is ignored when runner-token
is present.
Known issues
Pod name is not visible in runner details page
When you use the new registration workflow to register your runners with Helm chart, the pod name doesn’t appear on the runner details page. For more information, see issue 423523.
Runner authentication token does not update when rotated
Token rotation with the same runner registered in multiple runner managers
When you register runners on multiple host machines through the new workflow with automatic token rotation, only the first runner manager receives the new token. The remaining runner managers continue to use the invalid token and become disconnected. You must update these managers manually to use the new token.
Token rotation in GitLab Operator
During runner registration with GitLab Operator through the new workflow, the runner authentication token in the Custom Resource Definition doesn’t update during token rotation. This occurs when:
- You’re using a runner authentication token (prefixed with
glrt-
) in a secret referenced by a Custom Resource Definition. - The runner authentication token is due to expire. For more information about runner authentication token expiration, see Authentication token security.
For more information, see issue 186.
Docs
Edit this page to fix an error or add an improvement in a merge request.
Create an issue to suggest an improvement to this page.
Product
Create an issue if there's something you don't like about this feature.
Propose functionality by submitting a feature request.
Feature availability and product trials
View pricing to see all GitLab tiers and features, or to upgrade.
Try GitLab for free with access to all features for 30 days.
Get help
If you didn't find what you were looking for, search the docs.
If you want help with something specific and could use community support, post on the GitLab forum.
For problems setting up or using this feature (depending on your GitLab subscription).
Request support