mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 10:20:13 +00:00
chore: bump deps
Update k8s to 0.28.2
This commit is contained in:
@@ -181,7 +181,7 @@ func (i *instances) getInstance(node *v1.Node) (*pxapi.VmRef, string, error) {
|
||||
return nil, "", err
|
||||
}
|
||||
|
||||
if vmInfo["name"].(string) != node.Name {
|
||||
if vmInfo["name"] != nil && vmInfo["name"].(string) != node.Name {
|
||||
return nil, "", fmt.Errorf("instances.getInstance() vm.name(%s) != node.name(%s)", vmInfo["name"].(string), node.Name)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user