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 ```