Skip to content

Test k8s matrix sanity check #5

Test k8s matrix sanity check

Test k8s matrix sanity check #5

Workflow file for this run

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