You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think DATA_SOURCE_PASS in read replica should be postgresql.v1.adminPasswordKey not postgresql.v1.userPasswordKey. It need use postgresPassword when username is not set because the default value of DATA_SOURCE_USER is already set to postgres.
Additional information
In helm chart in mysql, primary and secondary use root for metrics.
The text was updated successfully, but these errors were encountered:
Name and Version
bitnami/postgresql 16.2.3
What architecture are you using?
None
What steps will reproduce the bug?
metrics
and make itreplication
mode.Are you using any custom parameters or values?
No response
What is the expected behavior?
Metrics sidecar of read replica is successfully launched like that of primary pod.
What do you see instead?
I got
CreateContainerConfigError
error.The error description is
Error: couldn't find key password in Secret default/post-test-postgresql
.It turns out it uses
password
notpostgres-password
.statefulset.yaml in primary
statefulset.yaml in read
I think
DATA_SOURCE_PASS
in read replica should bepostgresql.v1.adminPasswordKey
notpostgresql.v1.userPasswordKey
. It need usepostgresPassword
whenusername
is not set because the default value ofDATA_SOURCE_USER
is already set topostgres
.Additional information
In helm chart in mysql, primary and secondary use
root
formetrics
.The text was updated successfully, but these errors were encountered: