Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
- name: DB_CONNECTION_URI
value: {{ include "infisical.postgresDBConnectionString" . }}
{{- end }}
{{- if .Values.redis.enabled }}
{{- if and .Values.redis.enabled (not .Values.redis.auth.existingSecret) }}
- name: REDIS_URL
value: {{ include "infisical.redisConnectionString" . }}
{{- end }}
Expand Down
6 changes: 6 additions & 0 deletions helm-charts/infisical-standalone-postgres/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ redis:
auth:
# -- Redis password
password: "mysecretpassword"
# -- Redis existingSecret. The name of an existing secret to use for the redis password
# -- NOTE: When it's set, the previous `auth.password` parameter is ignored. You must add REDIS_URL to your env secret .. see kubeSecretRef
# existingSecret: "my-existing-secret"
# -- existingSecret password key. Password key to be retrieved from existing secret
# -- NOTE: ignored unless `auth.existingSecret` parameter is set
# existingSecretPasswordKey: "password"

# -- Redis deployment type (e.g., standalone or cluster)
architecture: standalone