Test k8s matrix sanity check #5
Workflow file for this 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
name: Install Helm Chart on Kind Cluster matrix | |
on: | |
push: | |
branches: | |
- matrix-test | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Kubernetes versions to test on | |
kubernetes_version: [v1.23.0] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Create k8s Kind Cluster | |
uses: helm/kind-action@v1 | |
with: | |
version: ${{ matrix.kubernetes_version }} | |
- name: Download chart dependencies before linting | |
run: helm dependency build deploy/helm | |
- name: Install Helm Chart | |
run: | | |
helm install my-release ./deploy/helm --wait --timeout 300s | |
continue-on-error: false | |
- name: Check Helm installation success | |
run: | | |
helm list |