I am following this guide of installing kubernetes with kubeadm, and as part of the installation process, I need to set the following kernel parameters in sysctl.d/99-kuvernetes-cni.conf:
net.bridge.bridge-nf-call-iptables=1
net.bridge.bridge-nf-call-ip6tables=1
I know that these belong to the br_netfilter module, since I can only see them with sysctl -a after loading this module.
But what are they all about? Are they really necessary for running kubernetes?