From d5d59d2e7f2b6b9659aa227d062d0d4c1e919f47 Mon Sep 17 00:00:00 2001 From: Lukas Kral Date: Sat, 20 Jun 2026 00:01:44 +0200 Subject: [PATCH] set iptables forward accept Signed-off-by: Lukas Kral --- .github/actions/dependencies/setup-kind/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/dependencies/setup-kind/action.yml b/.github/actions/dependencies/setup-kind/action.yml index 8ea7591..35b7de8 100644 --- a/.github/actions/dependencies/setup-kind/action.yml +++ b/.github/actions/dependencies/setup-kind/action.yml @@ -81,6 +81,13 @@ runs: KIND_CLOUD_PROVIDER_VERSION: v${{ inputs.cloudProviderVersion }} KIND_VERSION: v${{ inputs.kindVersion }} + - name: Fix ARM iptables FORWARD policy for Kind pod networking + if: ${{ matrix.config.arch == 'arm64' }} + shell: bash + run: | + sudo iptables -P FORWARD ACCEPT + sudo ip6tables -P FORWARD ACCEPT + - name: Set DOCKER_REGISTRY shell: bash run: |