mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-14 13:45:06 +00:00
ccm: recognize InstanceNotFound from InstanceID
Otherwise we won't actually delete Nodes in this code path.
This commit is contained in:
@@ -445,6 +445,9 @@ func ensureNodeExistsByProviderID(instances cloudprovider.Instances, node *v1.No
|
|||||||
var err error
|
var err error
|
||||||
providerID, err = instances.InstanceID(context.TODO(), types.NodeName(node.Name))
|
providerID, err = instances.InstanceID(context.TODO(), types.NodeName(node.Name))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if err == cloudprovider.InstanceNotFound {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user