Skip to content

fix: workflow failure updating downstream helm charts #245

fix: workflow failure updating downstream helm charts

fix: workflow failure updating downstream helm charts #245

---
name: Lint and Test Prefect Server Chart
"on":
pull_request_target:
branches:
- main
permissions: {}
jobs:
lint_test:
name: "lint-test (${{ matrix.kubernetes }})"
runs-on: ubuntu-latest
permissions:
# required to read from the repo
contents: read
strategy:
matrix:
kubernetes:
- "1.26.0"
- "1.27.0"
- "1.28.0"
- "1.29.0"
fail-fast: false
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
- 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:
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"