2016-08-16 04:11:32 -04:00
|
|
|
# Deployments API
|
|
|
|
|
|
|
|
## List project deployments
|
|
|
|
|
|
|
|
Get a list of deployments in a project.
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2016-08-16 04:11:32 -04:00
|
|
|
GET /projects/:id/deployments
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
|-----------|---------|----------|---------------------|
|
2017-04-08 05:21:11 -04:00
|
|
|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
|
2019-11-15 19:06:14 -05:00
|
|
|
| `order_by`| string | no | Return deployments ordered by `id` or `iid` or `created_at` or `updated_at` or `ref` fields. Default is `id` |
|
2018-01-11 11:45:35 -05:00
|
|
|
| `sort` | string | no | Return deployments sorted in `asc` or `desc` order. Default is `asc` |
|
2019-11-27 22:06:32 -05:00
|
|
|
| `updated_after` | datetime | no | Return deployments updated after the specified date |
|
|
|
|
| `updated_before` | datetime | no | Return deployments updated before the specified date |
|
2020-01-17 16:08:29 -05:00
|
|
|
| `environment` | string | no | The name of the environment to filter deployments by |
|
|
|
|
| `status` | string | no | The status to filter deployments by |
|
|
|
|
|
|
|
|
The status attribute can be one of the following values:
|
|
|
|
|
|
|
|
- created
|
|
|
|
- running
|
|
|
|
- success
|
|
|
|
- failed
|
|
|
|
- canceled
|
2016-08-16 04:11:32 -04:00
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2018-12-27 04:03:08 -05:00
|
|
|
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments"
|
2016-08-16 04:11:32 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Example of response
|
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"created_at": "2016-08-11T07:36:40.222Z",
|
2019-10-07 23:05:52 -04:00
|
|
|
"updated_at": "2016-08-11T07:38:12.414Z",
|
2020-03-30 08:07:40 -04:00
|
|
|
"status": "created",
|
2016-08-16 04:11:32 -04:00
|
|
|
"deployable": {
|
|
|
|
"commit": {
|
|
|
|
"author_email": "admin@example.com",
|
|
|
|
"author_name": "Administrator",
|
|
|
|
"created_at": "2016-08-11T09:36:01.000+02:00",
|
|
|
|
"id": "99d03678b90d914dbb1b109132516d71a4a03ea8",
|
|
|
|
"message": "Merge branch 'new-title' into 'master'\r\n\r\nUpdate README\r\n\r\n\r\n\r\nSee merge request !1",
|
|
|
|
"short_id": "99d03678",
|
|
|
|
"title": "Merge branch 'new-title' into 'master'\r"
|
|
|
|
},
|
|
|
|
"coverage": null,
|
|
|
|
"created_at": "2016-08-11T07:36:27.357Z",
|
|
|
|
"finished_at": "2016-08-11T07:36:39.851Z",
|
|
|
|
"id": 657,
|
|
|
|
"name": "deploy",
|
|
|
|
"ref": "master",
|
|
|
|
"runner": null,
|
|
|
|
"stage": "deploy",
|
|
|
|
"started_at": null,
|
|
|
|
"status": "success",
|
|
|
|
"tag": false,
|
|
|
|
"user": {
|
2018-09-25 10:28:57 -04:00
|
|
|
"id": 1,
|
|
|
|
"name": "Administrator",
|
|
|
|
"username": "root",
|
|
|
|
"state": "active",
|
2016-08-16 04:11:32 -04:00
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
2018-09-25 10:28:57 -04:00
|
|
|
"web_url": "http://gitlab.dev/root",
|
|
|
|
"created_at": "2015-12-21T13:14:24.077Z",
|
2016-08-16 04:11:32 -04:00
|
|
|
"bio": null,
|
|
|
|
"location": null,
|
2018-09-25 12:40:24 -04:00
|
|
|
"public_email": "",
|
2016-08-16 04:11:32 -04:00
|
|
|
"skype": "",
|
2018-09-25 10:28:57 -04:00
|
|
|
"linkedin": "",
|
2016-08-16 04:11:32 -04:00
|
|
|
"twitter": "",
|
2018-09-25 10:28:57 -04:00
|
|
|
"website_url": "",
|
|
|
|
"organization": ""
|
2019-11-12 07:06:18 -05:00
|
|
|
},
|
|
|
|
"pipeline": {
|
|
|
|
"created_at": "2016-08-11T02:12:10.222Z",
|
|
|
|
"id": 36,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "99d03678b90d914dbb1b109132516d71a4a03ea8",
|
|
|
|
"status": "success",
|
|
|
|
"updated_at": "2016-08-11T02:12:10.222Z",
|
|
|
|
"web_url": "http://gitlab.dev/root/project/pipelines/12"
|
2016-08-16 04:11:32 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"environment": {
|
|
|
|
"external_url": "https://about.gitlab.com",
|
|
|
|
"id": 9,
|
|
|
|
"name": "production"
|
|
|
|
},
|
|
|
|
"id": 41,
|
|
|
|
"iid": 1,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "99d03678b90d914dbb1b109132516d71a4a03ea8",
|
|
|
|
"user": {
|
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
|
|
|
"id": 1,
|
|
|
|
"name": "Administrator",
|
|
|
|
"state": "active",
|
|
|
|
"username": "root",
|
2016-10-13 07:24:09 -04:00
|
|
|
"web_url": "http://localhost:3000/root"
|
2016-08-16 04:11:32 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"created_at": "2016-08-11T11:32:35.444Z",
|
2019-10-07 23:05:52 -04:00
|
|
|
"updated_at": "2016-08-11T11:34:01.123Z",
|
2020-03-30 08:07:40 -04:00
|
|
|
"status": "created",
|
2016-08-16 04:11:32 -04:00
|
|
|
"deployable": {
|
|
|
|
"commit": {
|
|
|
|
"author_email": "admin@example.com",
|
|
|
|
"author_name": "Administrator",
|
|
|
|
"created_at": "2016-08-11T13:28:26.000+02:00",
|
|
|
|
"id": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"message": "Merge branch 'rename-readme' into 'master'\r\n\r\nRename README\r\n\r\n\r\n\r\nSee merge request !2",
|
|
|
|
"short_id": "a91957a8",
|
|
|
|
"title": "Merge branch 'rename-readme' into 'master'\r"
|
|
|
|
},
|
|
|
|
"coverage": null,
|
|
|
|
"created_at": "2016-08-11T11:32:24.456Z",
|
|
|
|
"finished_at": "2016-08-11T11:32:35.145Z",
|
|
|
|
"id": 664,
|
|
|
|
"name": "deploy",
|
|
|
|
"ref": "master",
|
|
|
|
"runner": null,
|
|
|
|
"stage": "deploy",
|
|
|
|
"started_at": null,
|
|
|
|
"status": "success",
|
|
|
|
"tag": false,
|
|
|
|
"user": {
|
2018-09-25 10:28:57 -04:00
|
|
|
"id": 1,
|
|
|
|
"name": "Administrator",
|
|
|
|
"username": "root",
|
|
|
|
"state": "active",
|
2016-08-16 04:11:32 -04:00
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
2018-09-25 10:28:57 -04:00
|
|
|
"web_url": "http://gitlab.dev/root",
|
|
|
|
"created_at": "2015-12-21T13:14:24.077Z",
|
2016-08-16 04:11:32 -04:00
|
|
|
"bio": null,
|
|
|
|
"location": null,
|
2018-09-25 12:40:24 -04:00
|
|
|
"public_email": "",
|
2016-08-16 04:11:32 -04:00
|
|
|
"skype": "",
|
2018-09-25 10:28:57 -04:00
|
|
|
"linkedin": "",
|
2016-08-16 04:11:32 -04:00
|
|
|
"twitter": "",
|
2018-09-25 10:28:57 -04:00
|
|
|
"website_url": "",
|
|
|
|
"organization": ""
|
2019-11-12 07:06:18 -05:00
|
|
|
},
|
|
|
|
"pipeline": {
|
|
|
|
"created_at": "2016-08-11T07:43:52.143Z",
|
|
|
|
"id": 37,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"status": "success",
|
|
|
|
"updated_at": "2016-08-11T07:43:52.143Z",
|
|
|
|
"web_url": "http://gitlab.dev/root/project/pipelines/13"
|
2016-08-16 04:11:32 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"environment": {
|
|
|
|
"external_url": "https://about.gitlab.com",
|
|
|
|
"id": 9,
|
|
|
|
"name": "production"
|
|
|
|
},
|
|
|
|
"id": 42,
|
|
|
|
"iid": 2,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"user": {
|
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
|
|
|
"id": 1,
|
|
|
|
"name": "Administrator",
|
|
|
|
"state": "active",
|
|
|
|
"username": "root",
|
2016-10-13 07:24:09 -04:00
|
|
|
"web_url": "http://localhost:3000/root"
|
2016-08-16 04:11:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Get a specific deployment
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2016-08-16 04:11:32 -04:00
|
|
|
GET /projects/:id/deployments/:deployment_id
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
|-----------|---------|----------|---------------------|
|
2017-04-08 05:21:11 -04:00
|
|
|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
|
2016-08-18 05:42:37 -04:00
|
|
|
| `deployment_id` | integer | yes | The ID of the deployment |
|
2016-08-16 04:11:32 -04:00
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2018-12-27 04:03:08 -05:00
|
|
|
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/1"
|
2016-08-16 04:11:32 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Example of response
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": 42,
|
|
|
|
"iid": 2,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"created_at": "2016-08-11T11:32:35.444Z",
|
2019-10-07 23:05:52 -04:00
|
|
|
"updated_at": "2016-08-11T11:34:01.123Z",
|
2016-08-16 04:11:32 -04:00
|
|
|
"user": {
|
|
|
|
"name": "Administrator",
|
|
|
|
"username": "root",
|
|
|
|
"id": 1,
|
|
|
|
"state": "active",
|
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
2016-10-13 07:24:09 -04:00
|
|
|
"web_url": "http://localhost:3000/root"
|
2016-08-16 04:11:32 -04:00
|
|
|
},
|
|
|
|
"environment": {
|
|
|
|
"id": 9,
|
|
|
|
"name": "production",
|
|
|
|
"external_url": "https://about.gitlab.com"
|
|
|
|
},
|
|
|
|
"deployable": {
|
|
|
|
"id": 664,
|
|
|
|
"status": "success",
|
|
|
|
"stage": "deploy",
|
|
|
|
"name": "deploy",
|
|
|
|
"ref": "master",
|
|
|
|
"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-09-25 10:28:57 -04:00
|
|
|
"id": 1,
|
2016-08-16 04:11:32 -04:00
|
|
|
"name": "Administrator",
|
|
|
|
"username": "root",
|
|
|
|
"state": "active",
|
|
|
|
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
|
2018-09-25 10:28:57 -04:00
|
|
|
"web_url": "http://gitlab.dev/root",
|
|
|
|
"created_at": "2015-12-21T13:14:24.077Z",
|
2016-08-16 04:11:32 -04:00
|
|
|
"bio": null,
|
|
|
|
"location": null,
|
|
|
|
"skype": "",
|
|
|
|
"linkedin": "",
|
|
|
|
"twitter": "",
|
2018-09-25 10:28:57 -04:00
|
|
|
"website_url": "",
|
|
|
|
"organization": ""
|
2016-08-16 04:11:32 -04:00
|
|
|
},
|
|
|
|
"commit": {
|
|
|
|
"id": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"short_id": "a91957a8",
|
|
|
|
"title": "Merge branch 'rename-readme' into 'master'\r",
|
|
|
|
"author_name": "Administrator",
|
|
|
|
"author_email": "admin@example.com",
|
|
|
|
"created_at": "2016-08-11T13:28:26.000+02:00",
|
|
|
|
"message": "Merge branch 'rename-readme' into 'master'\r\n\r\nRename README\r\n\r\n\r\n\r\nSee merge request !2"
|
|
|
|
},
|
2019-11-12 07:06:18 -05:00
|
|
|
"pipeline": {
|
|
|
|
"created_at": "2016-08-11T07:43:52.143Z",
|
|
|
|
"id": 42,
|
|
|
|
"ref": "master",
|
|
|
|
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
|
|
|
|
"status": "success",
|
|
|
|
"updated_at": "2016-08-11T07:43:52.143Z",
|
|
|
|
"web_url": "http://gitlab.dev/root/project/pipelines/5"
|
|
|
|
}
|
2016-08-16 04:11:32 -04:00
|
|
|
"runner": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2019-10-16 14:08:01 -04:00
|
|
|
|
|
|
|
## Create a deployment
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2019-10-16 14:08:01 -04:00
|
|
|
POST /projects/:id/deployments
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
|------------------|----------------|----------|---------------------|
|
|
|
|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
|
|
|
|
| `environment` | string | yes | The name of the environment 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 | yes | The status of the deployment |
|
|
|
|
|
|
|
|
The status can be one of the following values:
|
|
|
|
|
|
|
|
- created
|
|
|
|
- running
|
|
|
|
- success
|
|
|
|
- failed
|
|
|
|
- canceled
|
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2019-10-16 14:08:01 -04:00
|
|
|
curl --data "environment=production&sha=a91957a858320c0e17f3a0eca7cfacbff50ea29a&ref=master&tag=false&status=success" --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments"
|
|
|
|
```
|
|
|
|
|
|
|
|
Example of a response:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": 42,
|
|
|
|
"iid": 2,
|
|
|
|
"ref": "master",
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Updating a deployment
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2019-10-16 14:08:01 -04:00
|
|
|
PUT /projects/:id/deployments/:deployment_id
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
|------------------|----------------|----------|---------------------|
|
|
|
|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
|
|
|
|
| `deployment_id` | integer | yes | The ID of the deployment to update |
|
|
|
|
| `status` | string | yes | The new status of the deployment |
|
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2019-10-16 14:08:01 -04:00
|
|
|
curl --request PUT --data "status=success" --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/42"
|
|
|
|
```
|
|
|
|
|
|
|
|
Example of a response:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": 42,
|
|
|
|
"iid": 2,
|
|
|
|
"ref": "master",
|
|
|
|
"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-01-13 16:07:39 -05:00
|
|
|
|
|
|
|
## List of merge requests associated with a deployment
|
|
|
|
|
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/35739) in GitLab 12.7.
|
|
|
|
|
|
|
|
This API retrieves the list of merge requests shipped with a given deployment:
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2020-01-13 16:07:39 -05:00
|
|
|
GET /projects/:id/deployments/:deployment_id/merge_requests
|
|
|
|
```
|
|
|
|
|
|
|
|
It supports the same parameters as the [Merge Requests API](./merge_requests.md#list-merge-requests) and will return a response using the same format:
|
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2020-01-13 16:07:39 -05:00
|
|
|
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/deployments/42"
|
|
|
|
```
|