mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
22 lines
892 B
YAML
22 lines
892 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
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 }}
|
|
data:
|
|
APP_URL: "http://{{ include "common.names.fullname" . }}/"
|
|
APP_DEBUG: {{ .Values.debug | quote }}
|
|
MULTI_DB_ENABLED: "false"
|
|
DB_HOST1: {{ include "invoiceninja.databaseHost" . | quote }}
|
|
DB_PORT1: {{ include "invoiceninja.databasePort" . | quote }}
|
|
DB_USERNAME1: {{ include "invoiceninja.databaseUser" . | quote }}
|
|
DB_DATABASE1: {{ include "invoiceninja.databaseName" . | quote }}
|