From 9ef6bb2d96b848867e52b25dd2ace072e00f0275 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= <radoslaw.piliszek@gmail.com>
Date: Thu, 10 Jun 2021 17:38:51 +0000
Subject: [PATCH] [CI] Stop adding the DROP workaround

Since Wallaby, we default to disabling Docker's iptables
management, thus making the code being removed here obsolete.

Change-Id: Ieb7774f2380a811070aea27964a39e4c8cb02083
---
 tests/pre.yml | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/tests/pre.yml b/tests/pre.yml
index c2f1d2e1a0..ba062044ae 100644
--- a/tests/pre.yml
+++ b/tests/pre.yml
@@ -78,20 +78,6 @@
         jump: LOG
         log_prefix: 'iptables FORWARD: '
 
-    # NOTE(yoctozepto): This is to undo Docker's default policy of DROP which
-    # breaks l3 forwarding and also linuxbridge deploys due to bridge-nf-call-iptables.
-    # FIXME(yoctozepto): really handle this for users - somehow my local multinode
-    # deploy fixed it for itself by setting it to ACCEPT on network nodes without
-    # my intervention but so far we have no idea what did that. It certainly does
-    # not happen in CI where all nodes are aio.
-    - name: iptables - ACCEPT FORWARD
-      become: True
-      iptables:
-        state: present
-        action: append
-        chain: FORWARD
-        jump: ACCEPT
-
     - name: set new hostname based on ansible inventory file
       hostname:
         name: "{{ inventory_hostname }}"