From 13b70f272b04085a87570d417f51c0d119a952ec Mon Sep 17 00:00:00 2001 From: Kobayashi Daisuke Date: Thu, 31 Mar 2022 11:05:16 +0900 Subject: [PATCH] Update content/ja/docs/concepts/architecture/garbage-collection.md Co-authored-by: nasa9084 --- content/ja/docs/concepts/architecture/garbage-collection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/docs/concepts/architecture/garbage-collection.md b/content/ja/docs/concepts/architecture/garbage-collection.md index 459705b938..0a06d264f5 100644 --- a/content/ja/docs/concepts/architecture/garbage-collection.md +++ b/content/ja/docs/concepts/architecture/garbage-collection.md @@ -28,7 +28,7 @@ Kubernetesは、owner referenceを使用して、コントロールプレーン Ownershipは、一部のリソースでも使用される[ラベルおよびセレクター](/docs/concepts/overview/working-with-objects/labels/)メカニズムとは異なります。 たとえば、`EndpointSlice`オブジェクトを作成する{{}}を考えます。 Serviceは*ラベル*を使用して、コントロールプレーンがServiceに使用されている`EndpointSlice`オブジェクトを判別できるようにします。 -ラベルに加えて、サービスに代わって管理される各`EndpointSlice`には、owner referenceがあります。 +ラベルに加えて、Serviceに代わって管理される各`EndpointSlice`には、owner referenceがあります。 owner referenceは、Kubernetesのさまざまな部分が制御していないオブジェクトへの干渉を回避するのに役立ちます。 {{< note >}}