From 9149df3a706c401a63984bfb15d72d1ee9e08e68 Mon Sep 17 00:00:00 2001 From: Kieren Evans Date: Thu, 23 Oct 2025 11:55:05 +0300 Subject: [PATCH 1/2] Update instructions for accessing frontend pod --- accessing-your-application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accessing-your-application.md b/accessing-your-application.md index 89ba1f0..81793c3 100644 --- a/accessing-your-application.md +++ b/accessing-your-application.md @@ -194,7 +194,7 @@ You should see something like this: (If you don't, you might need to refresh the page.) -- Exec into the frontend pod with the command `kubectl exec -it frontend -- /bin/sh`. +- In a new terminal (in vscode you can click the "+" button on the right side of the current terminal), exec into the frontend pod with the command `kubectl exec -it frontend -- /bin/sh`. - Execute a curl command to the backend `curl http://:5000`. From 782b0a422e599b9f269f5d481d4b63a13e51bd7f Mon Sep 17 00:00:00 2001 From: Kieren Evans Date: Thu, 23 Oct 2025 11:55:54 +0300 Subject: [PATCH 2/2] Fix linting error --- accessing-your-application.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accessing-your-application.md b/accessing-your-application.md index 81793c3..62f1280 100644 --- a/accessing-your-application.md +++ b/accessing-your-application.md @@ -194,7 +194,8 @@ You should see something like this: (If you don't, you might need to refresh the page.) -- In a new terminal (in vscode you can click the "+" button on the right side of the current terminal), exec into the frontend pod with the command `kubectl exec -it frontend -- /bin/sh`. +- In a new terminal (in vscode you can click the "+" button on the right side of the current terminal), + exec into the frontend pod with the command `kubectl exec -it frontend -- /bin/sh`. - Execute a curl command to the backend `curl http://:5000`.