feat: update Helm chart for FastAPI authentication with dashboard password support

This commit is contained in:
Lorenzo Venerandi
2026-03-06 22:41:02 +01:00
parent 28a62f9ea1
commit 513a5beccd
5 changed files with 25 additions and 2 deletions

View File

@@ -47,6 +47,13 @@ spec:
- name: TZ
value: {{ .Values.timezone | quote }}
{{- end }}
{{- if .Values.dashboardPassword }}
- name: KRAWL_DASHBOARD_PASSWORD
valueFrom:
secretKeyRef:
name: {{ include "krawl.fullname" . }}-dashboard
key: dashboard-password
{{- end }}
volumeMounts:
- name: config
mountPath: /app/config.yaml

View File

@@ -0,0 +1,11 @@
{{- if .Values.dashboardPassword }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "krawl.fullname" . }}-dashboard
labels:
{{- include "krawl.labels" . | nindent 4 }}
type: Opaque
stringData:
dashboard-password: {{ .Values.dashboardPassword | quote }}
{{- end }}