CLI-CAPI-RKE2 #105
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
# This workflow calls the master E2E workflow with custom variables | |
name: CLI-CAPI-RKE2 | |
on: | |
workflow_dispatch: | |
inputs: | |
destroy_runner: | |
description: Destroy the auto-generated self-hosted runner | |
default: true | |
type: boolean | |
k8s_downstream_version: | |
description: Cluster downstream version to use | |
default: '"1.30.1"' | |
type: string | |
k8s_upstream_version: | |
description: Cluster upstream version to use | |
default: '"v1.30.1+k3s1"' | |
type: string | |
qase_run_id: | |
description: Qase run ID where the results will be reported | |
type: string | |
schedule: | |
# From Monday to Saturday at 3am UTC (10pm in us-central1) | |
- cron: '0 3 * * 1-6' | |
jobs: | |
cli: | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
matrix: | |
k8s_downstream_version: ${{ fromJSON(format('[{0}]', inputs.k8s_downstream_version || '"1.30.1"')) }} | |
k8s_upstream_version: ${{ fromJSON(format('[{0}]', inputs.k8s_upstream_version || '"v1.27.13+k3s1"')) }} | |
uses: ./.github/workflows/master_capi_e2e.yaml | |
secrets: | |
credentials: ${{ secrets.GCP_CREDENTIALS }} | |
pat_token: ${{ secrets.SELF_HOSTED_RUNNER_PAT_TOKEN }} | |
qase_api_token: ${{ secrets.QASE_API_TOKEN }} | |
with: | |
boot_type: iso | |
bootstrap_provider: rke2 | |
control_plane_provider: rke2 | |
destroy_runner: ${{ github.event_name == 'schedule' && true || inputs.destroy_runner }} | |
k8s_downstream_version: ${{ matrix.k8s_downstream_version }} | |
k8s_upstream_version: ${{ matrix.k8s_upstream_version }} | |
qase_run_id: ${{ inputs.qase_run_id }} | |
test_type: capi_cli | |
zone: us-central1-c |