1
1
---
2
- reviewers :
3
- - andrewsykim
4
- - johnbelamaric
5
- - imroc
6
- title : Enabling Service Topology
2
+ title : Serviceトポロジーを有効にする
7
3
content_type : task
8
4
---
9
5
10
6
<!-- overview -->
11
- This page provides an overview of enabling Service Topology in Kubernetes.
12
-
7
+ このページでは、Kubernetes上でServiceトロポジーを有効にする方法の概要について説明します。
13
8
14
9
15
10
## {{% heading "prerequisites" %}}
@@ -19,38 +14,32 @@ This page provides an overview of enabling Service Topology in Kubernetes.
19
14
20
15
<!-- steps -->
21
16
22
- ## Introduction
17
+ ## はじめに
23
18
24
- _ Service Topology_ enables a service to route traffic based upon the Node
25
- topology of the cluster. For example, a service can specify that traffic be
26
- preferentially routed to endpoints that are on the same Node as the client, or
27
- in the same availability zone.
19
+ * Serviceトポロジー* は、クラスターのノードのトポロジーに基づいてトラフィックをルーティングできるようにする機能です。たとえば、あるServiceのトラフィックに対して、できるだけ同じノードや同じアベイラビリティゾーン上にあるエンドポイントを優先してルーティングするように指定できます。
28
20
29
- ## Prerequisites
21
+ ## 前提
30
22
31
- The following prerequisites are needed in order to enable topology aware service
32
- routing:
23
+ トポロジーを考慮したServiceのルーティングを有効にするには、以下の前提を満たしている必要があります。
33
24
34
- * Kubernetes 1.17 or later
35
- * {{< glossary_tooltip text="Kube-proxy" term_id="kube-proxy" >}} running in iptables mode or IPVS mode
36
- * Enable [ Endpoint Slices ] ( /docs/concepts/services-networking/endpoint-slices/ )
25
+ * Kubernetesバージョン1.17以降である
26
+ * {{< glossary_tooltip text="Kube-proxy" term_id="kube-proxy" >}}がiptableモードまたはIPVSモードで稼働している
27
+ * [ Endpoint Slice ] ( /docs/concepts/services-networking/endpoint-slices/ ) を有効にしている
37
28
38
- ## Enable Service Topology
29
+ ## Serviceトポロジーを有効にする
39
30
40
31
{{< feature-state for_k8s_version="v1.17" state="alpha" >}}
41
32
42
- To enable service topology, enable the ` ServiceTopology ` and ` EndpointSlice ` feature gate for all Kubernetes components:
33
+ Serviceトポロジーを有効にするには、すべてのKubernetesコンポーネントで ` ServiceTopology ` と ` EndpointSlice ` フィーチャーを有効にする必要があります。
43
34
44
35
```
45
36
--feature-gates="ServiceTopology=true,EndpointSlice=true"
46
37
```
47
38
48
-
49
39
## {{% heading "whatsnext" %}}
50
40
51
-
52
- * Read about the [ Service Topology] ( /docs/concepts/services-networking/service-topology ) concept
53
- * Read about [ Endpoint Slices] ( /docs/concepts/services-networking/endpoint-slices )
54
- * Read [ Connecting Applications with Services] ( /docs/concepts/services-networking/connect-applications-service/ )
41
+ * [ Serviceトポロジー] ( /docs/concepts/services-networking/service-topology ) のコンセプトについて読む
42
+ * [ Endpoint Slice] ( /docs/concepts/services-networking/endpoint-slices ) について読む
43
+ * [ アプリケーションをServiceに接続する] ( /ja/docs/concepts/services-networking/connect-applications-service/ ) を読む
55
44
56
45
0 commit comments