|
43 | 43 | serviceAccount = flag.String("service-account", "", "Service account to bring up instance with")
|
44 | 44 | vmNamePrefix = flag.String("vm-name-prefix", "gce-pd-csi-e2e", "VM name prefix")
|
45 | 45 | architecture = flag.String("arch", "amd64", "Architecture pd csi driver build on")
|
46 |
| - minCpuPlatform = flag.String("min-cpu-platform", "rome", "Minimum CPU architecture") |
47 |
| - mwMinCpuPlatform = flag.String("min-cpu-platform-mw", "sapphirerapids", "Minimum CPU architecture for multiwriter tests") |
| 46 | + minCpuPlatform = flag.String("min-cpu-platform", "AMD Rome", "Minimum CPU architecture") |
| 47 | + mwMinCpuPlatform = flag.String("min-cpu-platform-mw", "Intel Sapphire Rapids", "Minimum CPU architecture for multiwriter tests") |
48 | 48 | zones = flag.String("zones", "us-east4-a,us-east4-c", "Zones to run tests in. If there are multiple zones, separate each by comma")
|
49 | 49 | machineType = flag.String("machine-type", "n2d-standard-4", "Type of machine to provision instance on")
|
50 | 50 | imageURL = flag.String("image-url", "projects/ubuntu-os-cloud/global/images/family/ubuntu-minimal-2404-lts-amd64", "OS image url to get image from")
|
|
56 | 56 | // Multi-writer is only supported on M3, C3, and N4
|
57 | 57 | // https://cloud.google.com/compute/docs/disks/sharing-disks-between-vms#hd-multi-writer
|
58 | 58 | hdMachineType = flag.String("hyperdisk-machine-type", "c3-standard-4", "Type of machine to provision instance on")
|
59 |
| - hdMinCpuPlatform = flag.String("hyperdisk-min-cpu-platform", "sapphirerapids", "Minimum CPU architecture") |
| 59 | + hdMinCpuPlatform = flag.String("hyperdisk-min-cpu-platform", "Intel Sapphire Rapids", "Minimum CPU architecture") |
60 | 60 |
|
61 | 61 | testContexts = []*remote.TestContext{}
|
62 | 62 | hyperdiskTestContexts = []*remote.TestContext{}
|
|
0 commit comments