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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ddc3022e
Commit
ddc3022e
authored
Sep 24, 2020
by
Suzanne Selhorn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs: Fixed duplicate remove topics
Related to:
https://gitlab.com/gitlab-org/gitlab/-/issues/250320
parent
e664c95a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
20 deletions
+27
-20
doc/api/runners.md
doc/api/runners.md
+27
-20
No files found.
doc/api/runners.md
View file @
ddc3022e
...
@@ -271,22 +271,6 @@ Example response:
...
@@ -271,22 +271,6 @@ Example response:
}
}
```
```
## Remove a runner
Remove a runner.
```
plaintext
DELETE /runners/:id
```
| Attribute | Type | Required | Description |
|-----------|---------|----------|---------------------|
|
`id`
| integer | yes | The ID of a runner |
```
shell
curl
--request
DELETE
--header
"PRIVATE-TOKEN: <your_access_token>"
"https://gitlab.example.com/api/v4/runners/6"
```
## List runner's jobs
## List runner's jobs
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/15432) in GitLab 10.3.
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/15432) in GitLab 10.3.
...
@@ -466,7 +450,7 @@ Example response:
...
@@ -466,7 +450,7 @@ Example response:
Disable a specific runner from the project. It works only if the project isn't
Disable a specific runner from the project. It works only if the project isn't
the only project associated with the specified runner. If so, an error is
the only project associated with the specified runner. If so, an error is
returned. Use the
[
Remove a runner
](
#remove-a-runner
)
call
instead.
returned. Use the
call to
[
delete a runner
](
#delete-a-runner
)
instead.
```
plaintext
```
plaintext
DELETE /projects/:id/runners/:runner_id
DELETE /projects/:id/runners/:runner_id
...
@@ -580,9 +564,32 @@ Example response:
...
@@ -580,9 +564,32 @@ Example response:
}
}
```
```
## Delete a registered runner
## Delete a runner
There are two ways to delete a runner:
-
By specifying the runner ID.
-
By specifying the runner's authentication token.
Deletes a registered runner.
### Delete a runner by ID
To delete the runner by ID, use your access token with the runner's ID:
```
plaintext
DELETE /runners/:id
```
| Attribute | Type | Required | Description |
|-------------|---------|----------|---------------------|
|
`id`
| integer | yes | The ID of a runner. The ID is visible in the UI under
**Settings > CI/CD**
. Expand
**Runners**
, and below the
**Remove Runner**
button is an ID preceded by the pound sign, for example,
`#6`
. |
```
shell
curl
--request
DELETE
--header
"PRIVATE-TOKEN: <your_access_token>"
"https://gitlab.example.com/api/v4/runners/6"
```
### Delete a runner by authentication token
To delete the runner by using its authentication token:
```
plaintext
```
plaintext
DELETE /runners
DELETE /runners
...
@@ -590,7 +597,7 @@ DELETE /runners
...
@@ -590,7 +597,7 @@ DELETE /runners
| Attribute | Type | Required | Description |
| Attribute | Type | Required | Description |
|-------------|---------|----------|---------------------|
|-------------|---------|----------|---------------------|
|
`token`
| string | yes |
Runner's
[
authentication token
](
#registration-and-authentication-tokens
)
.
|
|
`token`
| string | yes |
The runner's
[
authentication token
](
#registration-and-authentication-tokens
)
.
|
```
shell
```
shell
curl
--request
DELETE
"https://gitlab.example.com/api/v4/runners"
--form
"token=<authentication_token>"
curl
--request
DELETE
"https://gitlab.example.com/api/v4/runners"
--form
"token=<authentication_token>"
...
...
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