66 lines
2.2 KiB
YAML
66 lines
2.2 KiB
YAML
{{- if not (or .Values.mariadb.enabled .Values.externalDatabase.existingSecret) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "invoiceninja.mariadb.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels.standard" $ | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
type: Opaque
|
|
data:
|
|
mariadb-password: {{ .Values.externalDatabase.password | b64enc | quote }}
|
|
{{- end }}
|
|
|
|
---
|
|
{{- if not (or .Values.redis.enabled .Values.externalDatabase.existingSecret) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "invoiceninja.redis.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels.standard" $ | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
type: Opaque
|
|
data:
|
|
redis-password: {{ .Values.externalRedis.password | b64enc | quote }}
|
|
{{- end }}
|
|
|
|
---
|
|
{{- if not .Values.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels.standard" $ | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
type: Opaque
|
|
data:
|
|
{{- if not (empty .Values.appKey) }}
|
|
APP_KEY: {{ .Values.appKey | b64enc | quote }}
|
|
{{- else }}
|
|
APP_KEY: {{ randAlphaNum 32 | b64enc | quote }}
|
|
{{- end }}
|
|
{{- if .Values.userPassword }}
|
|
IN_PASSWORD: {{ .Values.userPassword | b64enc | quote }}
|
|
{{- end }}
|
|
{{- end }}
|