From 4ef9bea37ed6141ebc299cfc7d8427388824c7a4 Mon Sep 17 00:00:00 2001 From: Kozzy Hasebe Date: Fri, 26 Apr 2019 01:04:52 +0900 Subject: [PATCH 1/4] Translate content/ja/docs/concepts/overview/working-with-objects/names.md into Japanese --- .../overview/working-with-objects/names.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 content/ja/docs/concepts/overview/working-with-objects/names.md diff --git a/content/ja/docs/concepts/overview/working-with-objects/names.md b/content/ja/docs/concepts/overview/working-with-objects/names.md new file mode 100644 index 0000000000000..b1668de22709b --- /dev/null +++ b/content/ja/docs/concepts/overview/working-with-objects/names.md @@ -0,0 +1,30 @@ +--- +reviewers: +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文字で、かつ英小文字、数字、また`-`、`.`から構成します。しかし、特定のリソースはより具体的な制限があります。 + +## UID + +{{< glossary_definition term_id="uid" length="all" >}} + +{{% /capture %}} From 4f031b80603ffd21a65d0f5965f187d2191af199 Mon Sep 17 00:00:00 2001 From: Kozzy Hasebe Date: Fri, 26 Apr 2019 01:06:34 +0900 Subject: [PATCH 2/4] Translate docs/reference/glossary/name.md into Japanese --- content/ja/docs/reference/glossary/name.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 content/ja/docs/reference/glossary/name.md diff --git a/content/ja/docs/reference/glossary/name.md b/content/ja/docs/reference/glossary/name.md new file mode 100755 index 0000000000000..c9b0bcd5ef421 --- /dev/null +++ b/content/ja/docs/reference/glossary/name.md @@ -0,0 +1,18 @@ +--- +title: 名前(Name) +id: name +date: 2018-04-12 +full_link: /docs/concepts/overview/working-with-objects/names +short_description: > + クライアントから提供され、リソースURL内のオブジェクトを参照する文字列です。例えば`/api/v1/pods/何らかの名前`のようになります。 + +aka: +tags: +- fundamental +--- + クライアントから提供され、リソースURL内のオブジェクトを参照する文字列です。例えば`/api/v1/pods/何らかの名前`のようになります。 + + + +同じ種類のオブジェクトは、同じ名前を同時に持つことは出来ません。しかし、オブジェクトを削除することで、旧オブジェクトと同じ名前で新しいオブジェクトを作成できます。 + From 9023a11a522a2350fe0a3ef1d90a7db64810f31c Mon Sep 17 00:00:00 2001 From: Kozzy Hasebe Date: Fri, 26 Apr 2019 01:07:09 +0900 Subject: [PATCH 3/4] Translate docs/reference/glossary/uid.md into Japanese --- content/ja/docs/reference/glossary/uid.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 content/ja/docs/reference/glossary/uid.md diff --git a/content/ja/docs/reference/glossary/uid.md b/content/ja/docs/reference/glossary/uid.md new file mode 100755 index 0000000000000..550e6fb9889f0 --- /dev/null +++ b/content/ja/docs/reference/glossary/uid.md @@ -0,0 +1,18 @@ +--- +title: UID +id: uid +date: 2018-04-12 +full_link: /docs/concepts/overview/working-with-objects/names +short_description: > + オブジェクトを一意に識別するためのKubernetesが生成する文字列です。 + +aka: +tags: +- fundamental +--- + オブジェクトを一意に識別するためのKubernetesが生成する文字列です。 + + + +Kubernetesクラスターの生存期間中にわたって生成された全てのオブジェクトは、異なるUIDを持っています。これは類似のエンティティの、同一時間軸での存在を区別するのが目的です。 + From a9157b40851a0cca985fb6612a4732fd4f9bfbe1 Mon Sep 17 00:00:00 2001 From: Kozzy Hasebe Date: Wed, 22 May 2019 00:54:12 +0900 Subject: [PATCH 4/4] Apply suggestions to concepts/overview/working-with-objects/names.md from review comments --- content/ja/docs/concepts/overview/working-with-objects/names.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/docs/concepts/overview/working-with-objects/names.md b/content/ja/docs/concepts/overview/working-with-objects/names.md index b1668de22709b..b8762cb33c9b5 100644 --- a/content/ja/docs/concepts/overview/working-with-objects/names.md +++ b/content/ja/docs/concepts/overview/working-with-objects/names.md @@ -9,7 +9,7 @@ weight: 20 KubernetesのREST API内の全てのオブジェクトは、名前とUIDで明確に識別されます。 -一意でないユーザーが付与する属性については、Kubernetesが[ラベル](/docs/user-guide/labels)と[アノテーション](/docs/concepts/overview/working-with-objects/annotations/)を付与します。 +ユーザーが付与する一意ではない属性については、Kubernetesが[ラベル](/docs/user-guide/labels)と[アノテーション](/docs/concepts/overview/working-with-objects/annotations/)を付与します。 名前とUIDに関する正確な構文については、[識別子デザインドキュメント](https://git.k8s.io/community/contributors/design-proposals/architecture/identifiers.md)を参照してください。