Skip to content

Commit 551318c

Browse files
authored
Merge pull request kubernetes-sigs#41 from chuckha/provider-id
Fixup the provider id
2 parents fa2316e + 4daf71f commit 551318c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actuators/machine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ func (m *Machine) save(oldMachine, newMachine *clusterv1.Machine, noderef *apico
238238
}
239239

240240
func providerID(name string) string {
241-
return fmt.Sprintf("docker://%s", name)
241+
return fmt.Sprintf("docker:////%s", name)
242242
}
243243

244244
// CAPIroleToKindRole converts a CAPI role to kind role

0 commit comments

Comments
 (0)