Replacing a Specified Endpoint
Function
This API is used to replace an endpoint in a specified namespace.
The following fields can be updated:
- metadata.selfLink
- metadata.resourceVersion
- metadata.labels
- metadata.clusterName
- metadata.generateName
- metadata.annotations
- subnet.*
URI
PUT /api/v1/namespaces/{namespace}/endpoints/{name}
Table 1 describes the parameters of this API.
Request
Request parameters:
For the description about request parameters, see Table 2.
Example request:
{
"kind": "Endpoints",
"apiVersion": "v1",
"metadata": {
"name": "cluster-test"
},
"subsets": [
{
"addresses": [
{
"ip": "172.16.106.150"
}
],
"ports": [
{
"port": 1
}
]
},
{
"addresses": [
{
"ip": "172.16.79.223"
}
],
"ports": [
{
"port": 1
}
]
},{
"addresses": [
{
"ip": "172.16.106.154"
}
],
"ports": [
{
"port": 1
}
]
}
]
}
Response
Response parameters:
For the description about response parameters, see Request.
Example response:
{
"kind": "Endpoints",
"apiVersion": "v1",
"metadata": {
"name": "cluster-test",
"namespace": "default",
"selfLink": "/api/v1/namespaces/default/endpoints/cluster-test",
"uid": "88a7230f-5d36-11e6-aeb9-286ed488fafe",
"resourceVersion": "3203",
"creationTimestamp": "2016-08-08T07:05:48Z"
},
"subsets": [
{
"addresses": [
{
"ip": "172.16.106.150"
},
{
"ip": "172.16.106.154"
},
{
"ip": "172.16.79.223"
}
],
"ports": [
{
"port": 1,
"protocol": "TCP"
}
]
}
]
}
Status Code
Table 2 describes the status code of this API.
|
Status Code |
Description |
|---|---|
|
200 |
This operation succeeds, and a group of Endpoint resource objects is returned. |
For the description about error status codes, see Status Code.
Last Article: Querying a Specified Endpoint
Next Article: Listing Endpoints
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.