Skip to content

All Charts: add configurable revision history limit for deployments #123

All Charts: add configurable revision history limit for deployments

All Charts: add configurable revision history limit for deployments #123

name: Lint and Test Prometheus Prefect Exporter Chart
"on":
pull_request:
jobs:
lint_test:
name: "lint-test (${{ matrix.kubernetes }})"
runs-on: ubuntu-latest
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/prometheus-prefect-exporter-ct.yaml
- name: Create kind cluster
uses: helm/[email protected]
with:
node_image: "kindest/node:v${{ matrix.kubernetes }}"
- name: Install Prefect Server
run: |
helm dependency build ./charts/prefect-server/
helm install prefect-server -n default ./charts/prefect-server/ --set=postgresql.auth.password=TESTING
- name: Run chart-testing (install)
run: |
ct install --config .github/linters/prometheus-prefect-exporter-ct.yaml --helm-extra-set-args "--set=prefectApiUrl=http://prefect-server.default.svc.cluster.local:4200/api"