Skip to content

Latest commit

Β 

History

History
44 lines (31 loc) Β· 713 Bytes

File metadata and controls

44 lines (31 loc) Β· 713 Bytes

Complete Start/Stop Workflow

πŸ›‘ Stop Everything

# 1. Stop Tilt (if running)
tilt down

# 2. Stop the k3d cluster
make cluster-down

πŸš€ Start Everything

# 1. Start the k3d cluster with registry
make cluster-up

# 2. Install Knative + Kourier (only needed first time or after cluster-down)
make install-knative

# 3. Start Tilt (deploys hello service automatically)
tilt up

πŸ”„ Restart Just Tilt (cluster stays running)

# Stop Tilt
tilt down

# Start Tilt again  
tilt up

βœ… Verify Everything Works

# Check cluster status
make status

# Test the service (after tilt up)
curl -H "Host: hello.default.127.0.0.1.sslip.io" http://localhost:8080