From a1a3e7e0156458040729b48bd70f5a358e6c390b Mon Sep 17 00:00:00 2001 From: AdamDang Date: Sat, 24 Nov 2018 23:47:13 +0800 Subject: [PATCH] zh-trans: add configmap.md (#11241) * zh-trans: add configmap.md zh-trans: add configmap.md * Update configmap.md --- .../zh/docs/reference/glossary/configmap.md | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 content/zh/docs/reference/glossary/configmap.md diff --git a/content/zh/docs/reference/glossary/configmap.md b/content/zh/docs/reference/glossary/configmap.md new file mode 100644 index 0000000000..61d9371117 --- /dev/null +++ b/content/zh/docs/reference/glossary/configmap.md @@ -0,0 +1,41 @@ +--- +title: ConfigMap +id: configmap +date: 2018-04-12 +full_link: /docs/tasks/configure-pod-container/configure-pod-configmap/ +short_description: > + ConfigMap 是一种 API 对象,用来将非机密性的数据保存到健值对中。使用时可以用作环境变量、命令行参数或者存储卷中的配置文件。 + +aka: +tags: +- core-object +--- + + + + + + ConfigMap 是一种 API 对象,用来将非机密性的数据保存到健值对中。使用时可以用作环境变量、命令行参数或者存储卷中的配置文件。 + + + + + +ConfigMap 将您的环境配置信息和 {{< glossary_tooltip text="容器镜像" term_id="container" >}} 解耦,便于应用配置的修改。当您需要储存机密信息时可以使用 [Secret](https://kubernetes.io/docs/concepts/configuration/secret/) 对象。