Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 2 additions & 24 deletions .github/workflows/helm-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ concurrency:
jobs:
lint:
timeout-minutes: 10
name: Lint
name: Helm lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

unittest:
timeout-minutes: 10
name: Unit tests
name: Helm unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -107,28 +107,6 @@ jobs:
- name: Run unit tests
run: helm unittest ./client

schema:
timeout-minutes: 10
name: Schema validation
runs-on: ubuntu-latest
strategy:
matrix:
platform: [aks, bm, eks, oc]
steps:
- uses: actions/checkout@v4

- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.15.4

- name: Validate values against schema — ${{ matrix.platform }}
run: |
helm template test-${{ matrix.platform }} ./client \
-f client/ci/${{ matrix.platform }}-values.yaml \
> /dev/null
echo "Schema validation passed for ${{ matrix.platform }}"

ingestor-multiarch:
timeout-minutes: 10
# Guard: the ingestor image the cluster spawns must be a multi-arch index
Expand Down
Loading