Hello, i am following below link
https://docs.airbyte.io/operator-guides/configuring-airbyte-db to configure my existing postgres instance. Something like below
DATABASE_URL=jdbc:
postgresql://HOST:5432/DB?ssl=true&sslmode=require
DATABASE_HOST=HOST
DATABASE_PORT=5432
DATABASE_DB=DB
Temporal POD getting crashed like below :
{"level":"info","ts":"2022-02-23T05
1034.905Z","msg":"Starting server for services","value":"[history matching frontend worker]","logging-call-at":"server.go:110"}
Unable to start server: sql schema version compatibility check failed: pq: SSL connection is required. Please specify SSL options and retry..
If i avoid DATABASE_HOST, DATABASE_PORT, DATABASE_DB , temporal pod is not crashing but service inside pod is not running, it keeps on printing logs like it - trying to connect to posgres with invalid port & host combination.
+ wait_for_postgres
++ echo
++ awk -F , '{print $1}'
+ server=
+ nc -z 3306
Requesting some help with this !