Hello
I'm deploying retool to kubernetes using helm.
But i got following error
Error running database migrations: SequelizeHostNotFoundError: getaddrinfo ENOTFOUND virginia-retool-global.XXXXXXXXX.us-east-1.rds.amazonaws.com:5432
I am using Postgres14.5 RDS on AWS. The database value injected into the helm value is as follows.
postgresql:
enabled: false
config:
postgresql:
host: virginia-retool-global.XXXXXXXXX.us-east-1.rds.amazonaws.com
port: 5432
db: retool # already exist retool database on postgres
user: user
password: password
ssl_enabled: false # When this value is true, i got a same result
How i can solve this problem?