Vivek PG
03/16/2023, 10:40 AMsettings >> Sources >> New connector
Can I include them via Octavia CLI? or any other way without using UIJerri Comeau (Airbyte)
octavia list connectors sources
to get the connector ID. For example, if you have a Postgres source, you can run octavia list connectors sources | grep postgres
to get the source ID.
Once you have the source ID, you can bootstrap the source with the octavia generate source
command. For example, if the source ID is decd338e-5647-4c0b-adf4-da0e75f5a750
, you can run octavia generate source decd338e-5647-4c0b-adf4-da0e75f5a750 postgres
to bootstrap the Postgres source.
The CLI will create a postgres
folder under sources with a configuration.yaml
file. You can then edit the configuration and run octavia apply
to apply the changes.
For more information, please refer to the and the CLI documentation.Vivek PG
03/20/2023, 2:26 PMdocker build ./airbyte-integrations/connectors/<connector-name> -t airbyte/<connector-name>:dev
If I run octavia list connectors sources
it is not getting listed
Until i go to airbyte UI and add it
settings >> Sources >> New connector
Is there a way to add via CLI?jan
03/24/2023, 2:49 PMVivek PG
03/28/2023, 7:33 AMlocalhost:8000/api/v1/source_definitions/create_custom
BODY:
{
"workspaceId": "153f0a47-6ace-4976-ac95-0adeeaa13ea5",
"sourceDefinition": {
"name": "TEST_sonarcloud",
"dockerRepository": "airbyte/source-sonar-cloud2",
"dockerImageTag": "devel",
"documentationUrl": ""
}
}
Reference:
https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/source_definitions/create_customjan
03/28/2023, 10:19 AM