Skip to content

Commit 45dc7d7

Browse files
committed
workflows: Fix leak detection for IPv6-only in IPsec upgrade tests
Commit 8dc7793 ("workflows/ipsec: Skip bpftrace DNS check if IPv4 is disabled") fixed the leak detection when running on an IPv6-only cluster. It applied to the IPsec E2E and the E2E Upgrade workflows, but forgot the IPsec Upgrade workflow. This commit fixes it. Fixes: 8dc7793 ("workflows/ipsec: Skip bpftrace DNS check if IPv4 is disabled") Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
1 parent 6a696d5 commit 45dc7d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests-ipsec-upgrade.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ jobs:
362362
uses: ./.github/actions/bpftrace/start
363363
with:
364364
script: ./.github/actions/bpftrace/scripts/check-encryption-leaks.bt
365-
args: ${{ steps.bpftrace-params.outputs.params }} "true" "ipsec"
365+
args: ${{ steps.bpftrace-params.outputs.params }} "${{ matrix.ipv4 != 'false' }}" "ipsec"
366366

367367
- name: Setup conn-disrupt-test before upgrading (${{ join(matrix.*, ', ') }})
368368
if: ${{ steps.vars.outputs.downgrade_version != '' }}
@@ -412,7 +412,7 @@ jobs:
412412
uses: ./.github/actions/bpftrace/start
413413
with:
414414
script: ./.github/actions/bpftrace/scripts/check-encryption-leaks.bt
415-
args: ${{ steps.bpftrace-params.outputs.params }} "true" "ipsec"
415+
args: ${{ steps.bpftrace-params.outputs.params }} "${{ matrix.ipv4 != 'false' }}" "ipsec"
416416

417417
- name: Setup conn-disrupt-test before downgrading
418418
if: ${{ steps.vars.outputs.downgrade_version != '' }}

0 commit comments

Comments
 (0)