Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-04-17 14:40:05 +00:00
parent 003dd24fe6
commit 1dc7b04019
3 changed files with 13 additions and 1 deletions

View File

@ -96,6 +96,12 @@
- update migration guide ([#19966](https://github.com/truecharts/charts/issues/19966))
### Feat
- support database migration
### Fix

View File

@ -114,9 +114,15 @@ nextcloud-config:
{{/* Database */}}
POSTGRES_DB: {{ .Values.cnpg.main.database | quote }}
POSTGRES_USER: {{ .Values.cnpg.main.user | quote }}
POSTGRES_PASSWORD: {{ .Values.cnpg.main.creds.password | trimAll "\"" }}
POSTGRES_PASSWORD: {{ .Values.cnpg.main.password | trimAll "\"" }}
POSTGRES_HOST: {{ .Values.cnpg.main.creds.host | trimAll "\"" }}
{{/* Compatibility Layer to support database changes */}}
NX_POSTGRES_NAME: {{ .Values.cnpg.main.database | quote }}
NX_POSTGRES_USER: {{ .Values.cnpg.main.user | quote }}
NX_POSTGRES_PASSWORD: {{ .Values.cnpg.main.password | trimAll "\"" }}
NX_POSTGRES_HOST: {{ .Values.cnpg.main.creds.host | trimAll "\"" }}
{{/* Redis */}}
NX_REDIS_HOST: {{ $redisHost }}
NX_REDIS_PASS: {{ $redisPass }}