Page MenuHomePhabricator

Make sure that docker0 bridge comes up after flannel network is established
Closed, ResolvedPublic

Description

Right now that doesn't happen, causing docker to fail. Requires the following to be manually run:

sudo apt-get install bridge-utils
sudo ifconfig docker0 down
sudo brctl delbr docker0
sudo systemctl restart docker``

Setting up the docker systemd unit to come up only after the flannel network is up should fix this.

Event Timeline

yuvipanda raised the priority of this task from to Needs Triage.
yuvipanda updated the task description. (Show Details)
yuvipanda added subscribers: Aklapper, yuvipanda.

This caused issues in tools-worker-02 now, preventing internet access. I had to do iptables -t nat -A POSTROUTING ! -d <pod-ip-range> -m addrtype ! --dst-type LOCAL -j MASQUERADE to fix that - the masquarede rules were for the old docker0 ip.

valhallasw claimed this task.