From eeb9f539d763d82269457543eaeecc1c14dd387e Mon Sep 17 00:00:00 2001 From: Sylvain COULOMBEL Date: Mon, 10 Aug 2020 00:51:03 +0200 Subject: [PATCH] Modify wget comment so that 10.0.170.92 refers to ClusterIP of the service and not the PodIP --- content/en/docs/tutorials/services/source-ip.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/services/source-ip.md b/content/en/docs/tutorials/services/source-ip.md index 3bdf9d492f..2d938f3031 100644 --- a/content/en/docs/tutorials/services/source-ip.md +++ b/content/en/docs/tutorials/services/source-ip.md @@ -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 ``` ```