Translate tasks/administer-cluster/enabling-service-topology into Japanese.

This commit is contained in:
TAKAHASHI Shuuji
2020-08-01 02:03:51 +09:00
parent 0a861fc4fe
commit 1f547cfe17
@@ -1,15 +1,10 @@
--- ---
reviewers: title: Serviceトポロジーを有効にする
- andrewsykim
- johnbelamaric
- imroc
title: Enabling Service Topology
content_type: task content_type: task
--- ---
<!-- overview --> <!-- overview -->
This page provides an overview of enabling Service Topology in Kubernetes. このページでは、Kubernetes上でServiceトロポジーを有効にする方法の概要について説明します。
## {{% heading "prerequisites" %}} ## {{% heading "prerequisites" %}}
@@ -19,38 +14,32 @@ This page provides an overview of enabling Service Topology in Kubernetes.
<!-- steps --> <!-- steps -->
## Introduction ## はじめに
_Service Topology_ enables a service to route traffic based upon the Node *Serviceトポロジー*は、クラスターのノードのトポロジーに基づいてトラフィックをルーティングできるようにする機能です。たとえば、あるServiceのトラフィックに対して、できるだけ同じノードや同じアベイラビリティゾーン上にあるエンドポイントを優先してルーティングするように指定できます。
topology of the cluster. For example, a service can specify that traffic be
preferentially routed to endpoints that are on the same Node as the client, or
in the same availability zone.
## Prerequisites ## 前提
The following prerequisites are needed in order to enable topology aware service トポロジーを考慮したServiceのルーティングを有効にするには、以下の前提を満たしている必要があります。
routing:
* Kubernetes 1.17 or later * Kubernetesバージョン1.17以降である
* {{< glossary_tooltip text="Kube-proxy" term_id="kube-proxy" >}} running in iptables mode or IPVS mode * {{< glossary_tooltip text="Kube-proxy" term_id="kube-proxy" >}}がiptableモードまたはIPVSモードで稼働している
* Enable [Endpoint Slices](/docs/concepts/services-networking/endpoint-slices/) * [Endpoint Slice](/docs/concepts/services-networking/endpoint-slices/)を有効にしている
## Enable Service Topology ## Serviceトポロジーを有効にする
{{< feature-state for_k8s_version="v1.17" state="alpha" >}} {{< feature-state for_k8s_version="v1.17" state="alpha" >}}
To enable service topology, enable the `ServiceTopology` and `EndpointSlice` feature gate for all Kubernetes components: Serviceトポロジーを有効にするには、すべてのKubernetesコンポーネントで`ServiceTopology``EndpointSlice`フィーチャーを有効にする必要があります。
``` ```
--feature-gates="ServiceTopology=true,EndpointSlice=true" --feature-gates="ServiceTopology=true,EndpointSlice=true"
``` ```
## {{% heading "whatsnext" %}} ## {{% heading "whatsnext" %}}
* [Serviceトポロジー](/docs/concepts/services-networking/service-topology)のコンセプトについて読む
* Read about the [Service Topology](/docs/concepts/services-networking/service-topology) concept * [Endpoint Slice](/docs/concepts/services-networking/endpoint-slices)について読む
* Read about [Endpoint Slices](/docs/concepts/services-networking/endpoint-slices) * [アプリケーションをServiceに接続する](/ja/docs/concepts/services-networking/connect-applications-service/)を読む
* Read [Connecting Applications with Services](/docs/concepts/services-networking/connect-applications-service/)