From d68850c708d7f9747d17c6f3ed63a31657724de7 Mon Sep 17 00:00:00 2001 From: Brad Watson Date: Fri, 6 Sep 2024 10:27:59 -0400 Subject: [PATCH] Corrected a typo and added a note for clarity. --- content/networking/ipvs/index.ko.md | 6 ++++-- content/networking/ipvs/index.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/content/networking/ipvs/index.ko.md b/content/networking/ipvs/index.ko.md index 672ba4342..594491b92 100644 --- a/content/networking/ipvs/index.ko.md +++ b/content/networking/ipvs/index.ko.md @@ -115,7 +115,7 @@ kubectl -n kube-system rollout restart ds kube-proxy sudo ipvsadm -L ``` -최소한 쿠버네티스 클러스터 IP 서비스의 항목이 `10.100.0.1`이고 codedns 서비스에 대한 항목이 `10.100.0.10`인 아래와 비슷한 결과를 볼 수 있을 것이다. +최소한 쿠버네티스 API 서버 서비스에 대한 항목이 `10.100.0.1`이고 CoreDNS 서비스에 대한 항목이 `10.100.0.10`인 아래와 비슷한 결과를 볼 수 있을 것이다. ```hl_lines="4 7 10" IP Virtual Server version 1.2.1 (size=4096) Prot LocalAddress:Port Scheduler Flags @@ -129,4 +129,6 @@ TCP ip-10-100-0-10.us-east-1 rr UDP ip-10-100-0-10.us-east-1 rr -> ip-192-168-104-215.us-ea Masq 1 0 0 -> ip-192-168-123-227.us-ea Masq 1 0 0 -``` \ No newline at end of file +``` +!!! note + 이 예제 출력은 서비스 IP 주소 범위가 `10.100.0.0/16`인 EKS 클러스터에서 가져온 것입니다. \ No newline at end of file diff --git a/content/networking/ipvs/index.md b/content/networking/ipvs/index.md index 396f367a8..e3df1d236 100644 --- a/content/networking/ipvs/index.md +++ b/content/networking/ipvs/index.md @@ -115,7 +115,7 @@ You can validate that your cluster and worker nodes are running in IPVS mode by sudo ipvsadm -L ``` -At a minimum, you should see a result similar to the one below, showing entries for the Kubernetes Cluster IP service at `10.100.0.1` and the codedns service at `10.100.0.10`. +At a minimum, you should see a result similar to the one below, showing entries for the Kubernetes API Server service at `10.100.0.1` and the CoreDNS service at `10.100.0.10`. ```hl_lines="4 7 10" IP Virtual Server version 1.2.1 (size=4096) Prot LocalAddress:Port Scheduler Flags @@ -129,4 +129,6 @@ TCP ip-10-100-0-10.us-east-1 rr UDP ip-10-100-0-10.us-east-1 rr -> ip-192-168-104-215.us-ea Masq 1 0 0 -> ip-192-168-123-227.us-ea Masq 1 0 0 -``` \ No newline at end of file +``` +!!! note + This example output comes from an EKS cluster with a service IP address range of `10.100.0.0/16`. \ No newline at end of file