feat: add Helm chart for Kubernetes deployment — thanks @another-novelty

* feat: Add basic helm chart

* Delete chart/my-values.yaml
This commit is contained in:
Fabian Sievert
2026-03-29 23:44:20 +02:00
committed by GitHub
parent 8bca921b30
commit 42ebc7c298
11 changed files with 290 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "trek.fullname" . }}-config
labels:
app: {{ include "trek.name" . }}
data:
NODE_ENV: {{ .Values.env.NODE_ENV | quote }}
PORT: {{ .Values.env.PORT | quote }}
{{- if .Values.env.ALLOWED_ORIGINS }}
ALLOWED_ORIGINS: {{ .Values.env.ALLOWED_ORIGINS | quote }}
{{- end }}