Rancher latest/devel/2.8
on v1.29.13+k3s1
running p0_provisioning/p0_import
#82
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: Release-matrix | |
run-name: Rancher `${{ inputs.rancher_version }}` on `${{ inputs.k3s_version }}` running `${{ inputs.tests_to_run }}` | |
on: | |
workflow_dispatch: | |
inputs: | |
rancher_version: | |
description: Rancher version channel/version/head_version | |
required: true | |
type: string | |
default: latest/devel/2.10 | |
k3s_version: | |
description: k3s version of local cluster | |
required: true | |
type: string | |
default: v1.30.5+k3s1 | |
operator_nightly_chart: | |
description: Install hosted-provider nightly chart | |
default: false | |
required: true | |
type: boolean | |
destroy_runner: | |
description: Destroy the auto-generated self-hosted runner | |
default: true | |
type: boolean | |
downstream_cluster_cleanup: | |
description: Cleanup downstream clusters after test | |
default: true | |
type: boolean | |
proxy: | |
description: Install Rancher behind proxy | |
type: boolean | |
default: false | |
rancher_installed: | |
description: Rancher details if already installed | |
default: 'hostname/password' | |
type: string | |
tests_to_run: | |
description: Tests to run | |
required: true | |
default: p0_provisioning/p0_import | |
backup_operator_version: | |
description: Backup Restore operator version (eg. v6.0.0) | |
type: string | |
providers: | |
description: Providers to the run the test on | |
required: true | |
type: string | |
default: '["eks", "gke", "aks"]' | |
jobs: | |
e2e-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
provider: ${{ fromJSON(inputs.providers) }} | |
uses: ./.github/workflows/main.yaml | |
secrets: inherit | |
with: | |
hosted_provider: ${{ matrix.provider }} | |
rancher_version: ${{ inputs.rancher_version }} | |
k3s_version: ${{ inputs.k3s_version }} | |
operator_nightly_chart: ${{ inputs.operator_nightly_chart }} | |
tests_to_run: ${{ inputs.tests_to_run }} | |
destroy_runner: ${{ inputs.destroy_runner }} | |
runner_template: 'hosted-prov-e2e-ci-runner-spot-n2-highmem-16-gl-template-v3' | |
rancher_installed: ${{ inputs.rancher_installed }} | |
downstream_cluster_cleanup: ${{ inputs.downstream_cluster_cleanup }} | |
proxy: ${{ inputs.proxy }} | |
backup_operator_version: ${{ inputs.backup_operator_version }} | |
qase_run_id: 'auto' | |