Files
factorio-signal-exporter/web/charts/factorio-dashboard/templates/secret.yaml
Caesar2011 e4e9ebd737
Some checks failed
Build & Push / build (push) Failing after 5m41s
feat: add Dockerfile, Helm chart, Gitea Actions workflow
2026-05-17 20:36:29 +02:00

12 lines
405 B
YAML

{{- if not .Values.app.existingSecret }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "factorio-dashboard.fullname" . }}-secret
labels:
{{- include "factorio-dashboard.labels" . | nindent 4 }}
type: Opaque
stringData:
API_TOKEN: {{ .Values.app.apiToken | required "app.apiToken is required" | quote }}
DATABASE_URL: {{ include "factorio-dashboard.databaseUrl" . | quote }}
{{- end }}