-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* workflow cleanip * depbot * adjust codeowners * quotes & underscores
- Loading branch information
1 parent
ff0805a
commit 5a7007f
Showing
12 changed files
with
119 additions
and
234 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @gabcoyne @PrefectHQ/platform | ||
* @PrefectHQ/platform |
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,7 +1,7 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: "monthly" | ||
interval: weekly |
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
name: Lint and Test Prefect Agent Chart | ||
on: | ||
|
||
"on": | ||
pull_request: | ||
paths: | ||
- .github/workflows/agent-lint-and-test.yaml | ||
- .github/linters/agent-ct.yaml | ||
- 'charts/prefect-agent/**' | ||
- charts/prefect-agent/** | ||
|
||
jobs: | ||
lint-test: | ||
lint_test: | ||
name: "lint-test (${{ matrix.kubernetes }})" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -16,25 +18,29 @@ jobs: | |
- "1.26.3" | ||
- "1.27.0" | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: v3.11.2 | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/linters/agent-ct.yaml | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
version: v0.20.0 | ||
node_image: "kindest/node:v${{ matrix.kubernetes }}" | ||
|
||
- name: Create API Secret for Agent Chart | ||
run: | | ||
kubectl create ns prefect | ||
kubectl create secret generic prefect-api-key --from-literal=key=${{ secrets.PREFECT_CLOUD_API_KEY }} -n prefect | ||
- name: Run chart-testing (install) | ||
run: ct install --config .github/linters/agent-ct.yaml --helm-extra-set-args "--set=agent.config.workQueueName=test-helm --set=agent.cloudApiConfig.accountId=${{ secrets.PREFECT_CLOUD_ACCOUNT_ID }} --set=agent.cloudApiConfig.workspaceId=${{ secrets.PREFECT_CLOUD_WORKSPACE_ID }}" |
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,6 +1,6 @@ | ||
name: Release Helm Chart | ||
|
||
on: | ||
"on": | ||
push: | ||
tags: | ||
# 2023.9.1, but not 2023.09.01 | ||
|
@@ -41,8 +41,6 @@ jobs: | |
- name: Set up Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: v3.9.2 | ||
|
||
- name: Prepare GPG key for signing | ||
run: | | ||
|
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,14 @@ | ||
name: Lint and Test Prefect Server Chart | ||
on: | ||
|
||
"on": | ||
pull_request: | ||
paths: | ||
- .github/workflows/server-lint-and-test.yaml | ||
- .github/linters/server-ct.yaml | ||
- 'charts/prefect-server/**' | ||
- charts/prefect-server/** | ||
|
||
jobs: | ||
lint-test: | ||
lint_test: | ||
name: "lint-test (${{ matrix.kubernetes }})" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -16,21 +18,24 @@ jobs: | |
- "1.26.3" | ||
- "1.27.0" | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: v3.11.2 | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/linters/server-ct.yaml | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
version: v0.20.0 | ||
node_image: "kindest/node:v${{ matrix.kubernetes }}" | ||
|
||
- name: Run chart-testing (install) | ||
run: ct install --config .github/linters/server-ct.yaml --helm-extra-set-args "--set=postgresql.auth.password=TESTING" |
Oops, something went wrong.