mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 05:57:25 +00:00
Correct the error variable for releasing CIDR
This commit is contained in:
parent
2183a84feb
commit
669dc0a9fd
@ -346,7 +346,7 @@ func (r *rangeAllocator) updateCIDRsAllocation(data nodeReservedCIDRs) error {
|
|||||||
if len(node.Spec.PodCIDRs) != 0 {
|
if len(node.Spec.PodCIDRs) != 0 {
|
||||||
klog.Errorf("Node %v already has a CIDR allocated %v. Releasing the new one.", node.Name, node.Spec.PodCIDRs)
|
klog.Errorf("Node %v already has a CIDR allocated %v. Releasing the new one.", node.Name, node.Spec.PodCIDRs)
|
||||||
for idx, cidr := range data.allocatedCIDRs {
|
for idx, cidr := range data.allocatedCIDRs {
|
||||||
if releaseErr := r.cidrSets[idx].Release(cidr); err != nil {
|
if releaseErr := r.cidrSets[idx].Release(cidr); releaseErr != nil {
|
||||||
klog.Errorf("Error when releasing CIDR idx:%v value: %v err:%v", idx, cidr, releaseErr)
|
klog.Errorf("Error when releasing CIDR idx:%v value: %v err:%v", idx, cidr, releaseErr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user