chore(blocky): try different datasource url format
This commit is contained in:
parent
816bbea021
commit
5ceb01bb87
|
@ -44,4 +44,4 @@ sources:
|
||||||
- https://hub.docker.com/r/spx01/blocky
|
- https://hub.docker.com/r/spx01/blocky
|
||||||
- https://quay.io/oriedge/k8s_gateway
|
- https://quay.io/oriedge/k8s_gateway
|
||||||
type: application
|
type: application
|
||||||
version: 13.5.3
|
version: 13.5.4
|
||||||
|
|
|
@ -318,7 +318,7 @@ configmap:
|
||||||
- name: BlockyPostgres
|
- name: BlockyPostgres
|
||||||
type: postgres
|
type: postgres
|
||||||
uid: blockypostgres
|
uid: blockypostgres
|
||||||
url: {{ .Values.cnpg.main.creds.portHost | default "na" }}
|
url: {{ printf "%s:5432" (.Values.cnpg.main.creds.host | trimAll "\"") }}
|
||||||
access: proxy
|
access: proxy
|
||||||
user: {{ .Values.cnpg.main.user }}
|
user: {{ .Values.cnpg.main.user }}
|
||||||
secureJsonData:
|
secureJsonData:
|
||||||
|
@ -375,6 +375,7 @@ queryLog:
|
||||||
creationAttempts: 3
|
creationAttempts: 3
|
||||||
# optional: Time between the creation attempts, default: 2s
|
# optional: Time between the creation attempts, default: 2s
|
||||||
creationCooldown: 2s
|
creationCooldown: 2s
|
||||||
|
|
||||||
cnpg:
|
cnpg:
|
||||||
main:
|
main:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue