- Added debug mode, structured ConfigMap pattern, and README to all charts - Migrated all flat-structure charts to hierarchical values under chartname key - Fixed templates to use correct hierarchical paths - Renamed helm-rustical key to rustical, added HPA support - Fixed ingress YAML parsing (oxicloud), nested env vars (rustical) - Pushed all normalized charts to OCI registry as 1.0.0+ and updated ArgoCD apps
13 lines
383 B
YAML
13 lines
383 B
YAML
{{- if and .Values.miniflux.secret.enabled (not .Values.miniflux.secret.existingSecretName) -}}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "miniflux.fullname" . }}
|
|
labels:
|
|
{{- include "miniflux.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
stringData:
|
|
{{- range $key, $value := .Values.miniflux.secret.data }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|