@@ -44,38 +44,38 @@ func (c *Cloud) ProviderID() kops.CloudProviderID {
44
44
return kops .CloudProviderMetal
45
45
}
46
46
func (c * Cloud ) DNS () (dnsprovider.Interface , error ) {
47
- return nil , fmt .Errorf ("method not implemented" )
47
+ return nil , fmt .Errorf ("method metal.Cloud::DNS not implemented" )
48
48
}
49
49
50
50
// FindVPCInfo looks up the specified VPC by id, returning info if found, otherwise (nil, nil).
51
51
func (c * Cloud ) FindVPCInfo (id string ) (* fi.VPCInfo , error ) {
52
- return nil , fmt .Errorf ("method not implemented" )
52
+ return nil , fmt .Errorf ("method metal.Cloud::FindVPCInfo not implemented" )
53
53
}
54
54
55
55
// DeleteInstance deletes a cloud instance.
56
56
func (c * Cloud ) DeleteInstance (instance * cloudinstances.CloudInstance ) error {
57
- return fmt .Errorf ("method not implemented" )
57
+ return fmt .Errorf ("method metal.Cloud::DeleteInstance not implemented" )
58
58
}
59
59
60
60
// // DeregisterInstance drains a cloud instance and loadbalancers.
61
61
func (c * Cloud ) DeregisterInstance (instance * cloudinstances.CloudInstance ) error {
62
- return fmt .Errorf ("method not implemented" )
62
+ return fmt .Errorf ("method metal.Cloud::DeregisterInstance not implemented" )
63
63
}
64
64
65
65
// DeleteGroup deletes the cloud resources that make up a CloudInstanceGroup, including the instances.
66
66
func (c * Cloud ) DeleteGroup (group * cloudinstances.CloudInstanceGroup ) error {
67
- return fmt .Errorf ("method not implemented" )
67
+ return fmt .Errorf ("method metal.Cloud::DeleteGroup not implemented" )
68
68
}
69
69
70
70
// DetachInstance causes a cloud instance to no longer be counted against the group's size limits.
71
71
func (c * Cloud ) DetachInstance (instance * cloudinstances.CloudInstance ) error {
72
- return fmt .Errorf ("method not implemented" )
72
+ return fmt .Errorf ("method metal.Cloud::DetachInstance not implemented" )
73
73
}
74
74
75
75
// GetCloudGroups returns a map of cloud instances that back a kops cluster.
76
76
// Detached instances must be returned in the NeedUpdate slice.
77
77
func (c * Cloud ) GetCloudGroups (cluster * kops.Cluster , instancegroups []* kops.InstanceGroup , warnUnmatched bool , nodes []v1.Node ) (map [string ]* cloudinstances.CloudInstanceGroup , error ) {
78
- return nil , fmt .Errorf ("method not implemented" )
78
+ return nil , fmt .Errorf ("method metal.Cloud::GetCloudGroups not implemented" )
79
79
}
80
80
81
81
// Region returns the cloud region bound to the cloud instance.
0 commit comments