mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 10:20:13 +00:00
chore: clearer error message
Error now clearly indicates the reasoning for the error message. Previously the error message suggested a kubelet flag was not set even when it may have been. Signed-off-by: Daniel J. Holmes (jaitaiwan) <dan@jaitaiwan.dev>
This commit is contained in:
committed by
Serge
parent
7aba46727d
commit
628e7d6500
@@ -198,7 +198,10 @@ func (i *instances) InstanceMetadata(ctx context.Context, node *v1.Node) (*cloud
|
|||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
klog.InfoS("instances.InstanceMetadata() is kubelet has args: --cloud-provider=external on the node?", node, klog.KRef("", node.Name))
|
klog.InfoS(fmt.Sprintf(
|
||||||
|
"instances.InstanceMetadata() called: label %s missing from node. Was kubelet started without --cloud-provider=external?",
|
||||||
|
cloudproviderapi.AnnotationAlphaProvidedIPAddr),
|
||||||
|
node, klog.KRef("", node.Name))
|
||||||
|
|
||||||
return &cloudprovider.InstanceMetadata{}, nil
|
return &cloudprovider.InstanceMetadata{}, nil
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user