Hi, I am deploying through helm charts on kubernetes. I wanted to connect to an external Postgres database and have created it on GCloud for use by Rasa-X, also created the tracker and worker-tracker database. I’ve created an external secret and added the required configurations for the external database as mentioned in the docs. Please find my values.yml as under-
rasax:
tag: "0.40.1"
initialUser:
password: "hidden"
passwordSalt: "something"
token: "something"
jwtSecret: "hidden"
rasa:
token: "something"
tag: "2.6.2-full"
useLoginDatabase: false
versions:
rasaProduction:
trackerDatabase: "tracker"
rasaWorker:
trackerDatabase: "worker_tracker"
rasaSecret: "chatbot-rasa-external"
debugMode: true
rabbitmq:
rabbitmq:
password: "hidden"
postgresql:
install: false
existingHost: "hidden"
existingSecretKey: "databasePassword"
global:
postgresql:
postgresqlUsername: "me"
existingSecret: "chatbot-rasa-external"
postgresqlDatabase: "rasa"
servicePort: 5432
redis:
password: "hidden"
But I am getting the following error from the event-service logs. I am not able to proceed further. I have tried deleting the older deployment and the PVCs and then tried redeploying. But it does not work. Also tried deleting old deployment, PVCs and all tables created in external Postgres DB and tried deployed fresh from the start. Still no luck . Please help.