​
Select Service
ves-io-schema-cluster-API-List
Published April 5, 2023 | Last modified March 24, 2026
Examples of listing cluster
Usecase:
List all clusters in current namespace
Request using vesctl:
vesctl configuration list cluster --namespace documentation
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: details-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 648b59b3-cf43-4a63-bf42-366bca20d5bd
- annotations: {}
labels: {}
name: productpage-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 1459392f-b1f8-4dd1-890f-729aada3ed1d
- annotations: {}
labels: {}
name: ratings-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: fe0bbe93-a981-44dd-81fc-40fc24735587
- annotations: {}
labels: {}
name: reviews-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: dcd2763b-c323-4db9-b4b2-3a498368027a
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build4219707653_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/clusters'
Copied!
curl response
HTTP/1.1 200 OK
Content-Type: application/json
Date: Tue, 24 Mar 2026 22:18:52 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "details-cluster",
"uid": "648b59b3-cf43-4a63-bf42-366bca20d5bd",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "productpage-cluster",
"uid": "1459392f-b1f8-4dd1-890f-729aada3ed1d",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "ratings-cluster",
"uid": "fe0bbe93-a981-44dd-81fc-40fc24735587",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "reviews-cluster",
"uid": "dcd2763b-c323-4db9-b4b2-3a498368027a",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!