feat: migrate miniflux to helm

This commit is contained in:
cătălin 2026-03-11 10:25:50 +01:00
commit 63e5a99360
No known key found for this signature in database
14 changed files with 354 additions and 181 deletions

View file

@ -0,0 +1,13 @@
{{- if and .Values.secret.enabled (not .Values.secret.existingSecretName) -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "miniflux.fullname" . }}
labels:
{{- include "miniflux.labels" . | nindent 4 }}
type: Opaque
stringData:
{{- range $key, $value := .Values.secret.data }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}