ves-io-schema-endpoint-API-Create
On This Page:
Examples of creating endpoint
Usecase:
Create productpage endpoint
Request using vesctl:
vesctl configuration create endpoint -i endpoint.yaml
where file endpoint.yaml has following contents (endpoint.CreateRequest):
metadata:
name: productpage-endpoint
namespace: documentation
spec:
port: 9080
serviceInfo:
discoveryType: K8S
serviceName: productpage
where:
virtualSite:
ref:
- kind: virtual_site
name: acmecorp-vsite
namespace: documentation
tenant: acmecorp
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: productpage-endpoint
namespace: documentation
spec:
port: 9080
serviceInfo:
discoveryType: K8S
serviceName: productpage
where:
virtualSite:
ref:
- kind: virtual_site
name: acmecorp-vsite
namespace: documentation
tenant: acmecorp
uid: ffffffff-ffff-ffff-ffff-ffffffffffff
systemMetadata:
creationTimestamp: "2021-02-22T15:43:48.647172500Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: 68944ec7-ebf6-461a-8ba6-b7063718ccd0
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"productpage-endpoint","namespace":"documentation"},"spec":{"where":{"virtualSite":{"ref":[{"kind":"virtual_site","tenant":"acmecorp","namespace":"documentation","name":"acmecorp-vsite"}]}},"port":9080,"serviceInfo":{"discoveryType":"K8S","serviceName":"productpage"}}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build817539475_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/endpoints'
curl response:
HTTP/1.1 200 OK
Content-Length: 1132
Content-Type: application/json
Date: Mon, 22 Feb 2021 15:43:48 GMT
Vary: Accept-Encoding
{
"metadata": {
"name": "productpage-endpoint",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "68944ec7-ebf6-461a-8ba6-b7063718ccd0",
"creation_timestamp": "2021-02-22T15:43:48.647172500Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"where": {
"virtual_site": {
"ref": [
{
"kind": "virtual_site",
"uid": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"tenant": "acmecorp",
"namespace": "documentation",
"name": "acmecorp-vsite"
}
],
"network_type": "VIRTUAL_NETWORK_SITE_LOCAL"
}
},
"protocol": "",
"port": 9080,
"health_check_port": 0,
"service_info": {
"discovery_type": "K8S",
"service_name": "productpage"
}
}
}