how to get data from rest api, i cant find the sou...
# ask-community-for-troubleshooting
v
how to get data from rest api, i cant find the source that says rest
1
m
v
Hi, I built a connector for a new source. I followed the documentation to code, test and build the docker image. How to make it show up on the UI? I also included that in the source_definition.yaml as well.
@Marcelo Pio de Castro
m
Nice! You simply go to configuration -> sources, there is a button on the top right to add a new connector
v
Is there a way that i can test this in my local docker image?
m
Yes! Just tag your image using docker tag and use the tag on the airbyte interface
You can for example build it with
docker build . -t mycompany/custom-image:dev
So on Airbyte the repository name will be mycompany/custom-image
And docker image tag will be dev
You can put anything on documentation, even something like "Not Apply"
v
I am getting this error.
Copy code
{
  "type": "CONNECTION_STATUS",
  "connectionStatus": {
    "status": "FAILED",
    "message": "AttributeError(\"'dict' object has no attribute 'get_auth_header'\")"
  }
}
Any idea, what i am missing?
m
Seems like a problem in your code, probably the object that is calling the function
get_auth_header
is null. I would suggest searching where you use that function (just search for it) and see why that is null. Might be a config issue.
v
there isnt any log when i check with python main.py --config blah
it just throws me this one line error
HI, is Airbyte allowed to be deployed on EKS. Do you have a good documentation around it?
m
Yes! There is even the helm charts ready. https://airbytehq.github.io/deploying-airbyte/on-kubernetes
v
I am getting the below error while installing airbyte on eks: "running PreBind plugin VolumeBiding binding volumes timedout waiting for the condition
waiting for a volume to be created, either by external provisioner "ebs.csi.aws.com" or manually created by system administrator
i think its stuck with trying to get a volume attached to this pvc
145 Views