​
Select Service
ves-io-schema-discovery-API-Create
Published April 5, 2023 | Last modified June 22, 2026
Examples of creating discovery
Usecase:
Create discovery object that will discover services from external kubernetes cluster. Any VIP(s) that are advertised on sites selected by virtual site acmecorp-vsite can be discovered by subdomian internal.bookinfo.com
Request using vesctl:
vesctl configuration create discovery -i discovery.yaml
where file discovery.yaml has following contents (discovery.CreateRequest):
RequestJSON:
{ "metadata": { "name": "k8s-discovery", "namespace": "system" }, "spec": { "where": { "virtual_site": { "ref": [ { "kind": "virtual_site", "tenant": "acmecorp", "namespace": "system", "name": "acmecorp-vsite" } ] } }, "discovery_k8s": { "access_info": { "kubeconfig_url": { "clear_secret_info": { "url": "string://\u003cbase64\u003e" } }, "isolated": {} }, "publish_info": { "dns_delegation": { "subdomain": "internal.bookinfo.com" } } } }}vesctl yaml response:
ResponseJSON:
{ "metadata": { "name": "k8s-discovery", "namespace": "system", "labels": {}, "annotations": {}, "description": "", "disable": false }, "system_metadata": { "uid": "60ac97c8-02fc-4100-85e0-3e56cc4863f1", "creation_timestamp": "2026-06-19T22:02:53.846176Z", "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": { "where": { "virtual_site": { "ref": [ { "kind": "virtual_site", "uid": "ffffffff-ffff-ffff-ffff-ffffffffffff", "tenant": "acmecorp", "namespace": "system", "name": "acmecorp-vsite" } ], "network_type": "VIRTUAL_NETWORK_SITE_LOCAL", "disable_internet_vip": {}, "refs": [] } }, "type": "INVALID_DISCOVERY", "publish_vip": null, "discovery_k8s": { "access_info": { "kubeconfig_url": { "clear_secret_info": { "provider": "", "url": "string://\u003cbase64\u003e" }, "blindfold_secret_info_internal": null, "secret_encoding_type": "EncodingNone" }, "isolated": {} }, "publish_info": { "dns_delegation": { "subdomain": "internal.bookinfo.com", "dns_mode": "CORE_DNS" } } }, "no_cluster_id": {} }}Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"k8s-discovery","namespace":"system"},"spec":{"where":{"virtual_site":{"ref":[{"kind":"virtual_site","tenant":"acmecorp","namespace":"system","name":"acmecorp-vsite"}]}},"discovery_k8s":{"access_info":{"kubeconfig_url":{"clear_secret_info":{"url":"string://\u003cbase64\u003e"}},"isolated":{}},"publish_info":{"dns_delegation":{"subdomain":"internal.bookinfo.com"}}}}}' -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/discoverys'curl response:
HTTP/1.1 200 OKContent-Type: application/jsonDate: Fri, 19 Jun 2026 22:02:53 GMTVary: Accept-EncodingX-Volterra-Response-Fields-Deprecated: spec.discovery_cbip.cbip_clusters.#.cbip_devices.#,spec.discovery_cbip.cbip_clusters.#.virtual_server_filter.protocols.#,spec.discovery_cbip.internal_lb_domain,spec.discovery_consul.namespace_mapping
{ "metadata": { "name": "k8s-discovery", "namespace": "system", "labels": { }, "annotations": { }, "description": "", "disable": false }, "system_metadata": { "uid": "60ac97c8-02fc-4100-85e0-3e56cc4863f1", "creation_timestamp": "2026-06-19T22:02:53.846176Z", "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": { "where": { "virtual_site": { "ref": [ { "kind": "virtual_site", "uid": "ffffffff-ffff-ffff-ffff-ffffffffffff", "tenant": "acmecorp", "namespace": "system", "name": "acmecorp-vsite" } ], "network_type": "VIRTUAL_NETWORK_SITE_LOCAL", "disable_internet_vip": {
}, "refs": [ ] } }, "type": "INVALID_DISCOVERY", "publish_vip": null, "discovery_k8s": { "access_info": { "kubeconfig_url": { "clear_secret_info": { "provider": "", "url": "string://\u003cbase64\u003e" }, "blindfold_secret_info_internal": null, "secret_encoding_type": "EncodingNone" }, "isolated": {
} }, "publish_info": { "dns_delegation": { "subdomain": "internal.bookinfo.com", "dns_mode": "CORE_DNS" } } }, "no_cluster_id": {
} }}