Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cloudprovider/provider/azure/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ var imageReferences = map[providerconfig.OperatingSystem]compute.ImageReference{
// flatcar-container-linux-corevm-amd64 doesn't require a plan. For more info: https://www.flatcar.org/docs/latest/installing/cloud/azure/#corevm
Offer: to.StringPtr("flatcar-container-linux-corevm-amd64"),
Sku: to.StringPtr("stable"),
Version: to.StringPtr("4230.2.2"),
Version: to.StringPtr("4459.2.3"),
},
providerconfig.OperatingSystemRockyLinux: {
Publisher: to.StringPtr("resf"),
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/provisioning/all_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ func TestAzureProvisioningE2E(t *testing.T) {
}

// In-tree cloud provider is not supported from Kubernetes v1.30.
selector := Not(OsSelector("amzn2"))
selector := Not(OsSelector("amzn2", "rhel"))

// act
params := []string{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
location: "westeurope"
resourceGroup: "machine-controller-e2e"
vnetResourceGroup: ""
vmSize: "Standard_F2"
vmSize: "Standard_F2s_v2"
# optional disk size values in GB. If not set, the defaults for the vmSize will be used.
osDiskSize: << OS_DISK_SIZE >>
dataDiskSize: << DATA_DISK_SIZE >>
Expand All @@ -42,8 +42,8 @@ spec:
routeTableName: "machine-controller-e2e"
imageReference:
publisher: "Canonical"
offer: "0001-com-ubuntu-server-focal"
sku: "20_04-lts"
offer: "ubuntu-24_04-lts"
sku: "server"
version: "latest"
assignPublicIP: false
zones:
Expand Down