​
Select Service
ves-io-schema-discovery-API-Get
Published April 5, 2023 | Last modified May 30, 2025
Examples of getting discovery
Usecase:
Get k8s-discovery discovery object from system namespace
Request using vesctl:
vesctl configuration get discovery k8s-discovery --namespace system
vesctl yaml response:
deletedReferredObjects: []
disabledReferredObjects: []
metadata:
annotations: {}
labels: {}
name: k8s-discovery
namespace: system
referringObjects: []
resourceVersion: "821"
spec:
discoveryK8s:
accessInfo:
isolated: {}
kubeconfigUrl: {}
publishInfo:
dnsDelegation:
subdomain: internal.bookinfo.com
noClusterId: {}
where:
virtualSite:
disableInternetVip: {}
ref:
- kind: virtual_site
name: acmecorp-vsite
namespace: system
tenant: acmecorp
refs: []
status: []
systemMetadata:
creationTimestamp: "2025-05-30T01:20:04.381241Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
labels: {}
tenant: acmecorp
uid: 211983bc-f41a-4657-bda6-ab6545531896
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build1497866850_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/discoverys/k8s-discovery?response_format=0'
Copied!
curl response:
HTTP/1.1 200 OK
Content-Type: application/json
Date: Fri, 30 May 2025 01:20:04 GMT
Vary: Accept-Encoding
X-Volterra-Response-Fields-Deprecated: create_form.spec.discovery_cbip.cbip_clusters.#.cbip_devices.#.virtual_server_filter.protocols.#,replace_form.spec.discovery_cbip.cbip_clusters.#.cbip_devices.#.virtual_server_filter.protocols.#,spec.discovery_cbip.cbip_clusters.#.cbip_devices.#.virtual_server_filter.protocols.#,status.#.cbip_status.domain
{
"create_form": null,
"replace_form": null,
"resource_version": "821",
"metadata": {
"name": "k8s-discovery",
"namespace": "system",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "211983bc-f41a-4657-bda6-ab6545531896",
"creation_timestamp": "2025-05-30T01:20:04.381241Z",
"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": "",
"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": {
"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": {
}
},
"status": [
],
"referring_objects": [
],
"deleted_referred_objects": [
],
"disabled_referred_objects": [
]
}
Copied!