Pod-airbyte-bootloader-error #45177
-
Here is my values.yaml file which connects to RDS and S3 in storage, by default its creating airbyte-db-0 pod and iam getting pod-airbyte-bootloader error, when i checked the logs its trying to connect localhost db. can anyone please help am i missing something in the configuration?? iam new to k8s. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@nikhilnicky1 The Otherwise it looks about right to me, so maybe try that first. |
Beta Was this translation helpful? Give feedback.
@nikhilnicky1 The localhost errors you're seeing are a red herring . . . that's the stats collector, not Postgres. The line that actually diagnoses the issue is this one:
It would seem that the host machine can't resolve that name, likely because it's an internal DNS record for AWS and the host machine doesn't have that zone available (it's definitely not a public hostname).
I would start by making sure that you have the right connection details, and that the hose machine for Airbyte can resolve the hostname (you can always test this using
nslookup
/dig
/ping
). Some hostnames in AWS are regi…