-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
airbyte-ci README cleanup part 2 (#36426)
## What Following up and adding more structure to airbyte-ci readme. No code changes. Following up #36239. ## Follow-up work - [ ] @alafanechere mentioned before — we should clean out `connector_ops` and move the pieces we need into `common_utils`, remove the package. - [ ] Rename `connectors_qa` into `connector_metadata_checks` - [ ] Clarify what exactly `qa-engine` is doing.
- Loading branch information
1 parent
70475d0
commit 0474574
Showing
6 changed files
with
57 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Airbyte Connectors CI | ||
|
||
This folder is a collection of systems, tools and scripts that are used to run CI/CD systems specific to our connectors. | ||
This folder is a collection of systems, tools and scripts that are used to run CI/CD systems | ||
specific to our connectors. | ||
|
||
For the list of tools and subfolders, please see [README in `airbyte-ci`](../README.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Airbyte CI Common Utils | ||
|
||
`common_utils` is a Python package that provides common utilities that are used in other `airbyte-ci` tools, such as `ci_credentials` and `base_images`. | ||
|
||
Currently: | ||
- Logger | ||
- GCS API client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# Metadata Service | ||
This is the begining of metadata service for airbyte. | ||
|
||
Airbyte Metadata Service manages the Airbyte Connector Registry. | ||
|
||
This system is responsible for the following: | ||
|
||
- Validating Connector metadata | ||
- Storing Connector metadata in GCS | ||
- Serving Connector metadata to various consumers | ||
- Aggregating Connector metadata to provide a unified view of all connectors | ||
- Triggering actions based on changes to Connector metadata | ||
|
||
## Subsystems | ||
- [Metadata Orchestrator](./orchestrator/README.md) | ||
|
||
- [Metadata Lib](./lib) responsible for preparing and validating connector metadata. | ||
- [Metadata Orchestrator](./orchestrator) responsible for gathering metadata into the registry, | ||
using Dagster. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters