From 69715074a86e3da94c6c0561c084060d88c1d73f Mon Sep 17 00:00:00 2001 From: KevDG Date: Thu, 20 Aug 2020 15:15:44 +0200 Subject: [PATCH] Workaround to fix ipset conflict with iptables Related to https://github.com/weaveworks/weave/issues/3847 --- prog/weave-kube/launch.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/prog/weave-kube/launch.sh b/prog/weave-kube/launch.sh index 01ea699b89..ecdd567bb1 100755 --- a/prog/weave-kube/launch.sh +++ b/prog/weave-kube/launch.sh @@ -48,6 +48,7 @@ xt_set_exists() { fi iptables -w -F WEAVE-KUBE-TEST iptables -w -X WEAVE-KUBE-TEST + sleep 1 ipset destroy weave-kube-test [ -z "$NOT_EXIST" ] || (echo "\"xt_set\" does not exist" >&2 && return 1) }