Files
HelmChartSammlung/charts/paperless-ai/templates/openAiApiSecret.yaml
Marko Oldenburg f3fbaf942e
All checks were successful
Build Helm Chart / helm-package (push) Successful in 4s
refactor: move Helm chart to standard directory structure
This commit restructures the paperless-ai Helm chart by moving all files
 from the nested directory (charts/paperless-ai/paperless-ai/) to the
 standard Helm chart directory structure (charts/paperless-ai/). The change
 eliminates the redundant directory nesting that was causing issues with
 Helm chart packaging and installation. No functional changes were made to
 any files - this is purely a directory structure reorganization to follow
 Helm best practices and improve chart maintainability.
2025-06-27 08:43:57 +02:00

11 lines
288 B
YAML

{{- if .Values.openAi.apiKey }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "paperless-ai.fullname" . }}-open-ai-api
labels:
{{- include "paperless-ai.labels" . | nindent 4 }}
type: Opaque
data:
OPENAI_API_KEY: {{ .Values.openAi.apiKey | b64enc | quote }}
{{- end }}