​
Select Service
ves-io-schema-endpoint-API-Replace
Published April 5, 2023 | Last modified June 17, 2026
Examples of replacing endpoint
Usecase:
Replace productpage-endpoint to modify port number 10080
Request using vesctl:
vesctl configuration replace endpoint -i endpoint.yaml
where file endpoint.yaml has following contents (endpoint.ReplaceRequest):
RequestJSON:
{ "metadata": { "name": "productpage-endpoint", "namespace": "documentation" }, "spec": { "where": { "virtual_site": { "ref": [ { "kind": "virtual_site", "tenant": "acmecorp", "namespace": "documentation", "name": "acmecorp-vsite" } ] } }, "protocol": "TCP", "port": 10080, "service_info": { "discovery_type": "K8S", "service_name": "productpage" } }}vesctl yaml response: None
Request using curl:
curl -X 'PUT' -d '{"metadata":{"name":"productpage-endpoint","namespace":"documentation"},"spec":{"where":{"virtual_site":{"ref":[{"kind":"virtual_site","tenant":"acmecorp","namespace":"documentation","name":"acmecorp-vsite"}]}},"protocol":"TCP","port":10080,"service_info":{"discovery_type":"K8S","service_name":"productpage"}}}' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build1414723615_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/endpoints/productpage-endpoint'curl response:
HTTP/1.1 200 OKContent-Length: 4Content-Type: application/jsonDate: Mon, 13 Apr 2026 01:59:28 GMTVary: Accept-Encoding
{
}