Skip to content

Commit ffe130f

Browse files
committed
tweak to make it rebuild
1 parent 1fba5ad commit ffe130f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkg/installer/custominstallconfig_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ func makeInstallConfig() *installconfig.InstallConfig {
156156
OSImage: azuretypes.OSImage{
157157
Publisher: "azureopenshift",
158158
Offer: "aro4",
159-
SKU: "aro_416",
160-
Version: "416.00.20240517",
159+
SKU: "aro_417",
160+
Version: "417.00.20240517",
161161
Plan: azuretypes.ImageNoPurchasePlan,
162162
},
163163
},
@@ -276,7 +276,7 @@ func makeInstallConfig() *installconfig.InstallConfig {
276276

277277
func makeImage() *releaseimage.Image {
278278
return &releaseimage.Image{
279-
PullSpec: "quay.io/openshift-release-dev/ocp-release:4.16.0-x86_64",
279+
PullSpec: "quay.io/openshift-release-dev/ocp-release:4.17.0-x86_64",
280280
}
281281
}
282282

@@ -291,12 +291,12 @@ func mockClientCalls(client *mock.MockAPI) {
291291
"CPUArchitectureType": "x64",
292292
}, nil).
293293
AnyTimes()
294-
client.EXPECT().GetMarketplaceImage(gomock.Any(), "centralus", "azureopenshift", "aro4", "aro_416", "416.00.20240517").
294+
client.EXPECT().GetMarketplaceImage(gomock.Any(), "centralus", "azureopenshift", "aro4", "aro_417", "417.00.20240517").
295295
Return(compute.VirtualMachineImage{
296296
VirtualMachineImageProperties: &compute.VirtualMachineImageProperties{
297297
HyperVGeneration: compute.HyperVGenerationTypesV2,
298298
},
299-
Name: to.StringPtr("aro_416"),
299+
Name: to.StringPtr("aro_417"),
300300
Location: to.StringPtr("centralus"),
301301
}, nil).
302302
AnyTimes()

0 commit comments

Comments
 (0)