1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00

feat: Ability to specify existing secret as database url (#751)

Closes #750
This commit is contained in:
Mitch Harvey 2024-05-13 19:07:57 +10:00 committed by GitHub
parent 20e642adc0
commit 60bf590177
2 changed files with 16 additions and 2 deletions

View file

@ -64,8 +64,16 @@ spec:
{{- toYaml .Values.resources | nindent 12 }}
env:
{{- if not .Values.postgresql.enabled }}
{{- if .Values.existingDburlSecret }}
- name: DATABASE_URL
value: {{ required "If the included postgresql deployment is disabled you need to define a Database URL in 'dburl'" .Values.dburl }}
valueFrom:
secretKeyRef:
name: .Values.existingDburlSecret
key: uri
{{- else }}
- name: DATABASE_URL
value: {{ required "If the included postgresql deployment is disabled you need to provide an existing secret in .Values.existingDburlSecret or define a Database URL in 'dburl'" .Values.dburl }}
{{- end }}
{{- else }}
- name: DATABASE_URL
valueFrom:

View file

@ -105,9 +105,15 @@ postgresql:
serviceBindings:
enabled: true
## Set this if you disable the built-in postgresql deployment
## Set this or existingDburlSecret if you disable the built-in postgresql deployment
dburl:
## @param existingDburlSecret Name of an existing secret containing a DBurl connection string
## NOTE: Must contain key `uri`
## NOTE: When it's set, the `dburl` parameter is ignored
##
existingDburlSecret: ""
## PVC-based data storage configuration
persistence:
enabled: false