Skip to content

AKS-E2E

AKS-E2E #18

Workflow file for this run

# This workflow calls the main workflow with custom variables
name: AKS-E2E
on:
workflow_dispatch: # Allow running manually on demand
inputs:
rancher_version:
description: Rancher version to deploy
required: true
type: string
default: 2.8-head
k3s_version:
description: k3s version of local cluster
required: true
type: string
default: v1.26.10+k3s1
operator_nightly_chart:
description: Install hosted-provider nightly chart
default: true
required: true
type: boolean
run_p0_provisioning_tests:
required: true
default: true
type: boolean
run_p0_importing_tests:
required: true
default: true
type: boolean
run_support_matrix_provisioning_tests:
required: true
default: false
type: boolean
run_support_matrix_importing_tests:
required: true
default: false
type: boolean
destroy_runner:
description: Destroy the auto-generated self-hosted runner
default: true
type: boolean
runner_template:
description: Runner template to use
default: hosted-prov-e2e-ci-runner-spot-x86-64-template-n2-highmem-32-v2
type: string
jobs:
aks-e2e:
uses: ./.github/workflows/main.yaml
secrets: inherit
with:
hosted_provider: aks
rancher_version: ${{ inputs.rancher_version }}
k3s_version: ${{ inputs.k3s_version }}
operator_nightly_chart: ${{ inputs.operator_nightly_chart == true }}
run_p0_provisioning_tests: ${{ inputs.run_p0_provisioning_tests == true }}
run_p0_importing_tests: ${{ inputs.run_p0_imorting_tests == true }}
run_support_matrix_provisioning_tests: ${{ inputs.run_support_matrix_provisioning_tests == true }}
run_support_matrix_importing_tests: ${{ inputs.run_support_matrix_importing_tests == true }}
destroy_runner: ${{ inputs.destroy_runner == true }}
runner_template: ${{ inputs.runner_template }}