ves-io-schema-dc_cluster_group-API-Create
On This Page:
Examples of creating dc_cluster_group
Usecase:
Create dc-cluster-group-1
Request using vesctl:
vesctl configuration create dc_cluster_group -i dc_cluster_group.yaml
where file dc_cluster_group.yaml has following contents (dc_cluster_group.CreateRequest):
RequestJSON:
{"metadata":{"name":"dc-cluster-group-1","namespace":"system"},"spec":{}}
`
vesctl yaml response:
ResponseJSON:
"metadata": {
"name": "dc-cluster-group-1",
"namespace": "system",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "2a496b79-9829-4507-876e-a0417d28e203",
"creation_timestamp": "2022-07-28T12:09:55.758129783Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null,
"labels": {
}
},
"spec": {
}
}```
`
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"dc-cluster-group-1","namespace":"system"},"spec":{}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build1372770011_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/dc_cluster_groups'
curl response:
HTTP/1.1 200 OK Content-Length: 619 Content-Type: application/json Date: Thu, 28 Jul 2022 12:09:55 GMT Vary: Accept-Encoding
{ "metadata": { "name": "dc-cluster-group-1", "namespace": "system", "labels": { }, "annotations": { }, "description": "", "disable": false }, "system_metadata": { "uid": "2a496b79-9829-4507-876e-a0417d28e203", "creation_timestamp": "2022-07-28T12:09:55.758129783Z", "deletion_timestamp": null, "modification_timestamp": null, "initializers": null, "finalizers": [ ], "tenant": "acmecorp", "creator_class": "examplesvc", "creator_id": "examplesvc", "object_index": 0, "owner_view": null, "labels": { } }, "spec": {
} }