K8s/Helm question: I’m attempting to use an extern...
# replication-troubleshooting
d
K8s/Helm question: I’m attempting to use an external DB instead of the default container db, but it doesn’t look like the changes I’ve had any affect. I changed in the helm values:
Copy code
postgresql:
  enabled: false
externalDatabase:
  host: ${db_host}
  user: ${db_user}
  password: ${db_password}
  database: ${db_name}
  port: ${db_port}
✍️ 1