Skip to content

Commit

Permalink
helm mode: Add EKS tunnel mode test coverage
Browse files Browse the repository at this point in the history
Ref: #1625

Signed-off-by: Michi Mutsuzaki <[email protected]>
  • Loading branch information
michi-covalent committed May 18, 2023
1 parent 924128e commit a81d7c2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/eks-tunnel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ concurrency:
cancel-in-progress: true

env:
clusterName: ${{ github.repository_owner }}-${{ github.event.repository.name }}-${{ github.run_id }}-tunnel
region: us-east-2
cilium_version: v1.13.2
kubectl_version: v1.23.6
Expand All @@ -36,7 +35,14 @@ jobs:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-22.04
timeout-minutes: 45
strategy:
matrix:
mode: ["classic", "helm"]
steps:
- name: Set cluster name
run: |
echo "clusterName=${{ github.repository_owner }}-${{ github.event.repository.name }}-${{ github.run_id }}-${{ matrix.mode }}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2

Expand Down Expand Up @@ -133,7 +139,8 @@ jobs:
--generate-name \
--set tag=${{ steps.vars.outputs.sha }} \
--set cilium_version=${{ env.cilium_version }} \
--set cluster_name=${{ env.clusterName }}
--set cluster_name=${{ env.clusterName }} \
--set cilium_cli_mode=${{ matrix.mode }}
- name: Wait for job
env:
Expand Down

0 comments on commit a81d7c2

Please sign in to comment.