Change GCEPD Standard test disk to PD_STANDARD and 2GB

pull/8/head
David Zhu 2018-09-12 14:04:06 -07:00
parent 5155e1b5d9
commit f3238d238d
1 changed files with 1 additions and 1 deletions

View File

@ -721,7 +721,7 @@ func createPD(zone string) (string, error) {
}
tags := map[string]string{}
err = gceCloud.CreateDisk(pdName, gcecloud.DiskTypeSSD, zone, 10 /* sizeGb */, tags)
err = gceCloud.CreateDisk(pdName, gcecloud.DiskTypeStandard, zone, 2 /* sizeGb */, tags)
if err != nil {
return "", err
}