Skip to content

EKS-E2E

EKS-E2E #44

Workflow file for this run

# This workflow calls the main workflow with custom variables
name: EKS-E2E
on:
schedule:
- cron: "0 4 * * *" # Run every day
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.27.9+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-n2-highmem-16-gl-template-v1
type: string
jobs:
eks-e2e:
uses: ./.github/workflows/main.yaml
secrets: inherit
with:
hosted_provider: eks
rancher_version: ${{ inputs.rancher_version || '2.8-head' }}
k3s_version: ${{ inputs.k3s_version || 'v1.27.9+k3s1' }}
operator_nightly_chart: ${{ inputs.operator_nightly_chart == true || true }}
run_p0_provisioning_tests: ${{ inputs.run_p0_provisioning_tests == true || github.event_name == 'schedule' && true }}
run_p0_importing_tests: ${{ inputs.run_p0_imorting_tests == true || github.event_name == 'schedule' && true }}
run_support_matrix_provisioning_tests: ${{ inputs.run_support_matrix_provisioning_tests == true || github.event_name == 'schedule' && false }}
run_support_matrix_importing_tests: ${{ inputs.run_support_matrix_importing_tests == true || github.event_name == 'schedule' && false }}
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-v1' }}