From e15c51a03d3b61c289d670d20775882c1bb6ac51 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Wed, 16 Apr 2025 23:07:10 +0900 Subject: [PATCH] Makefile: propagate DOCKER_IGNORE_BR_NETFILTER_ERROR Signed-off-by: Akihiro Suda --- Makefile | 1 + hack/make/.integration-test-helpers | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 26e453c642..4cb640ef16 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,7 @@ DOCKER_ENVS := \ -e DOCKER_FIREWALL_BACKEND \ -e DOCKER_GITCOMMIT \ -e DOCKER_GRAPHDRIVER \ + -e DOCKER_IGNORE_BR_NETFILTER_ERROR \ -e DOCKER_LDFLAGS \ -e DOCKER_PORT \ -e DOCKER_REMAP_ROOT \ diff --git a/hack/make/.integration-test-helpers b/hack/make/.integration-test-helpers index 334d5a76bf..380fea1506 100644 --- a/hack/make/.integration-test-helpers +++ b/hack/make/.integration-test-helpers @@ -198,6 +198,7 @@ test_env() { DOCKER_GRAPHDRIVER="$DOCKER_GRAPHDRIVER" \ DOCKER_USERLANDPROXY="$DOCKER_USERLANDPROXY" \ DOCKER_HOST="$DOCKER_HOST" \ + DOCKER_IGNORE_BR_NETFILTER_ERROR="$DOCKER_IGNORE_BR_NETFILTER_ERROR" \ DOCKER_REMAP_ROOT="$DOCKER_REMAP_ROOT" \ DOCKER_REMOTE_DAEMON="$DOCKER_REMOTE_DAEMON" \ DOCKER_ROOTLESS="$DOCKER_ROOTLESS" \