Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9bc28c2b46 | |||
| a52bea2552 | |||
| e3247de665 | |||
| 8981122af8 |
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -85,7 +85,25 @@ spec:
|
|||||||
action: replace
|
action: replace
|
||||||
target_label: kubernetes_pod_name
|
target_label: kubernetes_pod_name
|
||||||
alertmanager:
|
alertmanager:
|
||||||
enabled: false # Enable when alert routing is configured
|
enabled: true
|
||||||
|
config:
|
||||||
|
global:
|
||||||
|
slack_api_url_file: /etc/alertmanager/secrets/gatus-slack-webhook/url
|
||||||
|
route:
|
||||||
|
receiver: slack-api-alerts
|
||||||
|
group_by: [alertname, namespace]
|
||||||
|
group_wait: 30s
|
||||||
|
group_interval: 5m
|
||||||
|
repeat_interval: 4h
|
||||||
|
receivers:
|
||||||
|
- name: slack-api-alerts
|
||||||
|
slack_configs:
|
||||||
|
- channel: '#api-alerts'
|
||||||
|
title: '{{ .CommonAnnotations.summary }}'
|
||||||
|
text: '{{ range .Alerts }}{{ .Annotations.description }}{{ end }}'
|
||||||
|
alertmanagerSpec:
|
||||||
|
secrets:
|
||||||
|
- gatus-slack-webhook
|
||||||
kubeStateMetrics:
|
kubeStateMetrics:
|
||||||
enabled: true
|
enabled: true
|
||||||
nodeExporter:
|
nodeExporter:
|
||||||
|
|||||||
Reference in New Issue
Block a user