feat(deploy): Dockerfile + Helm chart for k3s homelab deployment

Pattern adapted from arcodange-org/webapp.

Degraded mode : no DB / no SMTP / no Vault yet, just serves the binary +
swagger + healthz. Subsequent PRs will add Vault auth + Postgres dynamic
credentials + SMTP config.

Ingress route : dancecoachlessons.arcodange.lab (homelab internal).
This commit is contained in:
2026-05-06 06:50:46 +02:00
parent 02bafbb0e2
commit 6c23298625
11 changed files with 432 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "dance-lessons-coach.fullname" . }}-config
namespace: {{ .Release.Namespace }}
labels:
{{- include "dance-lessons-coach.labels" . | nindent 4 }}
data:
{{ toYaml .Values.config | indent 2 }}