Skip to content

Commit

Permalink
Change provider input for release-matrix.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Parthvi Vala <parthvi.vala@suse.com>
  • Loading branch information
valaparthvi committed Feb 4, 2025
1 parent 35fc529 commit d9b6b49
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ on:
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: false
Expand Down Expand Up @@ -46,13 +42,18 @@ on:
backup_operator_version:
description: Backup Restore operator version (eg. v6.0.0)
type: string
providers:
description: Providers to the run the test on
required: true
type: string
default: '["eks", "gke", "aks"]'

jobs:
e2e-tests:
strategy:
fail-fast: false
matrix:
provider: [aks, eks, gke]
provider: ${{ fromJSON(inputs.providers) }}
uses: ./.github/workflows/main.yaml
secrets: inherit
with:
Expand All @@ -62,7 +63,7 @@ jobs:
operator_nightly_chart: ${{ inputs.operator_nightly_chart }}
tests_to_run: ${{ inputs.tests_to_run }}
destroy_runner: ${{ inputs.destroy_runner }}
runner_template: ${{ inputs.runner_template }}
runner_template: 'hosted-prov-e2e-ci-runner-spot-n2-highmem-16-gl-template-v3'
rancher_installed: ${{ inputs.rancher_installed }}
downstream_cluster_cleanup: ${{ inputs.downstream_cluster_cleanup }}
proxy: ${{ inputs.proxy }}
Expand Down

0 comments on commit d9b6b49

Please sign in to comment.