-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into aleonets/3931-3932-…
…fix-mysql # Conflicts: # docs/integrations/sources/mysql.md
- Loading branch information
Showing
550 changed files
with
15,240 additions
and
2,532 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Helm | ||
on: | ||
push: | ||
paths: | ||
- ".github/workflows/helm.yaml" | ||
- "charts/**" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/helm.yaml" | ||
- "charts/**" | ||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Kubectl | ||
uses: azure/setup-kubectl@v1 | ||
- name: Setup Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: "3.6.3" | ||
- name: Lint Chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh lint | ||
|
||
generate-docs: | ||
name: Generate Docs Parameters | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout bitnami-labs/readme-generator-for-helm | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: "bitnami-labs/readme-generator-for-helm" | ||
ref: "55cab5dd2191c4ffa7245cfefa428d4d9bb12730" | ||
path: readme-generator-for-helm | ||
- name: Install readme-generator-for-helm dependencies | ||
working-directory: readme-generator-for-helm | ||
run: npm install -g | ||
- name: Test can update README with generated parameters | ||
working-directory: charts/airbyte | ||
run: ./ci.sh check-docs-updated | ||
|
||
install: | ||
name: Install | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Kubectl | ||
uses: azure/setup-kubectl@v1 | ||
- name: Setup Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: "3.6.3" | ||
- name: Setup Kind Cluster | ||
uses: helm/[email protected] | ||
with: | ||
version: "v0.11.1" | ||
image: "kindest/node:v1.21.1" | ||
- name: Install airbyte chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh install | ||
- if: always() | ||
name: Print diagnostics | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh diagnostics | ||
- if: success() | ||
name: Test airbyte chart | ||
working-directory: ./charts/airbyte | ||
run: ./ci.sh test |
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
Oops, something went wrong.