-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[helm] Cannot connect to External RDS instance #48854
Comments
Hello, you're missing the following secret, it needs to be created BEFORE the helm install:
Docs: https://docs.airbyte.com/deploying-airbyte/integrations/database |
I have that already, secret is setup. Seems to me its still trying to connect to the local database instance. |
Not sure if this helps, but I'm also having some Postgres RDS issues (outlined in this issue: #49304) When I was having connection issues (now different issues), it was because of my security group settings for RDS were not set up correctly. If I run Environment:
AIRBYTE_VERSION: <set to the key 'AIRBYTE_VERSION' of config map 'release-1-airbyte-env'> Optional: false
RUN_DATABASE_MIGRATION_ON_STARTUP: <set to the key 'RUN_DATABASE_MIGRATION_ON_STARTUP' of config map 'release-1-airbyte-env'> Optional: false
DATABASE_HOST: <set to the key 'DATABASE_HOST' of config map 'release-1-airbyte-env'> Optional: false
DATABASE_PORT: <set to the key 'DATABASE_PORT' of config map 'release-1-airbyte-env'> Optional: false
DATABASE_DB: <set to the key 'DATABASE_DB' of config map 'release-1-airbyte-env'> Optional: false
DATABASE_USER: <set to the key 'database-user' in secret 'airbyte-config-secrets'> Optional: false
DATABASE_PASSWORD: <set to the key 'database-password' in secret 'airbyte-config-secrets'> Optional: false
DATABASE_URL: <set to the key 'DATABASE_URL' of config map 'release-1-airbyte-env'> Optional: false |
Thanks - the only thing i can see is possible somehow the password is getting messed up - i can connect from inside the EKS cluster absoloutely fine |
@joel-cant-wbt did you find a solution or still having issues? |
Still having the same issue From the logs: Caused by: org.postgresql.util.PSQLException: FATAL: password authentication failed for user "airbyte_user" Password tests fine, but i also noted this error: Caused by: org.postgresql.util.PSQLException: Connection to airbyte-db-svc:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections. Which makes it look like its trying the wrong data source. |
i figured out what was missing. postgres: should have been postgresql: in the yaml file Always something simple |
Helm Chart Version
1.2.0
What step the error happened?
On deploy
Relevant information
Hi.
Trying to get Airbyte to deploy on AWS EKS. I am using an external RDS instance for the airbyte config.
but it fails to connect to the external DB. I have verified that EKS nodes can connect to the external DB with the username and password no problem.
Looks like the YAML variables are not being correctly picked up:
logs show
I see the failed password attempt, but it seems to be using the wrong DB.
Relevant log output
The text was updated successfully, but these errors were encountered: