Skip to content

UI-OBS-Manual-Workflow #103

UI-OBS-Manual-Workflow

UI-OBS-Manual-Workflow #103

# This workflow calls the master E2E workflow with custom variables
name: UI-OBS-Manual-Workflow
on:
workflow_dispatch:
inputs:
boot_type:
description: Boot type (iso/raw)
default: iso
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
elemental_ui_version:
description: Elemental UI version to use
default: dev
type: string
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
proxy:
description: Deploy a proxy (none/rancher/elemental)
default: elemental
type: string
rancher_version:
description: Rancher Manager channel/version/head_version to use for installation
default: stable/latest
type: string
jobs:
ui:
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 }}
with:
boot_type: ${{ inputs.boot_type }}
cluster_type: ${{ inputs.cluster_type }}
destroy_runner: ${{ inputs.destroy_runner }}
elemental_ui_version: ${{ inputs.elemental_ui_version }}
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 }}
proxy: ${{ inputs.proxy }}
qase_run_id: auto
rancher_version: ${{ inputs.rancher_version }}
test_type: ui