Add Helm chart for Kubernetes deployment#7
Conversation
|
Hello, have you tried to run on kubernetes? |
|
Hi, just locally on a kind cluster. The web has started however I'd like to make some additional tests since I've found problem with alerting in current realization just after creating of PR. Let's keep it as draft for a while because I need couple of days to return to it. I'll notify you additionaly. |
… and migration caveats in the Helm chart.
e42eb72 to
9bdaf2b
Compare
|
Retested the chart locally on kind after rebasing the branch on latest
During the manual UI check I found a separate frontend asset-path issue: the app was loading the alerts summary grid component from the wrong static path, so |
|
It means PR is ready? |
|
Yep! |
What
Helm chart at
helm/incidentrelay: three deployments (web,scheduler,telegram) from the single image switched byINCIDENTRELAY_SERVICE, Service + optional Ingress,/healthz//readyzprobes with a startup probe covering entrypoint migrations, config rendered from values into a Secret (existingConfigSecretsupported), SQLite on a PVC or external PostgreSQL. Deployments default to theRecreateupdate strategy to protect the shared SQLite volume during rollouts. README gets a "Kubernetes (Helm)" install section.Known caveats are documented in values/NOTES/README: no public image is published yet (
image.repositorymust point at your own build), SQLite is single-node only, and migrations run on web pod start soweb.replicaCountshould stay at 1 unless migrations are moved out of band.Tests
No backend code is touched, so no tests are added: the change is deployment tooling only. Validated with
helm lint/helm templateacross value combinations and on a live kind cluster: all three workloads become Ready, probes pass, an alert sent through a real Alertmanager webhook receiver was ingested via a route intake token and acknowledged/resolved, and the SQLite database survives pod recreation on the PVC.