Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On a freshly rebooted Linux host that's configured to use nftables with the iptables front-end, "make test-unit" fails "TestUserChains" on the first run - it's ok in subsequent runs. The unit tests run in moby's dev container. The first test in TestUserChain runs with ip6tables disabled, so the bridge driver doesn't try to load the ip6_tables module. Then, because the module isn't loaded (it wasn't needed by the daemon running on the nftables host when it started), the test fails because it can't check what's in the ip6tables filter chain. The next test in TestUserChain does the same thing, but with ip6tables enabled. So the module gets loaded by the bridge driver, and everything works normally after that. The dev container used to try to load the module on startup, but that was removed in commit 2af19b6 ("Don't try to modprobe ip6_tables in the moby dev container"), as part of a change to give the daemon a way to load modules itself. Rather that put back the dev container's code to load ip6_tables on startup (which would mean the daemon's module-loading code not getting to run on nftables/firewalld hosts) ... Run the tests in TestUserChains in a different order, with iptables enabled in the first test will make it happen to work. At least for now. It's not ideal, but we'll be switching to nftables soon, so the issue will go away. Signed-off-by: Rob Murray <[email protected]>
- Loading branch information