Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 321d3e6bf4 | |||
| 14c051fe8f | |||
| 7cb427f4ea | |||
| c3ee09b52c | |||
| e3aa6b5fa1 | |||
| 9bc28c2b46 | |||
| a52bea2552 |
@@ -32,6 +32,7 @@ Per-API: implement Fastify/FastAPI service matching `openapi.yaml` exactly. Rapi
|
|||||||
- [ ] Verify VIN Decoder metrics endpoint and ServiceMonitor scrape config — issue #174
|
- [ ] Verify VIN Decoder metrics endpoint and ServiceMonitor scrape config — issue #174
|
||||||
- [x] VIN Decoder metrics instrumentation + Grafana dashboard (issue #129 — closed ✅)
|
- [x] VIN Decoder metrics instrumentation + Grafana dashboard (issue #129 — closed ✅)
|
||||||
- [x] VIN Decoder Gatus health check (issue #134 — closed ✅)
|
- [x] VIN Decoder Gatus health check (issue #134 — closed ✅)
|
||||||
|
- [x] Enable Alertmanager in kube-prometheus-stack + configure Slack receiver for SLO alerts (issue #210 — closed ✅)
|
||||||
|
|
||||||
## Phase 5 — Documentation site
|
## Phase 5 — Documentation site
|
||||||
- [x] `docs-site/` Astro + Redoc skeleton (issue #28 — closed ✅)
|
- [x] `docs-site/` Astro + Redoc skeleton (issue #28 — closed ✅)
|
||||||
|
|||||||
@@ -22,8 +22,31 @@ Legend: [x]=done, [~]=in-progress, [ ]=not started
|
|||||||
- **API service manifests:** `flux/zip-enrichment/`, `flux/holidays/`, `flux/air-quality/` scaffolded (PR #48, closes #46)
|
- **API service manifests:** `flux/zip-enrichment/`, `flux/holidays/`, `flux/air-quality/` scaffolded (PR #48, closes #46)
|
||||||
- **Image automation:** `flux/image-automation/` — ImageRepository + ImagePolicy + ImageUpdateAutomation for all three APIs
|
- **Image automation:** `flux/image-automation/` — ImageRepository + ImagePolicy + ImageUpdateAutomation for all three APIs
|
||||||
- **VIN Decoder manifests:** `flux/vin-decoder/` — Flux HelmRelease + Kustomization committed (issue #140)
|
- **VIN Decoder manifests:** `flux/vin-decoder/` — Flux HelmRelease + Kustomization committed (issue #140)
|
||||||
|
- **Alertmanager:** `flux/monitoring/helmrelease.yaml` — enabled with Slack receiver config (`gatus-slack-webhook` secret); PR #212 open (issue #210)
|
||||||
|
|
||||||
## Completed This Cycle (2026-06-05 — Sprint Planning Cycle #206)
|
## Completed This Cycle (2026-06-05 — Sprint Planning Cycle #215)
|
||||||
|
|
||||||
|
- **#215** — STATUS.md updated for 2026-06-05 sprint planning cycle (this entry). Last-updated date confirmed 2026-06-05.
|
||||||
|
- **1 new issue created:** #214 (ROADMAP.md Phase 4 Alertmanager annotation — documentation gap filed).
|
||||||
|
- **0 issues closed** — no stale issues; oldest open issue is #2 from 2026-05-18 (18 days < 30-day threshold).
|
||||||
|
- **0 label/priority changes** — all existing labels confirmed correct.
|
||||||
|
- **ROADMAP cross-reference:** all unchecked items confirmed grounded in open issues; 1 new documentation gap found and filed (#214 — Alertmanager / Slack receiver missing from ROADMAP.md Phase 4).
|
||||||
|
- **Critical path unchanged:** Operator must (1) create `0xWheatyz/api-company` (#47), (2) merge upstream Talos PR #14 (#187) to activate Flux, (3) configure DNS (#33, #106, #150).
|
||||||
|
- **`kustomize build flux/` = PASS** — no regressions.
|
||||||
|
- **0 open PRs** — nothing to review or merge.
|
||||||
|
|
||||||
|
## Completed Previous Cycle (2026-06-05 — Sprint Planning Cycle #211)
|
||||||
|
|
||||||
|
- **#211** — STATUS.md updated for 2026-06-05 sprint planning cycle (this entry). Last-updated date confirmed 2026-06-05.
|
||||||
|
- **1 new issue implemented:** #210 (Enable Alertmanager + Slack receiver — gap identified by roadmap cross-reference); PR #212 opened to `leeworks-agents/api-company` with `kustomize build flux/` = PASS.
|
||||||
|
- **0 issues closed** — oldest open issue is #2 from 2026-05-18 (18 days old — under 30-day stale threshold).
|
||||||
|
- **0 label changes** — all priority/complexity labels confirmed correct.
|
||||||
|
- **ROADMAP cross-reference:** 18 unchecked items confirmed grounded in open issues; 1 new gap found and filed (#210 — Alertmanager was missing from roadmap coverage).
|
||||||
|
- **Current Blockers unchanged:** Operator must (1) create `0xWheatyz/api-company` (#47), (2) merge upstream Talos PR #14 (#187) to activate Flux, (3) configure DNS (#33, #106, #150).
|
||||||
|
- **`kustomize build flux/` = PASS** — no regressions.
|
||||||
|
- **1 open PR** — PR #212 (Alertmanager enable + Slack receiver): `kustomize build flux/` PASS; pending merge.
|
||||||
|
|
||||||
|
## Completed Previous Cycle (2026-06-05 — Sprint Planning Cycle #206)
|
||||||
|
|
||||||
- **#206** — STATUS.md updated for 2026-06-05 sprint planning cycle (this entry). Last-updated date set to 2026-06-05.
|
- **#206** — STATUS.md updated for 2026-06-05 sprint planning cycle (this entry). Last-updated date set to 2026-06-05.
|
||||||
- **Completed outcomes from 2026-06-04 sprint planning cycle recorded:**
|
- **Completed outcomes from 2026-06-04 sprint planning cycle recorded:**
|
||||||
|
|||||||
@@ -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