2020-07-13 17:09:24 -04:00
---
stage: Configure
group: Configure
2020-11-26 01:09:20 -05:00
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-13 17:09:24 -04:00
---
2021-10-27 17:11:33 -04:00
# Project clusters API (certificate-based) (DEPRECATED) **(FREE)**
2019-01-03 17:47:07 -05:00
2021-10-27 17:11:33 -04:00
> - [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/23922) in GitLab 11.7.
> - [Deprecated](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) in GitLab 14.5.
WARNING:
This feature was [deprecated ](https://gitlab.com/groups/gitlab-org/configure/-/epics/8 ) in GitLab 14.5.
2019-01-03 17:47:07 -05:00
2022-01-30 19:14:49 -05:00
Users need at least the Maintainer role to use these endpoints.
2019-01-03 17:47:07 -05:00
## List project clusters
Returns a list of project clusters.
2020-02-27 19:09:08 -05:00
```plaintext
2019-01-03 17:47:07 -05:00
GET /projects/:id/clusters
```
Parameters:
2020-11-18 07:09:16 -05:00
| Attribute | Type | Required | Description |
| --------- | ------- | -------- | ----------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2019-01-03 17:47:07 -05:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-07-09 23:08:53 -04:00
curl --header "Private-Token: < your_access_token > " "https://gitlab.example.com/api/v4/projects/26/clusters"
2019-01-03 17:47:07 -05:00
```
Example response:
```json
[
{
"id":18,
"name":"cluster-1",
2019-04-01 12:29:05 -04:00
"domain":"example.com",
2019-01-03 17:47:07 -05:00
"created_at":"2019-01-02T20:18:12.563Z",
2020-11-18 07:09:16 -05:00
"managed": true,
"enabled": true,
2019-01-03 17:47:07 -05:00
"provider_type":"user",
"platform_type":"kubernetes",
"environment_scope":"*",
"cluster_type":"project_type",
"user":
{
"id":1,
"name":"Administrator",
"username":"root",
"state":"active",
"avatar_url":"https://www.gravatar.com/avatar/4249f4df72b..",
"web_url":"https://gitlab.example.com/root"
},
"platform_kubernetes":
{
"api_url":"https://104.197.68.152",
"namespace":"cluster-1-namespace",
"authorization_type":"rbac",
"ca_cert":"-----BEGIN CERTIFICATE-----\r\nhFiK1L61owwDQYJKoZIhvcNAQELBQAw\r\nLzEtMCsGA1UEAxMkZDA1YzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM4ZDBj\r\nMB4XDTE4MTIyNzIwMDM1MVoXDTIzMTIyNjIxMDM1MVowLzEtMCsGA1UEAxMkZDA1\r\nYzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM.......-----END CERTIFICATE-----"
2019-10-24 08:06:03 -04:00
},
"management_project":
{
"id":2,
"description":null,
"name":"project2",
"name_with_namespace":"John Doe8 / project2",
"path":"project2",
"path_with_namespace":"namespace2/project2",
"created_at":"2019-10-11T02:55:54.138Z"
2019-01-03 17:47:07 -05:00
}
},
{
"id":19,
"name":"cluster-2",
...
}
]
```
## Get a single project cluster
Gets a single project cluster.
2020-01-30 10:09:15 -05:00
```shell
2019-01-03 17:47:07 -05:00
GET /projects/:id/clusters/:cluster_id
```
Parameters:
2020-11-18 07:09:16 -05:00
| Attribute | Type | Required | Description |
| ------------ | ------- | -------- | ----------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2020-11-18 07:09:16 -05:00
| `cluster_id` | integer | yes | The ID of the cluster |
2019-01-03 17:47:07 -05:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-05-27 20:08:37 -04:00
curl --header "Private-Token: < your_access_token > " "https://gitlab.example.com/api/v4/projects/26/clusters/18"
2019-01-03 17:47:07 -05:00
```
Example response:
```json
{
"id":18,
"name":"cluster-1",
2019-04-01 12:29:05 -04:00
"domain":"example.com",
2019-01-03 17:47:07 -05:00
"created_at":"2019-01-02T20:18:12.563Z",
2020-11-18 07:09:16 -05:00
"managed": true,
"enabled": true,
2019-01-03 17:47:07 -05:00
"provider_type":"user",
"platform_type":"kubernetes",
"environment_scope":"*",
"cluster_type":"project_type",
"user":
{
"id":1,
"name":"Administrator",
"username":"root",
"state":"active",
"avatar_url":"https://www.gravatar.com/avatar/4249f4df72b..",
"web_url":"https://gitlab.example.com/root"
},
"platform_kubernetes":
{
"api_url":"https://104.197.68.152",
"namespace":"cluster-1-namespace",
"authorization_type":"rbac",
"ca_cert":"-----BEGIN CERTIFICATE-----\r\nhFiK1L61owwDQYJKoZIhvcNAQELBQAw\r\nLzEtMCsGA1UEAxMkZDA1YzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM4ZDBj\r\nMB4XDTE4MTIyNzIwMDM1MVoXDTIzMTIyNjIxMDM1MVowLzEtMCsGA1UEAxMkZDA1\r\nYzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM.......-----END CERTIFICATE-----"
},
2019-10-24 08:06:03 -04:00
"management_project":
{
"id":2,
"description":null,
"name":"project2",
"name_with_namespace":"John Doe8 / project2",
"path":"project2",
"path_with_namespace":"namespace2/project2",
"created_at":"2019-10-11T02:55:54.138Z"
},
2019-01-03 17:47:07 -05:00
"project":
{
"id":26,
"description":"",
"name":"project-with-clusters-api",
"name_with_namespace":"Administrator / project-with-clusters-api",
"path":"project-with-clusters-api",
"path_with_namespace":"root/project-with-clusters-api",
"created_at":"2019-01-02T20:13:32.600Z",
"default_branch":null,
2021-06-07 14:10:23 -04:00
"tag_list":[], //deprecated, use `topics` instead
"topics":[],
2019-01-03 17:47:07 -05:00
"ssh_url_to_repo":"ssh://gitlab.example.com/root/project-with-clusters-api.git",
"http_url_to_repo":"https://gitlab.example.com/root/project-with-clusters-api.git",
"web_url":"https://gitlab.example.com/root/project-with-clusters-api",
"readme_url":null,
"avatar_url":null,
"star_count":0,
"forks_count":0,
"last_activity_at":"2019-01-02T20:13:32.600Z",
"namespace":
{
"id":1,
"name":"root",
"path":"root",
"kind":"user",
"full_path":"root",
"parent_id":null
}
}
}
```
## Add existing cluster to project
Adds an existing Kubernetes cluster to the project.
2020-01-30 10:09:15 -05:00
```shell
2019-01-03 17:47:07 -05:00
POST /projects/:id/clusters/user
```
Parameters:
2020-11-18 07:09:16 -05:00
| Attribute | Type | Required | Description |
| ---------------------------------------------------- | ------- | -------- | ----------------------------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2020-11-18 07:09:16 -05:00
| `name` | string | yes | The name of the cluster |
2021-06-22 15:11:50 -04:00
| `domain` | string | no | The [base domain ](../user/project/clusters/gitlab_managed_clusters.md#base-domain ) of the cluster |
2020-11-18 07:09:16 -05:00
| `management_project_id` | integer | no | The ID of the [management project ](../user/clusters/management_project.md ) for the cluster |
| `enabled` | boolean | no | Determines if cluster is active or not, defaults to `true` |
2020-11-18 19:09:41 -05:00
| `managed` | boolean | no | Determines if GitLab manages namespaces and service accounts for this cluster. Defaults to `true` |
2020-11-18 07:09:16 -05:00
| `platform_kubernetes_attributes[api_url]` | string | yes | The URL to access the Kubernetes API |
| `platform_kubernetes_attributes[token]` | string | yes | The token to authenticate against Kubernetes |
| `platform_kubernetes_attributes[ca_cert]` | string | no | TLS certificate. Required if API is using a self-signed TLS certificate. |
| `platform_kubernetes_attributes[namespace]` | string | no | The unique namespace related to the project |
| `platform_kubernetes_attributes[authorization_type]` | string | no | The cluster authorization type: `rbac` , `abac` or `unknown_authorization` . Defaults to `rbac` . |
| `environment_scope` | string | no | The associated environment to the cluster. Defaults to `*` ** (PREMIUM)** |
2019-01-03 17:47:07 -05:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-07-09 23:08:53 -04:00
curl --header "Private-Token: < your_access_token > " "https://gitlab.example.com/api/v4/projects/26/clusters/user" \
2019-01-03 17:47:07 -05:00
-H "Accept: application/json" \
-H "Content-Type:application/json" \
-X POST --data '{"name":"cluster-5", "platform_kubernetes_attributes":{"api_url":"https://35.111.51.20","token":"12345","namespace":"cluster-5-namespace","ca_cert":"-----BEGIN CERTIFICATE-----\r\nhFiK1L61owwDQYJKoZIhvcNAQELBQAw\r\nLzEtMCsGA1UEAxMkZDA1YzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM4ZDBj\r\nMB4XDTE4MTIyNzIwMDM1MVoXDTIzMTIyNjIxMDM1MVowLzEtMCsGA1UEAxMkZDA1\r\nYzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM.......-----END CERTIFICATE-----"}}'
```
Example response:
```json
{
"id":24,
"name":"cluster-5",
"created_at":"2019-01-03T21:53:40.610Z",
2020-11-18 07:09:16 -05:00
"managed": true,
"enabled": true,
2019-01-03 17:47:07 -05:00
"provider_type":"user",
"platform_type":"kubernetes",
"environment_scope":"*",
"cluster_type":"project_type",
"user":
{
"id":1,
"name":"Administrator",
"username":"root",
"state":"active",
"avatar_url":"https://www.gravatar.com/avatar/4249f4df72b..",
"web_url":"https://gitlab.example.com/root"
},
"platform_kubernetes":
{
"api_url":"https://35.111.51.20",
"namespace":"cluster-5-namespace",
"authorization_type":"rbac",
"ca_cert":"-----BEGIN CERTIFICATE-----\r\nhFiK1L61owwDQYJKoZIhvcNAQELBQAw\r\nLzEtMCsGA1UEAxMkZDA1YzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM4ZDBj\r\nMB4XDTE4MTIyNzIwMDM1MVoXDTIzMTIyNjIxMDM1MVowLzEtMCsGA1UEAxMkZDA1\r\nYzQ1YjctNzdiMS00NDY0LThjNmEtMTQ0ZDJkZjM.......-----END CERTIFICATE-----"
},
2019-10-24 08:06:03 -04:00
"management_project":null,
2019-01-03 17:47:07 -05:00
"project":
{
"id":26,
"description":"",
"name":"project-with-clusters-api",
"name_with_namespace":"Administrator / project-with-clusters-api",
"path":"project-with-clusters-api",
"path_with_namespace":"root/project-with-clusters-api",
"created_at":"2019-01-02T20:13:32.600Z",
"default_branch":null,
2021-06-07 14:10:23 -04:00
"tag_list":[], //deprecated, use `topics` instead
"topics":[],
2019-01-03 17:47:07 -05:00
"ssh_url_to_repo":"ssh:://gitlab.example.com/root/project-with-clusters-api.git",
"http_url_to_repo":"https://gitlab.example.com/root/project-with-clusters-api.git",
"web_url":"https://gitlab.example.com/root/project-with-clusters-api",
"readme_url":null,
"avatar_url":null,
"star_count":0,
"forks_count":0,
"last_activity_at":"2019-01-02T20:13:32.600Z",
"namespace":
{
"id":1,
"name":"root",
"path":"root",
"kind":"user",
"full_path":"root",
"parent_id":null
}
}
}
```
## Edit project cluster
Updates an existing project cluster.
2020-01-30 10:09:15 -05:00
```shell
2019-01-03 17:47:07 -05:00
PUT /projects/:id/clusters/:cluster_id
```
Parameters:
2020-11-18 07:09:16 -05:00
| Attribute | Type | Required | Description |
| ------------------------------------------- | ------- | -------- | ------------------------------------------------------------------------------------------ |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2020-11-18 07:09:16 -05:00
| `cluster_id` | integer | yes | The ID of the cluster |
| `name` | string | no | The name of the cluster |
2021-06-22 15:11:50 -04:00
| `domain` | string | no | The [base domain ](../user/project/clusters/gitlab_managed_clusters.md#base-domain ) of the cluster |
2020-11-18 07:09:16 -05:00
| `management_project_id` | integer | no | The ID of the [management project ](../user/clusters/management_project.md ) for the cluster |
| `enabled` | boolean | no | Determines if cluster is active or not |
2020-11-18 19:09:41 -05:00
| `managed` | boolean | no | Determines if GitLab manages namespaces and service accounts for this cluster |
2020-11-18 07:09:16 -05:00
| `platform_kubernetes_attributes[api_url]` | string | no | The URL to access the Kubernetes API |
| `platform_kubernetes_attributes[token]` | string | no | The token to authenticate against Kubernetes |
| `platform_kubernetes_attributes[ca_cert]` | string | no | TLS certificate. Required if API is using a self-signed TLS certificate. |
| `platform_kubernetes_attributes[namespace]` | string | no | The unique namespace related to the project |
2021-09-10 05:11:07 -04:00
| `environment_scope` | string | no | The associated environment to the cluster |
2019-01-03 17:47:07 -05:00
2020-12-04 16:09:29 -05:00
NOTE:
2019-01-03 17:47:07 -05:00
`name` , `api_url` , `ca_cert` and `token` can only be updated if the cluster was added
2022-05-05 08:08:03 -04:00
through the ["Add existing Kubernetes cluster" ](../user/project/clusters/add_existing_cluster.md ) option or
2019-01-03 17:47:07 -05:00
through the ["Add existing cluster to project" ](#add-existing-cluster-to-project ) endpoint.
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-07-09 23:08:53 -04:00
curl --header "Private-Token: < your_access_token > " "https://gitlab.example.com/api/v4/projects/26/clusters/24" \
2019-01-03 17:47:07 -05:00
-H "Content-Type:application/json" \
2019-04-01 12:29:05 -04:00
-X PUT --data '{"name":"new-cluster-name","domain":"new-domain.com","api_url":"https://new-api-url.com"}'
2019-01-03 17:47:07 -05:00
```
Example response:
```json
{
"id":24,
"name":"new-cluster-name",
2019-04-01 12:29:05 -04:00
"domain":"new-domain.com",
2019-01-03 17:47:07 -05:00
"created_at":"2019-01-03T21:53:40.610Z",
2020-11-18 07:09:16 -05:00
"managed": true,
"enabled": true,
2019-01-03 17:47:07 -05:00
"provider_type":"user",
"platform_type":"kubernetes",
"environment_scope":"*",
"cluster_type":"project_type",
"user":
{
"id":1,
"name":"Administrator",
"username":"root",
"state":"active",
"avatar_url":"https://www.gravatar.com/avatar/4249f4df72b..",
"web_url":"https://gitlab.example.com/root"
},
"platform_kubernetes":
{
"api_url":"https://new-api-url.com",
"namespace":"cluster-5-namespace",
"authorization_type":"rbac",
"ca_cert":null
},
2019-10-24 08:06:03 -04:00
"management_project":
{
"id":2,
"description":null,
"name":"project2",
"name_with_namespace":"John Doe8 / project2",
"path":"project2",
"path_with_namespace":"namespace2/project2",
"created_at":"2019-10-11T02:55:54.138Z"
},
2019-01-03 17:47:07 -05:00
"project":
{
"id":26,
"description":"",
"name":"project-with-clusters-api",
"name_with_namespace":"Administrator / project-with-clusters-api",
"path":"project-with-clusters-api",
"path_with_namespace":"root/project-with-clusters-api",
"created_at":"2019-01-02T20:13:32.600Z",
"default_branch":null,
2021-06-07 14:10:23 -04:00
"tag_list":[], //deprecated, use `topics` instead
"topics":[],
2019-01-03 17:47:07 -05:00
"ssh_url_to_repo":"ssh:://gitlab.example.com/root/project-with-clusters-api.git",
"http_url_to_repo":"https://gitlab.example.com/root/project-with-clusters-api.git",
"web_url":"https://gitlab.example.com/root/project-with-clusters-api",
"readme_url":null,
"avatar_url":null,
"star_count":0,
"forks_count":0,
"last_activity_at":"2019-01-02T20:13:32.600Z",
"namespace":
{
"id":1,
"name":"root",
"path":"root",
"kind":"user",
"full_path":"root",
"parent_id":null
}
}
}
```
## Delete project cluster
2022-04-27 11:10:01 -04:00
Deletes an existing project cluster. Does not remove existing resources within the connected Kubernetes cluster.
2019-01-03 17:47:07 -05:00
2020-02-27 19:09:08 -05:00
```plaintext
2019-01-03 17:47:07 -05:00
DELETE /projects/:id/clusters/:cluster_id
```
Parameters:
2020-11-18 07:09:16 -05:00
| Attribute | Type | Required | Description |
| ------------ | ------- | -------- | ----------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2020-11-18 07:09:16 -05:00
| `cluster_id` | integer | yes | The ID of the cluster |
2019-01-03 17:47:07 -05:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-07-09 23:08:53 -04:00
curl --request DELETE --header "Private-Token: < your_access_token > " "https://gitlab.example.com/api/v4/projects/26/clusters/23"
2019-01-03 17:47:07 -05:00
```