debian-mirror-gitlab/doc/api/deployments.md

413 lines
15 KiB
Markdown
Raw Normal View History

2020-07-28 23:09:34 +05:30
---
stage: Release
2021-02-22 17:27:13 +05:30
group: Release
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-07-28 23:09:34 +05:30
type: concepts, howto
---
2021-11-11 11:23:49 +05:30
# Deployments API **(FREE)**
2016-09-13 17:45:13 +05:30
## List project deployments
Get a list of deployments in a project.
2020-04-08 14:13:33 +05:30
```plaintext
2016-09-13 17:45:13 +05:30
GET /projects/:id/deployments
```
2020-11-24 15:15:51 +05:30
| Attribute | Type | Required | Description |
|------------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user. |
2021-09-04 01:27:46 +05:30
| `order_by` | string | no | Return deployments ordered by either one of `id`, `iid`, `created_at`, `updated_at` or `ref` fields. Default is `id`. |
| `sort` | string | no | Return deployments sorted in `asc` or `desc` order. Default is `asc`. |
| `updated_after` | datetime | no | Return deployments updated after the specified date. Expected in ISO 8601 format (`2019-03-15T08:00:00Z`). |
| `updated_before` | datetime | no | Return deployments updated before the specified date. Expected in ISO 8601 format (`2019-03-15T08:00:00Z`). |
| `environment` | string | no | The [name of the environment](../ci/environments/index.md) to filter deployments by. |
| `status` | string | no | The status to filter deployments by. One of `created`, `running`, `success`, `failed`, `canceled`.
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments"
2016-09-13 17:45:13 +05:30
```
2021-09-04 01:27:46 +05:30
Example response:
2016-09-13 17:45:13 +05:30
```json
[
{
"created_at": "2016-08-11T07:36:40.222Z",
2019-12-21 20:55:43 +05:30
"updated_at": "2016-08-11T07:38:12.414Z",
2020-04-22 19:07:51 +05:30
"status": "created",
2016-09-13 17:45:13 +05:30
"deployable": {
"commit": {
"author_email": "admin@example.com",
"author_name": "Administrator",
"created_at": "2016-08-11T09:36:01.000+02:00",
"id": "99d03678b90d914dbb1b109132516d71a4a03ea8",
2021-09-04 01:27:46 +05:30
"message": "Merge branch 'new-title' into 'main'\r\n\r\nUpdate README\r\n\r\n\r\n\r\nSee merge request !1",
2016-09-13 17:45:13 +05:30
"short_id": "99d03678",
2021-09-04 01:27:46 +05:30
"title": "Merge branch 'new-title' into 'main'\r"
2016-09-13 17:45:13 +05:30
},
"coverage": null,
"created_at": "2016-08-11T07:36:27.357Z",
"finished_at": "2016-08-11T07:36:39.851Z",
"id": 657,
"name": "deploy",
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"runner": null,
"stage": "deploy",
"started_at": null,
"status": "success",
"tag": false,
"user": {
2018-12-05 23:21:45 +05:30
"id": 1,
"name": "Administrator",
"username": "root",
"state": "active",
2016-09-13 17:45:13 +05:30
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
2018-12-05 23:21:45 +05:30
"web_url": "http://gitlab.dev/root",
"created_at": "2015-12-21T13:14:24.077Z",
2016-09-13 17:45:13 +05:30
"bio": null,
"location": null,
2018-12-05 23:21:45 +05:30
"public_email": "",
2016-09-13 17:45:13 +05:30
"skype": "",
2018-12-05 23:21:45 +05:30
"linkedin": "",
2016-09-13 17:45:13 +05:30
"twitter": "",
2018-12-05 23:21:45 +05:30
"website_url": "",
"organization": ""
2019-12-26 22:10:19 +05:30
},
"pipeline": {
"created_at": "2016-08-11T02:12:10.222Z",
"id": 36,
2021-09-04 01:27:46 +05:30
"ref": "main",
2019-12-26 22:10:19 +05:30
"sha": "99d03678b90d914dbb1b109132516d71a4a03ea8",
"status": "success",
"updated_at": "2016-08-11T02:12:10.222Z",
"web_url": "http://gitlab.dev/root/project/pipelines/12"
2016-09-13 17:45:13 +05:30
}
},
"environment": {
"external_url": "https://about.gitlab.com",
"id": 9,
"name": "production"
},
"id": 41,
"iid": 1,
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"sha": "99d03678b90d914dbb1b109132516d71a4a03ea8",
"user": {
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"id": 1,
"name": "Administrator",
"state": "active",
"username": "root",
2016-11-03 12:29:30 +05:30
"web_url": "http://localhost:3000/root"
2016-09-13 17:45:13 +05:30
}
},
{
"created_at": "2016-08-11T11:32:35.444Z",
2019-12-21 20:55:43 +05:30
"updated_at": "2016-08-11T11:34:01.123Z",
2020-04-22 19:07:51 +05:30
"status": "created",
2016-09-13 17:45:13 +05:30
"deployable": {
"commit": {
"author_email": "admin@example.com",
"author_name": "Administrator",
"created_at": "2016-08-11T13:28:26.000+02:00",
"id": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
2021-09-04 01:27:46 +05:30
"message": "Merge branch 'rename-readme' into 'main'\r\n\r\nRename README\r\n\r\n\r\n\r\nSee merge request !2",
2016-09-13 17:45:13 +05:30
"short_id": "a91957a8",
2021-09-04 01:27:46 +05:30
"title": "Merge branch 'rename-readme' into 'main'\r"
2016-09-13 17:45:13 +05:30
},
"coverage": null,
"created_at": "2016-08-11T11:32:24.456Z",
"finished_at": "2016-08-11T11:32:35.145Z",
"id": 664,
"name": "deploy",
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"runner": null,
"stage": "deploy",
"started_at": null,
"status": "success",
"tag": false,
"user": {
2018-12-05 23:21:45 +05:30
"id": 1,
"name": "Administrator",
"username": "root",
"state": "active",
2016-09-13 17:45:13 +05:30
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
2018-12-05 23:21:45 +05:30
"web_url": "http://gitlab.dev/root",
"created_at": "2015-12-21T13:14:24.077Z",
2016-09-13 17:45:13 +05:30
"bio": null,
"location": null,
2018-12-05 23:21:45 +05:30
"public_email": "",
2016-09-13 17:45:13 +05:30
"skype": "",
2018-12-05 23:21:45 +05:30
"linkedin": "",
2016-09-13 17:45:13 +05:30
"twitter": "",
2018-12-05 23:21:45 +05:30
"website_url": "",
"organization": ""
2019-12-26 22:10:19 +05:30
},
"pipeline": {
"created_at": "2016-08-11T07:43:52.143Z",
"id": 37,
2021-09-04 01:27:46 +05:30
"ref": "main",
2019-12-26 22:10:19 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"status": "success",
"updated_at": "2016-08-11T07:43:52.143Z",
"web_url": "http://gitlab.dev/root/project/pipelines/13"
2016-09-13 17:45:13 +05:30
}
},
"environment": {
"external_url": "https://about.gitlab.com",
"id": 9,
"name": "production"
},
"id": 42,
"iid": 2,
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"user": {
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"id": 1,
"name": "Administrator",
"state": "active",
"username": "root",
2016-11-03 12:29:30 +05:30
"web_url": "http://localhost:3000/root"
2016-09-13 17:45:13 +05:30
}
}
]
```
## Get a specific deployment
2020-04-08 14:13:33 +05:30
```plaintext
2016-09-13 17:45:13 +05:30
GET /projects/:id/deployments/:deployment_id
```
| Attribute | Type | Required | Description |
|-----------|---------|----------|---------------------|
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2016-09-13 17:45:13 +05:30
| `deployment_id` | integer | yes | The ID of the deployment |
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/1"
2016-09-13 17:45:13 +05:30
```
2021-09-04 01:27:46 +05:30
Example response:
2016-09-13 17:45:13 +05:30
```json
{
"id": 42,
"iid": 2,
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"created_at": "2016-08-11T11:32:35.444Z",
2019-12-21 20:55:43 +05:30
"updated_at": "2016-08-11T11:34:01.123Z",
2016-09-13 17:45:13 +05:30
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
2016-11-03 12:29:30 +05:30
"web_url": "http://localhost:3000/root"
2016-09-13 17:45:13 +05:30
},
"environment": {
"id": 9,
"name": "production",
"external_url": "https://about.gitlab.com"
},
"deployable": {
"id": 664,
"status": "success",
"stage": "deploy",
"name": "deploy",
2021-09-04 01:27:46 +05:30
"ref": "main",
2016-09-13 17:45:13 +05:30
"tag": false,
"coverage": null,
"created_at": "2016-08-11T11:32:24.456Z",
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"user": {
2018-12-05 23:21:45 +05:30
"id": 1,
2016-09-13 17:45:13 +05:30
"name": "Administrator",
"username": "root",
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
2018-12-05 23:21:45 +05:30
"web_url": "http://gitlab.dev/root",
"created_at": "2015-12-21T13:14:24.077Z",
2016-09-13 17:45:13 +05:30
"bio": null,
"location": null,
"skype": "",
"linkedin": "",
"twitter": "",
2018-12-05 23:21:45 +05:30
"website_url": "",
"organization": ""
2016-09-13 17:45:13 +05:30
},
"commit": {
"id": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"short_id": "a91957a8",
2021-09-04 01:27:46 +05:30
"title": "Merge branch 'rename-readme' into 'main'\r",
2016-09-13 17:45:13 +05:30
"author_name": "Administrator",
"author_email": "admin@example.com",
"created_at": "2016-08-11T13:28:26.000+02:00",
2021-09-04 01:27:46 +05:30
"message": "Merge branch 'rename-readme' into 'main'\r\n\r\nRename README\r\n\r\n\r\n\r\nSee merge request !2"
2016-09-13 17:45:13 +05:30
},
2019-12-26 22:10:19 +05:30
"pipeline": {
"created_at": "2016-08-11T07:43:52.143Z",
"id": 42,
2021-09-04 01:27:46 +05:30
"ref": "main",
2019-12-26 22:10:19 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"status": "success",
"updated_at": "2016-08-11T07:43:52.143Z",
"web_url": "http://gitlab.dev/root/project/pipelines/5"
2021-06-08 01:23:25 +05:30
},
2016-09-13 17:45:13 +05:30
"runner": null
}
}
```
2019-12-21 20:55:43 +05:30
## Create a deployment
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
POST /projects/:id/deployments
```
2020-11-24 15:15:51 +05:30
| Attribute | Type | Required | Description |
|---------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user.|
2021-09-04 01:27:46 +05:30
| `environment` | string | yes | The [name of the environment](../ci/environments/index.md) to create the deployment for. |
| `sha` | string | yes | The SHA of the commit that is deployed. |
| `ref` | string | yes | The name of the branch or tag that is deployed. |
| `tag` | boolean | yes | A boolean that indicates if the deployed ref is a tag (`true`) or not (`false`). |
| `status` | string | no | The status to filter deployments by. One of `created`, `running`, `success`, `failed`, or `canceled`. |
2019-12-21 20:55:43 +05:30
2020-03-13 15:44:24 +05:30
```shell
2021-09-04 01:27:46 +05:30
curl --data "environment=production&sha=a91957a858320c0e17f3a0eca7cfacbff50ea29a&ref=main&tag=false&status=success" \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments"
2019-12-21 20:55:43 +05:30
```
2021-09-04 01:27:46 +05:30
Example response:
2019-12-21 20:55:43 +05:30
```json
{
"id": 42,
"iid": 2,
2021-09-04 01:27:46 +05:30
"ref": "main",
2019-12-21 20:55:43 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"created_at": "2016-08-11T11:32:35.444Z",
"status": "success",
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"environment": {
"id": 9,
"name": "production",
"external_url": "https://about.gitlab.com"
},
"deployable": null
}
```
2021-09-04 01:27:46 +05:30
## Update a deployment
2019-12-21 20:55:43 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
PUT /projects/:id/deployments/:deployment_id
```
| Attribute | Type | Required | Description |
|------------------|----------------|----------|---------------------|
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user. |
2021-09-04 01:27:46 +05:30
| `deployment_id` | integer | yes | The ID of the deployment to update. |
| `status` | string | no | The new status of the deployment. One of `created`, `running`, `success`, `failed`, or `canceled`. |
2019-12-21 20:55:43 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-21 20:55:43 +05:30
curl --request PUT --data "status=success" --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/42"
```
2021-09-04 01:27:46 +05:30
Example response:
2019-12-21 20:55:43 +05:30
```json
{
"id": 42,
"iid": 2,
2021-09-04 01:27:46 +05:30
"ref": "main",
2019-12-21 20:55:43 +05:30
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"created_at": "2016-08-11T11:32:35.444Z",
"status": "success",
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"environment": {
"id": 9,
"name": "production",
"external_url": "https://about.gitlab.com"
},
"deployable": null
}
```
2020-03-13 15:44:24 +05:30
## List of merge requests associated with a deployment
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/35739) in GitLab 12.7.
2020-03-13 15:44:24 +05:30
2021-12-11 22:18:48 +05:30
NOTE:
Not all deployments can be associated with merge requests.
Please see
[Track what merge requests were deployed to an environment](../ci/environments/index.md#track-newly-included-merge-requests-per-deployment)
for more information.
2020-03-13 15:44:24 +05:30
This API retrieves the list of merge requests shipped with a given deployment:
2020-04-08 14:13:33 +05:30
```plaintext
2020-03-13 15:44:24 +05:30
GET /projects/:id/deployments/:deployment_id/merge_requests
```
2021-03-08 18:12:59 +05:30
It supports the same parameters as the [Merge Requests API](merge_requests.md#list-merge-requests) and returns a response using the same format:
2020-03-13 15:44:24 +05:30
```shell
2021-09-04 01:27:46 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/42/merge_requests"
2020-03-13 15:44:24 +05:30
```
2022-03-02 08:16:31 +05:30
## Approve or reject a blocked deployment **(PREMIUM)**
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/343864) in GitLab 14.7 [with a flag](../administration/feature_flags.md) named `deployment_approvals`. Disabled by default. This feature is not ready for production use.
```plaintext
POST /projects/:id/deployments/:deployment_id/approval
```
| Attribute | Type | Required | Description |
|-----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user. |
| `deployment_id` | integer | yes | The ID of the deployment. |
| `status` | string | yes | The status of the approval (either `approved` or `rejected`). |
```shell
curl --data "status=approved" \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/1/approval"
```
Example response:
```json
{
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"status": "approved"
}
```