Commit 4ecb032b authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

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
parents 9aac6cfd e2c96db7
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment