Modify wget comment so that 10.0.170.92 refers to ClusterIP of the service and not the PodIP

This commit is contained in:
Sylvain COULOMBEL
2020-08-10 00:51:03 +02:00
parent 8cb1149e9c
commit eeb9f539d7
@@ -150,7 +150,7 @@ ip addr
…then use `wget` to query the local webserver
```shell
# Replace 10.0.170.92 with the Pod's IPv4 address
# Replace "10.0.170.92" with the IPv4 address of the Service named "clusterip"
wget -qO - 10.0.170.92
```
```