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/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ description: >

</details>
type: application
version: 1.21.1
version: 1.21.2
appVersion: 0.0.1
2 changes: 1 addition & 1 deletion charts/common/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ livenessProbe:
- "-verbose=false"
- "-log_debug_stdout=true"
- "-structured_logs=true"
- "-term_timeout=30s"
- "-term_timeout={{ .postgres.termTimeout | default "30s" }}"
envFrom:
- configMapRef:
{{- if .postgres.connectionConfig }}
Expand Down
5 changes: 5 additions & 0 deletions charts/common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,11 @@ postgres:
connectionConfig:
# -- Override name for credentials secret. This must at least contain `PGUSER` and `PGPASSWORD`.
credentialsSecret:
# -- Override the term_timeout for the Cloud SQL Proxy. Controls how long the proxy waits for
# existing connections to close after receiving SIGTERM before force-closing them.
# Increase this if your app runs long-lived jobs that need the database during pod termination.
# @default -- 30s
termTimeout:

configmap:
# -- Enable or disable the configmap
Expand Down