feat(immich): add initial chart
This commit is contained in:
parent
2687c2c901
commit
7aa6d236f0
20 changed files with 803 additions and 1 deletions
24
charts/immich/templates/secrets.yaml
Normal file
24
charts/immich/templates/secrets.yaml
Normal 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue