Merge pull request 'docs: add vin-decoder to pre-launch checklist quick-command snippets' (#209) from feature/fix-checklist-vin-decoder-snippets into main
Validate Flux manifests / kustomize-build (push) Failing after 13s
Build Docs Site / Aggregate OpenAPI Specs (push) Failing after 50s

This commit was merged in pull request #209.
This commit is contained in:
2026-06-05 05:02:34 +00:00
+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
# 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 ==="
kubectl get pods -n $ns
done
@@ -85,13 +85,13 @@ done
# Verify TLS certs
kubectl get certificates -A
# Check all 7 DNS subdomains
for sub in zip holidays aqi docs status registry grafana; do
# Check all 8 DNS subdomains
for sub in zip holidays aqi vin docs status registry grafana; do
echo "$sub.leeworks.dev -> $(dig $sub.leeworks.dev +short)"
done
# 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)"
done