​
Select Service
ves-io-schema-dns_domain-API-Create
Published April 5, 2023 | Last modified September 19, 2025
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
    }
}
Copied!
vesctl yaml response:
ResponseJSON:
{
    "metadata": {
        "name": "example.com",
        "namespace": "system",
        "labels": {},
        "annotations": {},
        "description": "",
        "disable": false
    },
    "system_metadata": {
        "uid": "10063eaa-14c9-4d18-a51f-9364273cef59",
        "creation_timestamp": "2025-09-19T01:59:57.568199Z",
        "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"
    }
}
Copied!
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-build2850427035_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/dns_domains'
Copied!
curl response:
HTTP/1.1 200 OK
Content-Length: 684
Content-Type: application/json
Date: Fri, 19 Sep 2025 01:59:57 GMT
Vary: Accept-Encoding
{
  "metadata": {
    "name": "example.com",
    "namespace": "system",
    "labels": {
    },
    "annotations": {
    },
    "description": "",
    "disable": false
  },
  "system_metadata": {
    "uid": "10063eaa-14c9-4d18-a51f-9364273cef59",
    "creation_timestamp": "2025-09-19T01:59:57.568199Z",
    "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"
  }
}
Copied!