From e8eef188302927717e8d567ebbb44830eb5a1408 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Sun, 9 Nov 2025 00:41:30 -0500 Subject: [PATCH] docs: Fix syntax errors and improve formatting in hello-world example --- examples/hello-world/hello-world.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/hello-world/hello-world.md b/examples/hello-world/hello-world.md index 5806f1b..d16eee0 100644 --- a/examples/hello-world/hello-world.md +++ b/examples/hello-world/hello-world.md @@ -18,10 +18,12 @@ kubectl apply -f hello-world-deployment.yaml # 2. Create the service kubectl apply -f hello-world-service.yaml +``` # 3. Access your app via port-forward **Option 1: Simple (Recommended)** +```bash # Keep terminal open, see connection logs (Ctrl+C to stop) kubectl port-forward service/hello-world-service 8080:8080 ```