Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/docs/introduction/basics/services/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ ui ClusterIP 172.20.83.84 <none> 80/TCP 15m

View service endpoints (the actual pod IPs):
```bash
$ kubectl get endpoints -n ui ui
$ kubectl get endpointslices -n ui
NAME ENDPOINTS AGE
ui 10.42.1.15:8080 15m
```
Expand Down Expand Up @@ -202,7 +202,7 @@ $ kubectl scale deployment -n ui ui --replicas=3

**Watch how the service endpoints update:**
```bash
$ kubectl get endpoints -n ui ui
$ kubectl get endpointslices -n ui
NAME ENDPOINTS AGE
ui 10.42.117.212:8080,10.42.129.33:8080,10.42.174.4:8080 11m
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ ui ClusterIP 172.20.83.84 <none> 80/TCP 15m

Service のエンドポイント (実際の Pod IP) を表示します:
```bash
$ kubectl get endpoints -n ui ui
$ kubectl get endpointslices -n ui
NAME ENDPOINTS AGE
ui 10.42.1.15:8080 15m
```
Expand Down Expand Up @@ -203,7 +203,7 @@ $ kubectl scale deployment -n ui ui --replicas=3

**Service のエンドポイントがどのように更新されるかを確認します:**
```bash
$ kubectl get endpoints -n ui ui
$ kubectl get endpointslices -n ui
NAME ENDPOINTS AGE
ui 10.42.117.212:8080,10.42.129.33:8080,10.42.174.4:8080 11m
```
Expand Down
Loading