Summary
Icon.svg added in spec.yaml file but not showing up for source connector in Airbyte Docker method
Question
I have added the icon.svg in spec.yaml file and the svg is also there but when i add the source connector through the docker method, theres no icon. What am i missing
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.
Join the conversation on Slack
["icon.svg", "spec.yaml", "source-connector", "docker", "missing-icon"]
done now how do i access this table
kubectl port-forward airbyte-db-0 5432:5432
okay after port forwarding. whats the host, username, password for the db. Also, what db type is it like mysql, postgres, etc ?
PostgreSQL
psql -h localhost -p 5432 -U airbyte -d db-airbyte
don’t forget about semicolon ; at the end of query
what works in DBeaver or some other PostgreSQL clients, in psql needs to be more strict
e.g SELECT * FROM actor_definition;
maybe i am doing the wrong practice of deleting the source before improving the couchbase source connector. I see multiple versions of Couchbase source in airbyte ui as well as this dashbaord
When i
do whatever works for you
I want to have a fresh start. Will just deleting the docker container delete all my custom sources ?
for a completely fresh start I’d recommend
abctl local install```
yesterday it was working but after the fresh start.
have you repeated steps?
KUBECONFIG=~/.airbyte/abctl/abctl.kubeconfig kubectl config view --flatten > ~/.kube/config
kubectx kind-airbyte-abctl
kubens airbyte-abctl```
In actor_definition table there are two columns icon and icon_url, as you may notice icon are served from <https://connectors.airbyte.com/files/metadata/airbyte/>...
for custom connector there is default icon
okay where can i find this table
in Airbyte’s database
airbyte-db-0 pod for abctl
kubectl port-forward airbyte-db-0 5432:5432
this is my handy instruction for setting up context for kubectl
Install kubectl (https://kubernetes.io/docs/tasks/tools/#kubectl) and kubectx + kubens (https://github.com/ahmetb/kubectx)
then execute commands:
KUBECONFIG=~/.airbyte/abctl/abctl.kubeconfig kubectl config view --flatten > ~/.kube/config
kubectx kind-airbyte-abctl
kubens airbyte-abctl```