-
Notifications
You must be signed in to change notification settings - Fork 40.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect br-netfilter warning on Centos 7 #23385
Comments
Same issue here on CoreOS stable on digital ocean running Kubernetes v1.2 latest release
|
Same on Ubuntu-14.04:
|
@freehan for convergence with CNI stuff... Anyone have time to pitch in here, should be an easy change... On Mon, May 2, 2016 at 5:55 AM, Alex Didenko notifications@github.com
|
Configuration option is not "m", this is not a module. #cat /etc/redhat-release
CentOS Linux release 7.1.1503 (Core)
#uname -r
3.10.0-229.el7.x86_64
#grep CONFIG_BRIDGE_NETFILTER /boot/config-3.10.0-229.el7.x86_64
CONFIG_BRIDGE_NETFILTER=y |
Also happens on Docker for Mac, and it's got this:
|
how to check kube-proxy policy(namespace、iptables) which kubernetes used right now? thank you |
Automatic merge from submit-queue Remove br_netfilter warning in kube-proxy Many distros have this module linked in, generating a spurious error. Fixes #23385
Can this also result in fall backing into userspace even when |
@becile when kube-proxy starts it should log something like @veverjak not if |
Centos 7 official packages include linux kernel
3.10
bundled withbridge-netfilter
.This can be verified by checking the existence of the following files:
However, kubelet prints a warning highlighting the absence of
br-netfilter
:This warning seems to be incorrect.
The check that triggers the warning is in
Newproxier
, located inproxier.go
:Fundamentally, in the case of Centos 7, the absence of
/sys/module/br_netfilter
is not a proof of the absence of thebr-netfilter
module.The text was updated successfully, but these errors were encountered: