Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/dependencies/setup-kind/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
Loading