Merge pull request #33129 from dcbw/kubenet-warn-podcidr-updates

Automatic merge from submit-queue

kubenet: make it more apparent that kubenet ignores PodCIDR updates

Don't suppress a warning that kubenet will ignore PodCIDR updates.

See https://github.com/kubernetes/kubernetes/issues/32900
This commit is contained in:
Kubernetes Submit Queue 2016-10-05 16:15:18 -07:00 committed by GitHub
commit 4ecb032bc9

View File

@ -241,7 +241,7 @@ func (plugin *kubenetNetworkPlugin) Event(name string, details map[string]interf
}
if plugin.netConfig != nil {
glog.V(5).Infof("Ignoring subsequent pod CIDR update to %s", podCIDR)
glog.Warningf("Ignoring subsequent pod CIDR update to %s", podCIDR)
return
}