Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/retool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: retool
description: A Helm chart for Kubernetes
type: application
version: 6.7.0
version: 6.8.0
maintainers:
- name: Retool Engineering
email: [email protected]
Expand Down
4 changes: 4 additions & 0 deletions charts/retool/templates/deployment_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ spec:
value: {{ $.Values.dbconnector.java.port | quote }}
{{- end }}
{{- end }}
{{- if .Values.config.postgresPoolMaxSize }}
- name: DBCONNECTOR_POSTGRES_POOL_MAX_SIZE
value: {{ .Values.config.postgresPoolMaxSize | quote }}
{{- end }}
{{- if .Values.config.dbConnectorTimeout }}
- name: DBCONNECTOR_QUERY_TIMEOUT_MS
value: {{ .Values.config.dbConnectorTimeout | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/retool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ config:
useInsecureCookies: false
# Timeout for queries, in ms.
# dbConnectorTimeout: 120000
# max postgres pool connections for backend
postgresPoolMaxSize: 10
auth:
google:
clientId:
Expand Down
2 changes: 2 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ config:
useInsecureCookies: false
# Timeout for queries, in ms.
# dbConnectorTimeout: 120000
# max postgres pool connections for backend
postgresPoolMaxSize: 10
auth:
google:
clientId:
Expand Down
Loading