Skip to content

CLI-OBS-Manual-Workflow #314

CLI-OBS-Manual-Workflow

CLI-OBS-Manual-Workflow #314

# This workflow calls the master E2E workflow with custom variables
name: CLI-OBS-Manual-Workflow
on:
workflow_dispatch:
inputs:
ca_type:
description: CA type to use (selfsigned or private)
default: selfsigned
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
k8s_downstream_version:
description: Rancher cluster downstream version to use
default: v1.30.4+k3s1
type: string
k8s_upstream_version:
description: Rancher cluster upstream version to use
default: v1.30.4+k3s1
type: string
operator_repo:
description: Elemental operator repository to use
default: oci://registry.opensuse.org/isv/rancher/elemental/dev/charts/rancher
type: string
os_to_test:
description: OS repository to test (dev/staging/stable)
type: string
default: dev
qase_run_id:
description: Qase run ID where the results will be reported
type: string
rancher_version:
description: Rancher Manager channel/version/head_version to use for installation
default: stable/latest
type: string
sequential:
description: Defines if bootstrapping is done sequentially (true) or in parallel (false)
default: false
type: boolean
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 }}
with:
ca_type: ${{ inputs.ca_type }}
cluster_type: ${{ inputs.cluster_type }}
destroy_runner: ${{ inputs.destroy_runner }}
k8s_downstream_version: ${{ inputs.k8s_downstream_version }}
k8s_upstream_version: ${{ inputs.k8s_upstream_version }}
operator_install_type: ui
operator_repo: ${{ inputs.operator_repo }}
os_to_test: ${{ inputs.os_to_test }}
qase_run_id: ${{ inputs.qase_run_id }}
rancher_version: ${{ inputs.rancher_version }}
reset: true
sequential: ${{ inputs.sequential }}
test_type: cli