mirror of https://github.com/kubernetes/kops.git
fix gce disk dependency bug
This commit is contained in:
parent
ab36953f68
commit
02c7c917c1
|
@ -400,7 +400,7 @@ func (d *clusterDiscoveryGCE) listGCEDisks() ([]*ResourceTracker, error) {
|
|||
}
|
||||
|
||||
for _, u := range t.Users {
|
||||
tracker.blocked = append(tracker.blocked, typeInstance+":"+t.Zone+"/"+gce.LastComponent(u))
|
||||
tracker.blocked = append(tracker.blocked, typeInstance+":"+gce.LastComponent(t.Zone)+"/"+gce.LastComponent(u))
|
||||
}
|
||||
|
||||
glog.V(4).Infof("Found resource: %s", t.SelfLink)
|
||||
|
|
Loading…
Reference in New Issue