​
Select Service
ves-io-schema-dns_domain-API-Create
Published April 5, 2023 | Last modified September 25, 2026
Examples of creating dns_domain
Usecase:
Create "example.com" dns_domain
Request using vesctl:
vesctl configuration create dns_domain -i dns_domain.yaml
where file dns_domain.yaml has following contents (dns_domain.CreateRequest):
RequestJSON:
{ "metadata": { "name": "example.com", "namespace": "system" }, "spec": { "volterra_managed": null }}vesctl yaml response:
ResponseJSON:
{ "metadata": { "name": "example.com", "namespace": "system", "labels": {}, "annotations": {}, "description": "", "disable": false }, "system_metadata": { "uid": "192ff733-7591-4c13-831d-789ba80e3ab2", "creation_timestamp": "2026-06-19T22:02:56.089879Z", "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": { "domain": "", "txt_record": "", "dnssec_mode": "DNSSEC_DISABLE" }}Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"example.com","namespace":"system"},"spec":{"volterra_managed":null}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build1655461974_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/dns_domains'curl response:
HTTP/1.1 200 OKContent-Length: 684Content-Type: application/jsonDate: Fri, 19 Jun 2026 22:02:56 GMTVary: Accept-Encoding
{ "metadata": { "name": "example.com", "namespace": "system", "labels": { }, "annotations": { }, "description": "", "disable": false }, "system_metadata": { "uid": "192ff733-7591-4c13-831d-789ba80e3ab2", "creation_timestamp": "2026-06-19T22:02:56.089879Z", "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": { "domain": "", "txt_record": "", "dnssec_mode": "DNSSEC_DISABLE" }}