From aa0617fc3b87826660a2fa596ee43bf43b554a75 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Fri, 7 Jul 2023 15:15:19 -0500 Subject: [PATCH] Fixed "Show the app in the terminal" URL The app is listening on port 8080 so that must be included otherwise port 80 (default) is used and the curl request will fail. Issue: 41259 --- .../docs/tutorials/kubernetes-basics/explore/explore-intro.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pt-br/docs/tutorials/kubernetes-basics/explore/explore-intro.html b/content/pt-br/docs/tutorials/kubernetes-basics/explore/explore-intro.html index e6746bfa8d..9e3e00bbb9 100644 --- a/content/pt-br/docs/tutorials/kubernetes-basics/explore/explore-intro.html +++ b/content/pt-br/docs/tutorials/kubernetes-basics/explore/explore-intro.html @@ -267,7 +267,7 @@ description: |- Para ver a saída da aplicação, execute uma requisição com o comando curl:

-

curl http://localhost:8001/api/v1/namespaces/default/pods/$POD_NAME/proxy/

+

curl http://localhost:8001/api/v1/namespaces/default/pods/$POD_NAME:8080/proxy/

A URL é a rota para a API do Pod.