docs: Fix syntax errors and improve formatting in hello-world example

This commit is contained in:
mik-tf
2025-11-09 00:41:30 -05:00
parent 05984041ac
commit e8eef18830

View File

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