docs: add vin-decoder to pre-launch checklist quick-command snippets
Validate Flux manifests / kustomize-build (pull_request) Failing after 24s

Fix three omissions in the Quick Commands Reference section:
1. Pod-health loop: add vin-decoder to namespace list
2. DNS check loop: add vin subdomain (8th subdomain, not 7)
3. Health smoke-test loop: add vin.leeworks.dev/v1/health

Closes leeworks-agents/api-company#208
This commit is contained in:
AI-Agent
2026-06-05 05:02:07 +00:00
parent 8981122af8
commit e3247de665
+4 -4
View File
@@ -77,7 +77,7 @@ Use this checklist as the final go-live gate — run through every item the day
flux get all flux get all
# Check API pod health # Check API pod health
for ns in zip-enrichment holidays air-quality docs-site; do for ns in zip-enrichment holidays air-quality vin-decoder docs-site; do
echo "=== $ns ===" echo "=== $ns ==="
kubectl get pods -n $ns kubectl get pods -n $ns
done done
@@ -85,13 +85,13 @@ done
# Verify TLS certs # Verify TLS certs
kubectl get certificates -A kubectl get certificates -A
# Check all 7 DNS subdomains # Check all 8 DNS subdomains
for sub in zip holidays aqi docs status registry grafana; do for sub in zip holidays aqi vin docs status registry grafana; do
echo "$sub.leeworks.dev -> $(dig $sub.leeworks.dev +short)" echo "$sub.leeworks.dev -> $(dig $sub.leeworks.dev +short)"
done done
# Smoke test health endpoints # Smoke test health endpoints
for svc in "zip.leeworks.dev/health" "holidays.leeworks.dev/health" "aqi.leeworks.dev/health"; do for svc in "zip.leeworks.dev/health" "holidays.leeworks.dev/health" "aqi.leeworks.dev/health" "vin.leeworks.dev/v1/health"; do
echo "$svc: $(curl -s -o /dev/null -w '%{http_code}' https://$svc)" echo "$svc: $(curl -s -o /dev/null -w '%{http_code}' https://$svc)"
done done