Skip to content

Commit 89542a7

Browse files
authored
Use higher tier ARM VM for integration testing (#4847)
ARM cores are lower performance, to make it equal to our AMD64 VMs we should use higher tier instances.
1 parent 0b99ccb commit 89542a7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

pkg/testing/ogc/supported.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var ogcSupported = []LayoutOS{
2828
Version: "22.04",
2929
},
3030
Provider: Google,
31-
InstanceSize: "e2-standard-2", // 2 amd64 cpus
31+
InstanceSize: "e2-standard-2", // 2 amd64 cpus, 8 GB RAM
3232
RunsOn: "ubuntu-2204-lts",
3333
Username: "ubuntu",
3434
RemotePath: "/home/ubuntu/agent",
@@ -41,7 +41,7 @@ var ogcSupported = []LayoutOS{
4141
Version: "20.04",
4242
},
4343
Provider: Google,
44-
InstanceSize: "e2-standard-2", // 2 amd64 cpus
44+
InstanceSize: "e2-standard-2", // 2 amd64 cpus, 8 GB RAM
4545
RunsOn: "ubuntu-2004-lts",
4646
Username: "ubuntu",
4747
RemotePath: "/home/ubuntu/agent",
@@ -54,7 +54,7 @@ var ogcSupported = []LayoutOS{
5454
Version: "22.04",
5555
},
5656
Provider: Google,
57-
InstanceSize: "t2a-standard-2", // 2 arm64 cpus
57+
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
5858
RunsOn: "ubuntu-2204-lts-arm64",
5959
Username: "ubuntu",
6060
RemotePath: "/home/ubuntu/agent",
@@ -67,7 +67,7 @@ var ogcSupported = []LayoutOS{
6767
Version: "20.04",
6868
},
6969
Provider: Google,
70-
InstanceSize: "t2a-standard-2", // 2 arm64 cpus
70+
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
7171
RunsOn: "ubuntu-2004-lts-arm64",
7272
Username: "ubuntu",
7373
RemotePath: "/home/ubuntu/agent",
@@ -80,7 +80,7 @@ var ogcSupported = []LayoutOS{
8080
Version: "8",
8181
},
8282
Provider: Google,
83-
InstanceSize: "e2-standard-2", // 2 amd64 cpus
83+
InstanceSize: "e2-standard-2", // 2 amd64 cpus, 8 GB RAM
8484
RunsOn: "rhel-8",
8585
Username: "rhel",
8686
RemotePath: "/home/rhel/agent",
@@ -92,7 +92,7 @@ var ogcSupported = []LayoutOS{
9292
Version: "2022",
9393
},
9494
Provider: Google,
95-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
95+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
9696
RunsOn: "windows-2022",
9797
Username: "windows",
9898
RemotePath: "C:\\Users\\windows\\agent",
@@ -104,7 +104,7 @@ var ogcSupported = []LayoutOS{
104104
Version: "2022-core",
105105
},
106106
Provider: Google,
107-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
107+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
108108
RunsOn: "windows-2022-core",
109109
Username: "windows",
110110
RemotePath: "C:\\Users\\windows\\agent",
@@ -116,7 +116,7 @@ var ogcSupported = []LayoutOS{
116116
Version: "2019",
117117
},
118118
Provider: Google,
119-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
119+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
120120
RunsOn: "windows-2019",
121121
Username: "windows",
122122
RemotePath: "C:\\Users\\windows\\agent",
@@ -128,7 +128,7 @@ var ogcSupported = []LayoutOS{
128128
Version: "2019-core",
129129
},
130130
Provider: Google,
131-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
131+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
132132
RunsOn: "windows-2019-core",
133133
Username: "windows",
134134
RemotePath: "C:\\Users\\windows\\agent",
@@ -140,7 +140,7 @@ var ogcSupported = []LayoutOS{
140140
Version: "2016",
141141
},
142142
Provider: Google,
143-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
143+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
144144
RunsOn: "windows-2016",
145145
Username: "windows",
146146
RemotePath: "C:\\Users\\windows\\agent",
@@ -152,7 +152,7 @@ var ogcSupported = []LayoutOS{
152152
Version: "2016-core",
153153
},
154154
Provider: Google,
155-
InstanceSize: "e2-standard-4", // 4 amd64 cpus
155+
InstanceSize: "e2-standard-4", // 4 amd64 cpus, 16 GB RAM
156156
RunsOn: "windows-2016-core",
157157
Username: "windows",
158158
RemotePath: "C:\\Users\\windows\\agent",

0 commit comments

Comments
 (0)