Test k8s version compatability #7
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: Test k8s version compatability | |
on: | |
workflow_dispatch: | |
inputs: | |
node_image_latest: | |
description: 'First version of kindest/node image for k8s kind cluster' | |
default: 'kindest/node:v1.27.3' | |
required: false | |
type: string | |
node_image_second_latest: | |
description: 'Second version of kindest/node image for k8s kind cluster' | |
default: 'kindest/node:v1.26.6' | |
required: false | |
type: string | |
node_image_third_latest: | |
description: 'Third version of kindest/node image for k8s kind cluster' | |
default: 'kindest/node:v1.25.11' | |
required: false | |
type: string | |
jobs: | |
test-latest: | |
uses: ./.github/workflows/helm-test.yaml | |
with: | |
node_image: ${{ github.event.inputs.node_image_latest || 'kindest/node:v1.27.3' }} | |
test-second-latest: | |
uses: ./.github/workflows/helm-test.yaml | |
with: | |
node_image: ${{ github.event.inputs.node_image_second_latest || 'kindest/node:v1.26.6' }} | |
test-third-latest: | |
uses: ./.github/workflows/helm-test.yaml | |
with: | |
node_image: ${{ github.event.inputs.node_image_third_latest || 'kindest/node:v1.25.11' }} |