获取指定的ConfigMap
功能介绍
This API is used to read the specified ConfigMap.
URI
GET /api/v1/namespaces/{namespace}/configmaps/{name}
表1描述该API的参数。
参数 |
是否必选 |
描述 |
---|---|---|
pretty |
No |
If 'true', then the output is pretty printed. |
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
name |
Yes |
Name of the ConfigMap. |
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. |
请求消息
N/A
响应消息
响应参数:
响应参数的详细描述请参见表3。
响应示例:
{ "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" } }
