Merge pull request #112672 from yangjunmyfm192085/delKlogv0

use klog.InfoS instead of klog.V(0).Infof(registry part)
This commit is contained in:
Kubernetes Prow Robot 2022-09-27 10:21:50 -07:00 committed by GitHub
commit 0094662cbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -431,7 +431,7 @@ func (al *Allocators) releaseIPs(toRelease map[api.IPFamily]string) (map[api.IPF
if !ok {
// Maybe the cluster was previously configured for dual-stack,
// then switched to single-stack?
klog.V(0).Infof("not releasing ClusterIP %q because %s is not enabled", ip, family)
klog.InfoS("Not releasing ClusterIP because related family is not enabled", "clusterIP", ip, "family", family)
continue
}