Skip to content

Commit

Permalink
Merge pull request #578 from bradwatsonaws/ipvs
Browse files Browse the repository at this point in the history
Corrected a typo and added a note for clarity.
  • Loading branch information
svennam92 authored Sep 6, 2024
2 parents a64151e + d68850c commit bc7f86b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions content/networking/ipvs/index.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
```
!!! note
이 예제 출력은 서비스 IP 주소 범위가 `10.100.0.0/16`인 EKS 클러스터에서 가져온 것입니다.
6 changes: 4 additions & 2 deletions content/networking/ipvs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
```
!!! note
This example output comes from an EKS cluster with a service IP address range of `10.100.0.0/16`.

0 comments on commit bc7f86b

Please sign in to comment.