From 8131eb9fbb1d539af2297f3b8bc3ed2bb6343dc1 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Thu, 14 Dec 2023 10:01:02 -0500 Subject: [PATCH] Remove helm from the consuming E2E GHA Signed-off-by: Tom Pantelis --- .github/workflows/consuming.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/consuming.yml b/.github/workflows/consuming.yml index 9e8f1d27e..ce586618f 100644 --- a/.github/workflows/consuming.yml +++ b/.github/workflows/consuming.yml @@ -19,17 +19,9 @@ jobs: fail-fast: false matrix: project: ['admiral', 'lighthouse', 'subctl', 'submariner', 'submariner-operator'] - deploytool: ['operator', 'helm'] cabledriver: ['libreswan'] # Run most tests against the latest K8s version k8s_version: ['1.28'] - exclude: - # Admiral E2E doesn't respect deploy-tool params, as it uses clusters without Submariner - - project: admiral - deploytool: helm - # Operator and Helm are mutually exclusive, don't try to use Helm in Operator repo - - project: submariner-operator - deploytool: helm include: # Test the same set of cable driver combinations as the consuming projects do in their CI - project: submariner @@ -69,7 +61,7 @@ jobs: uses: ./shipyard/gh-actions/e2e with: k8s_version: ${{ matrix.k8s_version }} - using: ${{ matrix.cabledriver }} ${{ matrix.deploytool }} + using: ${{ matrix.cabledriver }} - name: Post mortem if: failure()