Updating a Specified ConfigMap
Function
This API is used to update a specified ConfigMap resource object.
URI
PATCH /api/v1/namespaces/{namespace}/configmaps/{name}
Table 1 describes the parameters of this API.
Request
Request parameters:
For the description about the Content-Type message header, see section Patch Request Method Operation Description.
Example request:
Content-Type: application/merge-patch+json
{
"data": {
"property_1": "new"
}
}
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": "419141",
"creationTimestamp": "2017-12-13T03:15:57Z",
"enable": true
},
"data": {
"property_1": "new"
}
}
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 Status Code.
Last Article: Listing All ConfigMaps
Next Article: Secret
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.