ves-io-schema-namespace-API-Create
On This Page:
Examples of creating namespace
Usecase:
Create namespace-1
Request using vesctl:
vesctl configuration create namespace -i namespace.yaml
where file namespace.yaml has following contents (namespace.CreateRequest):
metadata:
name: namespace-1
spec: {}
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: namespace-1
spec: {}
systemMetadata:
creationTimestamp: "2021-02-22T15:44:17.558121100Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: cf760d55-79d6-4beb-a3c5-7d3cac55ecf4
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"namespace-1"},"spec":{}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build817539475_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/web/namespaces'
curl response:
HTTP/1.1 200 OK
Content-Length: 583
Content-Type: application/json
Date: Mon, 22 Feb 2021 15:44:17 GMT
Vary: Accept-Encoding
{
"metadata": {
"name": "namespace-1",
"namespace": "",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "cf760d55-79d6-4beb-a3c5-7d3cac55ecf4",
"creation_timestamp": "2021-02-22T15:44:17.558121100Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
}
}