From aad565f8a2e86767d4c7c1117af3371dfc8d43a1 Mon Sep 17 00:00:00 2001 From: Arnaud Morin Date: Sun, 9 Jan 2022 00:06:19 +0100 Subject: [PATCH] up Signed-off-by: Arnaud Morin --- kubernetes/training/lessons/1-k8s101.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kubernetes/training/lessons/1-k8s101.md b/kubernetes/training/lessons/1-k8s101.md index 8b4c91a..86bd514 100644 --- a/kubernetes/training/lessons/1-k8s101.md +++ b/kubernetes/training/lessons/1-k8s101.md @@ -137,11 +137,11 @@ Q: how many pods do you have? Test your application multiple time: ``` -curl http://141.95.107.55:8080/ +curl http://141.95.107.55:8080/ # change 141.95.107.55 with your ip ... -curl http://141.95.107.55:8080/ +curl http://141.95.107.55:8080/ # change 141.95.107.55 with your ip ... -curl http://141.95.107.55:8080/ +curl http://141.95.107.55:8080/ # change 141.95.107.55 with your ip ``` Q: is the output always the same? Explain why. @@ -189,7 +189,7 @@ kubectl get pods Verify the update using curl ``` -curl http://141.95.107.55:8080/ +curl http://141.95.107.55:8080/ # change 141.95.107.55 with your ip ``` Q: do you see the `v=2`?