From 0c2cc98a5a9ca7dc5a3bda4edddb0fdad1cfff2e Mon Sep 17 00:00:00 2001 From: Ryan VanGundy Date: Fri, 16 May 2025 19:33:14 -0400 Subject: [PATCH] Load br_netfilter --- .github/workflows/ci.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8e69a70b8..7755a05cd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,6 +34,13 @@ jobs: docker-compose --version continue-on-error: false + # This module is not loaded by default and is required to run Kubernetes on Docker + - name: Load br_netfilter kernel module + run: | + sudo modprobe br_netfilter + echo "1" | sudo tee /proc/sys/net/bridge/bridge-nf-call-iptables + echo "1" | sudo tee /proc/sys/net/bridge/bridge-nf-call-ip6tables + - name: Set up Python uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: