Reading a ConfigMap
Function
This API is used to query the details about a specified configMap.
URI
GET /api/v1/namespaces/{namespace}/configmaps/{name}
| Parameter | Description |
|---|---|
| namespace | Object name and auth scope, such as for teams and projects. |
| name | Name of the ConfigMap. |
| Parameter | Mandatory | Description |
|---|---|---|
| pretty | No | If 'true', then the output is pretty printed. |
| exact | No | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. |
| export | No | Should this value be exported. Export strips fields that a user cannot specify. |
Request
N/A
Response
Response parameters
For the description about response parameters, see Table 121.
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 3 describes the status code of this API.
| Status Code | Description |
|---|---|
| 200 | This operation succeeds, and a ConfigMap resource object is returned. |
For more status codes, see Status Codes.
Last Article: Creating a ConfigMap
Next Article: Listing ConfigMaps
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.