Skip to content

Commit

Permalink
helm mode: Add EKS 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 16, 2023
1 parent 64bd65c commit 7300346
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/in-cluster-test-scripts/eks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cilium install \
--wait=false \
--helm-set loadBalancer.l7.backend=envoy \
--helm-set tls.secretsBackend=k8s \
--config monitor-aggregation=none
--helm-set bpf.monitorAggregation=none

# Enable Relay
cilium hubble enable
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/eks.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 }}
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: 60
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 7300346

Please sign in to comment.