File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
content/ja/docs/tasks/administer-cluster Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Serviceトポロジーを有効にする
3
+ content_type : task
4
+ ---
5
+
6
+ <!-- overview -->
7
+ このページでは、Kubernetes上でServiceトポロジーを有効にする方法の概要について説明します。
8
+
9
+
10
+ ## {{% heading "prerequisites" %}}
11
+
12
+ {{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
13
+
14
+
15
+ <!-- steps -->
16
+
17
+ ## はじめに
18
+
19
+ * Serviceトポロジー* は、クラスターのノードのトポロジーに基づいてトラフィックをルーティングできるようにする機能です。たとえば、あるServiceのトラフィックに対して、できるだけ同じノードや同じアベイラビリティゾーン上にあるエンドポイントを優先してルーティングするように指定できます。
20
+
21
+ ## 前提
22
+
23
+ トポロジーを考慮したServiceのルーティングを有効にするには、以下の前提を満たしている必要があります。
24
+
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/ ) を有効にしている
28
+
29
+ ## Serviceトポロジーを有効にする
30
+
31
+ {{< feature-state for_k8s_version="v1.17" state="alpha" >}}
32
+
33
+ Serviceトポロジーを有効にするには、すべてのKubernetesコンポーネントで` ServiceTopology ` と` EndpointSlice ` フィーチャーゲートを有効にする必要があります。
34
+
35
+ ```
36
+ --feature-gates="ServiceTopology=true,EndpointSlice=true"
37
+ ```
38
+
39
+ ## {{% heading "whatsnext" %}}
40
+
41
+ * [ Serviceトポロジー] ( /ja/docs/concepts/services-networking/service-topology ) のコンセプトについて読む
42
+ * [ Endpoint Slice] ( /docs/concepts/services-networking/endpoint-slices ) について読む
43
+ * [ サービスとアプリケーションの接続] ( /ja/docs/concepts/services-networking/connect-applications-service/ ) を読む
44
+
You can’t perform that action at this time.
0 commit comments