AKS on Rancher latest/devel/head deployed on v1.30.5+k3s1 #911
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 main workflow with custom variables | |
name: AKS-E2E | |
run-name: AKS on Rancher ${{ inputs.rancher_version || 'latest/devel/head' }} deployed on ${{ inputs.k3s_version || 'v1.30.5+k3s1' }} | |
on: | |
schedule: | |
- cron: "0 4 * * 1-6" # From Monday to Saturday | |
- cron: "0 4 * * 0" # On Sunday | |
workflow_dispatch: # Allow running manually on demand | |
inputs: | |
rancher_version: | |
description: Rancher version channel/version/head_version latest/latest, latest/2.9.3[-rc2], prime/2.9.3, prime/devel/2.9, prime-optimus/2.9.3-rc2 | |
required: true | |
type: string | |
default: latest/devel/head | |
k3s_version: | |
description: k3s version of local cluster | |
required: true | |
type: string | |
default: v1.30.5+k3s1 | |
runner_template: | |
description: Runner template to use | |
default: hosted-prov-e2e-ci-runner-spot-n2-highmem-16-gl-template-v3 | |
type: string | |
operator_nightly_chart: | |
description: Install hosted-provider nightly chart | |
default: true | |
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 (p0_provisioning/p0_import/support_matrix_provisioning/support_matrix_import/k8s_chart_support_provisioning/k8s_chart_support_import/p1_provisioning/p1_import/sync_provisioning/sync_import) | |
type: string | |
required: true | |
default: p0_provisioning/p0_import | |
qase_run_id: | |
description: Qase run ID where the results will be reported (auto|none|existing_run_id) | |
default: none | |
type: string | |
jobs: | |
aks-e2e: | |
uses: ./.github/workflows/main.yaml | |
secrets: inherit | |
with: | |
hosted_provider: aks | |
rancher_version: ${{ inputs.rancher_version || 'latest/devel/head' }} | |
k3s_version: ${{ inputs.k3s_version || 'v1.30.5+k3s1' }} | |
operator_nightly_chart: ${{ inputs.operator_nightly_chart == true || (github.event_name == 'schedule' && true) }} | |
tests_to_run: ${{ inputs.tests_to_run || (github.event.schedule == '0 4 * * 1-6' && 'p0_provisioning/p0_import') || (github.event.schedule == '0 4 * * 0' && 'p1_provisioning/p1_import/sync_provisioning/sync_import') }} | |
destroy_runner: ${{ inputs.destroy_runner == true || (github.event_name == 'schedule' && true) }} | |
runner_template: ${{ inputs.runner_template || 'hosted-prov-e2e-ci-runner-spot-n2-highmem-16-gl-template-v3' }} | |
rancher_installed: ${{ inputs.rancher_installed || 'hostname/password' }} | |
downstream_cluster_cleanup: ${{ inputs.downstream_cluster_cleanup == true || (github.event_name == 'schedule' && true) }} | |
proxy: ${{ inputs.proxy == true }} | |
qase_run_id: ${{ inputs.qase_run_id || 'auto' }} |