CLI-RKE2-OBS_Dev #140
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
# This workflow calls the master E2E workflow with custom variables | |
name: CLI-RKE2-OBS_Dev | |
on: | |
workflow_dispatch: | |
inputs: | |
qase_run_id: | |
description: Qase run ID where the results will be reported | |
required: false | |
type: string | |
cluster_type: | |
description: Cluster type (empty if normal or hardened) | |
type: string | |
destroy_runner: | |
description: Destroy the auto-generated self-hosted runner | |
default: true | |
type: boolean | |
rancher_version: | |
description: Rancher Manager channel/version/head_version to use for installation | |
default: stable/latest/none | |
type: string | |
concurrency: | |
group: e2e-rke2-obs-dev-${{ github.head_ref || github.ref }}-${{ github.repository }} | |
cancel-in-progress: true | |
jobs: | |
cli: | |
uses: ./.github/workflows/master-e2e.yaml | |
secrets: | |
credentials: ${{ secrets.GCP_CREDENTIALS }} | |
pat_token: ${{ secrets.SELF_HOSTED_RUNNER_PAT_TOKEN }} | |
qase_api_token: ${{ secrets.QASE_API_TOKEN_CLI }} | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
test_description: "Manual - CLI - Parallel - Deployment test + reset with Standard RKE2" | |
ca_type: private | |
cluster_name: cluster-rke2 | |
cluster_type: ${{ inputs.cluster_type }} | |
destroy_runner: ${{ inputs.destroy_runner }} | |
k8s_version_to_provision: v1.26.10+rke2r2 | |
operator_repo: oci://registry.opensuse.org/isv/rancher/elemental/dev/charts/rancher | |
os_to_test: dev | |
qase_run_id: ${{ inputs.qase_run_id }} | |
rancher_version: ${{ inputs.rancher_version }} | |
upstream_cluster_version: v1.26.10+rke2r2 | |
reset: true |