​
Select Service
ves-io-schema-cluster-API-List
Published April 5, 2023 | Last modified November 14, 2025
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: 8be82cc0-1378-485e-a742-815ff0632862
- annotations: {}
labels: {}
name: productpage-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 001d12ce-b04b-4b4b-a3e2-433d58e440d4
- annotations: {}
labels: {}
name: ratings-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 0b388878-a35c-4580-ad15-8dfa0a23d920
- annotations: {}
labels: {}
name: reviews-cluster
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 5bef2998-7e41-48d3-9fad-6e7c8f560d47
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build4194363419_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: Thu, 13 Nov 2025 23:05:53 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "details-cluster",
"uid": "8be82cc0-1378-485e-a742-815ff0632862",
"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": "001d12ce-b04b-4b4b-a3e2-433d58e440d4",
"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": "0b388878-a35c-4580-ad15-8dfa0a23d920",
"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": "5bef2998-7e41-48d3-9fad-6e7c8f560d47",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!