Skip to content
Open
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.11.0
version: 6.11.1
maintainers:
- name: Retool Engineering
email: engineering+helm@retool.com
Expand Down
7 changes: 7 additions & 0 deletions charts/retool/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,13 @@ Usage: {{- include "retool.agentSandbox.postgresUrlEnv" . | nindent 12 }}
secretKeyRef:
name: {{ $ext }}
key: postgres-url
{{- if $pg.passwordSecretName }}
- name: PGPASSWORD
valueFrom:
secretKeyRef:
name: {{ $pg.passwordSecretName }}
key: {{ $pg.passwordSecretKey | default "password" }}
{{- end }}
{{- else }}
{{- /*
Default: inherit the backend's Postgres connection (config.postgresql or the
Expand Down
6 changes: 4 additions & 2 deletions charts/retool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -878,8 +878,10 @@ rr:
# === Secrets ============================================================
# Provide each secret as a plaintext value below, OR set externalSecret.name
# to a pre-existing Secret with keys jwt-public-key, jwt-private-key,
# encryption-key, api-secret, postgres-url. A plaintext value always wins over
# the external secret for that key.
# encryption-key, api-secret, postgres-url. A plaintext value always wins
# over the external secret for that key. The postgres-url key can either
# include or omit an embedded password; if the password is omitted, it can
# be provided separately via rr.agentSandbox.postgres.passwordSecretName.
externalSecret:
name: '' # optional: existing Secret holding all keys below

Expand Down
6 changes: 4 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -878,8 +878,10 @@ rr:
# === Secrets ============================================================
# Provide each secret as a plaintext value below, OR set externalSecret.name
# to a pre-existing Secret with keys jwt-public-key, jwt-private-key,
# encryption-key, api-secret, postgres-url. A plaintext value always wins over
# the external secret for that key.
# encryption-key, api-secret, postgres-url. A plaintext value always wins
# over the external secret for that key. The postgres-url key can either
# include or omit an embedded password; if the password is omitted, it can
# be provided separately via rr.agentSandbox.postgres.passwordSecretName.
externalSecret:
name: '' # optional: existing Secret holding all keys below

Expand Down
Loading