Skip to content

Commit

Permalink
Update install-kubeadm.md
Browse files Browse the repository at this point in the history
Propose adding config reference to load br_netfilter at boot up to prevent issues with the module not being loaded after reboot.
  • Loading branch information
kylejep authored Dec 31, 2020
1 parent 24279b2 commit bf10334
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ Make sure that the `br_netfilter` module is loaded. This can be done by running
As a requirement for your Linux Node's iptables to correctly see bridged traffic, you should ensure `net.bridge.bridge-nf-call-iptables` is set to 1 in your `sysctl` config, e.g.

```bash
cat <<EOF | sudo tee /etc/modules-load.d/k8s.conf
br_netfilter
EOF

cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
Expand Down

0 comments on commit bf10334

Please sign in to comment.