ves-io-schema-discovery-API-Get

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: "602"
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: "2024-03-21T14:05:05.288253Z"
  creatorClass: examplesvc
  creatorId: examplesvc
  finalizers: []
  labels: {}
  tenant: acmecorp
  uid: f72cb873-37c4-46be-b473-4dda24a7ca6b

        

Request using curl:

          curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build3109416560_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/discoverys/k8s-discovery?response_format=0'
        

curl response:

          HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 21 Mar 2024 14:05:05 GMT
Vary: Accept-Encoding

{
  "create_form": null,
  "replace_form": null,
  "resource_version": "602",
  "metadata": {
    "name": "k8s-discovery",
    "namespace": "system",
    "labels": {
    },
    "annotations": {
    },
    "description": "",
    "disable": false
  },
  "system_metadata": {
    "uid": "f72cb873-37c4-46be-b473-4dda24a7ca6b",
    "creation_timestamp": "2024-03-21T14:05:05.288253Z",
    "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": [
  ]
}