this needs to be a string
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
perf3ct 2023-10-20 18:00:43 -07:00
parent 34b6d620aa
commit a3a944482e
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -42,7 +42,7 @@ api:
config:
enabled: true
data:
config.yml:
config.yml: |
# Vikunja needs to know the frontend URL for password reset emails.
# So you might need to provide its value, if you're not using an ingress.
# service:
@ -51,11 +51,11 @@ api:
database:
# You should provide your own secret outside of this helm-chart and use `postgresql.global.postgresql.auth.existingSecret` to provide credentials to the postgresql instance (https://github.com/bitnami/charts/blob/5ff8ad5f3c754e3c2423d6abf46f522e8abe0410/bitnami/postgresql/values.yaml#L35-L39)
# To utilize a secret in this configMap, you can do something like the following: https://github.com/bjw-s/helm-charts/blob/a081de53024d8328d1ae9ff7e4f6bc500b0f3a29/charts/library/common/values.yaml#L141-L145
type: 'postgres'
type: postgres
user: "{{ .Values.postgresql.global.postgresql.auth.username }}"
password: "{{ .Values.postgresql.global.postgresql.auth.password }}"
database: "{{ .Values.postgresql.global.postgresql.auth.database }}"
host: '{{ .Release.Name }}-postgresql'
host: "{{ .Release.Name }}-postgresql"
typesense:
# Typesense will only work if it is enabled below (typesense.enabled).
url: '{{ printf "%s-typesense" .Release.Name }}'
@ -103,7 +103,6 @@ frontend:
# END VIKUNJA COMPONENTS #
##########################
# Optional Dependencies
postgresql:
enabled: true