feat(immich): add initial chart

This commit is contained in:
secustor 2025-01-17 22:49:13 +01:00
parent 2687c2c901
commit 7aa6d236f0
No known key found for this signature in database
20 changed files with 803 additions and 1 deletions

View file

@ -0,0 +1,24 @@
{{- if not .Values.common.postgres.existingSecret.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "immich.fullname" . }}-postgres
labels:
{{- include "immich.commonLabels" . | nindent 4 }}
type: Opaque
data:
username: "{{ .Values.common.postgres.createSecret.username | b64enc }}"
password: "{{ .Values.common.postgres.createSecret.password | b64enc }}"
{{- end }}
---
{{- if not .Values.common.redis.existingSecret.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "immich.fullname" . }}-redis
labels:
{{- include "immich.commonLabels" . | nindent 4 }}
type: Opaque
data:
password: "{{ .Values.common.redis.createSecret.password | b64enc }}"
{{- end }}