Replacing a Specified ConfigMap
Function
This API is used to replace a specified ConfigMap resource object.
URI
PUT /api/v1/namespaces/{namespace}/configmaps/{name}
Table 1 describes the parameters of this API.
Request
Request parameters:
For the description about request parameters, see Table 2.
Example request:
{
"kind": "ConfigMap",
"apiVersion": "v1",
"metadata": {
"name": "test-12130306",
"namespace": "ns-12130306-s",
"selfLink": "/api/v1/namespaces/ns-12130306-s/configmaps/test-12130306",
"uid": "efd6d9e0-dfb3-11e7-9c19-fa163e2d897b",
"resourceVersion": "419141",
"creationTimestamp": "2017-12-13T03:15:57Z",
"enable": true
},
"data": {
"property_1": "new1"
}
}
Response
Response parameters:
For the description about response parameters, see the parameter description in Table 2.
Example response:
{
"kind": "ConfigMap",
"apiVersion": "v1",
"metadata": {
"name": "test-12130306",
"namespace": "ns-12130306-s",
"selfLink": "/api/v1/namespaces/ns-12130306-s/configmaps/test-12130306",
"uid": "efd6d9e0-dfb3-11e7-9c19-fa163e2d897b",
"resourceVersion": "419143",
"creationTimestamp": "2017-12-13T03:15:57Z",
"enable": true
},
"data": {
"property_1": "new1"
}
}
Status Code
Table 2 describes the status code of this API.
|
Status Code |
Description |
|---|---|
|
200 |
This operation succeeds, and a ConfigMap resource object is returned. |
For the description about status codes, see section Status Code.
Last Article: Reading a Specified ConfigMap
Next Article: Listing ConfigMaps in a Specified Namespace
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.