From 69efa17fcaa617761e54795fd38f0df0f203e317 Mon Sep 17 00:00:00 2001 From: PingWang Date: Fri, 11 Oct 2019 10:28:15 +0800 Subject: [PATCH] zh-trans:/docs/concepts/overview/working-with-objects/names.md Signed-off-by: PingWang update /docs/concepts/overview/working-with-objects/names.md Signed-off-by: PingWang update some description Signed-off-by: PingWang update type Signed-off-by: PingWang --- .../overview/working-with-objects/names.md | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 content/zh/docs/concepts/overview/working-with-objects/names.md diff --git a/content/zh/docs/concepts/overview/working-with-objects/names.md b/content/zh/docs/concepts/overview/working-with-objects/names.md new file mode 100644 index 0000000000000..cff7f34e4a35c --- /dev/null +++ b/content/zh/docs/concepts/overview/working-with-objects/names.md @@ -0,0 +1,67 @@ +--- +title: 名称 +content_template: templates/concept +weight: 20 +--- + +{{% capture overview %}} + + + +Kubernetes REST API 中的所有对象都由名称和 UID 明确标识。 + + + +对于非唯一的用户提供的属性,Kubernetes 提供了[标签](/docs/user-guide/labels)和[注释](/docs/concepts/overview/working-with-objects/annotations/)。 + +有关名称和 UID 的精确语法规则,请参见[标识符设计文档](https://git.k8s.io/community/contributors/design-proposals/architecture/identifiers.md)。 + +{{% /capture %}} + + +{{% capture body %}} + + + +## 名称 + +{{< glossary_definition term_id="name" length="all" >}} + + + +按照惯例,Kubernetes 资源的名称最大长度应为 253 个字符,由小写字母、数字、`-`和 `.` 组成,但某些资源有更具体的限制。 + + + +例如,下面是一个配置文件,Pod 名为 `nginx demo`,容器名为 `nginx`: + +```yaml +apiVersion: v1 +kind: Pod +metadata: + name: nginx-demo +spec: + containers: + - name: nginx + image: nginx:1.7.9 + ports: + - containerPort: 80 +``` + +## UIDs + +{{< glossary_definition term_id="uid" length="all" >}} + +{{% /capture %}}