forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'airbytehq:master' into master
- Loading branch information
Showing
5,626 changed files
with
150,096 additions
and
120,863 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,58 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
{ | ||
"name": "Connector Development DevContainer (Generic)", | ||
|
||
"image": "mcr.microsoft.com/devcontainers/java:0-17", | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker": {}, | ||
"ghcr.io/devcontainers/features/java:1": { | ||
"installGradle": true, | ||
"version": "latest", | ||
"jdkDistro": "open", | ||
"gradleVersion": "7.5.1" | ||
}, | ||
// Python needed for `airbyte-ci` CLI | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"installGradle": true, | ||
"version": "3.10", | ||
"installTools": true | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/poetry:2": {} | ||
}, | ||
|
||
// Deterministic order reduces cache busting | ||
"overrideFeatureInstallOrder": [ | ||
"ghcr.io/devcontainers/features/docker-in-docker", | ||
"ghcr.io/devcontainers/features/java", | ||
"ghcr.io/devcontainers/features/python", | ||
"ghcr.io/devcontainers-contrib/features/poetry" | ||
], | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
"vscode": { | ||
"extensions": ["vscjava.vscode-gradle", "tamasfe.even-better-toml"], | ||
"settings": { | ||
"extensions.ignoreRecommendations": true, | ||
"git.openRepositoryInParentFolders": "always" | ||
} | ||
} | ||
}, | ||
|
||
// Mark the root directory as 'safe' for git. | ||
"initializeCommand": "git config --add safe.directory /workspaces/airbyte", | ||
|
||
// Install Gradle, `airbyte-ci` CLI, and Dagger (installed via airbyte-ci --help) | ||
"postCreateCommand": "./gradlew --version && pipx install --editable ./airbyte-ci/connectors/pipelines/ || airbyte-ci --help || true", | ||
|
||
"containerEnv": { | ||
// Deterministic Poetry virtual env location: `./.venv` | ||
"POETRY_VIRTUALENVS_IN_PROJECT": "true" | ||
} | ||
|
||
// Override to change the directory that the IDE opens by default: | ||
// "workspaceFolder": "/workspaces/airbyte" | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
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
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,62 @@ | ||
name: 🐛 Report a platform, infra or deployment bug | ||
description: Use this template when you have a problem operating Airbyte platform | ||
labels: [type/bug, area/platform, needs-triage] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
<p align="center"> | ||
<a target="_blank" href="https://airbyte.com"> | ||
<image> | ||
<source srcset="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg"> | ||
<img alt="octavia-welcome" src="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg" width="auto" height="120"> | ||
</image> | ||
</a> | ||
</p> | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report... | ||
Make sure to update this issue with a concise title and provide all information you have to | ||
help us debug the problem together. Issues not following the template will be closed. | ||
- type: dropdown | ||
id: deploy | ||
validations: | ||
required: true | ||
attributes: | ||
label: What method are you using to run Airbyte? | ||
multiple: false | ||
options: | ||
- Docker | ||
- Kubernetes | ||
- type: input | ||
id: platform-version | ||
attributes: | ||
label: Platform Version or Helm Chart Version | ||
description: "Some examples are: (eg. 0.44.1, 0.30.0), you can find the version in the left bottom in Airbyte UI or in the .env / value.yaml file" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: step | ||
attributes: | ||
label: What step the error happened? | ||
multiple: false | ||
options: | ||
- On deploy | ||
- During the Sync | ||
- Upgrading the Platform or Helm Chart | ||
- Other | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Revelant information | ||
description: Please give any additional information you have and steps to reproduce the problem. | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: | | ||
Please copy and paste any relevant log output. | ||
This will be automatically formatted into code, so no need for backticks. | ||
We strongly recommend to upload the log file for further debugging. | ||
render: shell |
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
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.