diff --git a/pkg/cloudprovider/gce/gce.go b/pkg/cloudprovider/gce/gce.go index 8c2f84e576a..f1e17dfa1d3 100644 --- a/pkg/cloudprovider/gce/gce.go +++ b/pkg/cloudprovider/gce/gce.go @@ -333,7 +333,7 @@ func (gce *GCECloud) ExternalID(instance string) (string, error) { if err != nil { return "", err } - return string(inst.Id), nil + return strconv.FormatUint(inst.Id, 10), nil } // fqdnSuffix is hacky function to compute the delta between hostame and hostname -f.