Skip to content

WIP: Support for Rocky Linux 9 #1933

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions pkg/cloudprovider/provider/aws/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ var (
amiFilters = map[providerconfig.OperatingSystem]map[awstypes.CPUArchitecture]amiFilter{
providerconfig.OperatingSystemRockyLinux: {
awstypes.CPUArchitectureX86_64: {
description: "*Rocky-8-EC2-*.x86_64",
description: "*Rocky-9-EC2-*.x86_64",
// The AWS marketplace ID from Rocky Linux Community Platform Engineering (CPE)
owner: "792107900819",
},
awstypes.CPUArchitectureARM64: {
description: "*Rocky-8-EC2-*.aarch64",
description: "*Rocky-9-EC2-*.aarch64",
// The AWS marketplace ID from Rocky Linux Community Platform Engineering (CPE)
owner: "792107900819",
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloudprovider/provider/digitalocean/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func getSlugForOS(os providerconfig.OperatingSystem) (string, error) {
case providerconfig.OperatingSystemUbuntu:
return "ubuntu-24-04-x64", nil
case providerconfig.OperatingSystemRockyLinux:
return "rockylinux-8-x64", nil
return "rockylinux-9-x64", nil
}
return "", providerconfig.ErrOSNotSupported
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloudprovider/provider/equinixmetal/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func getNameForOS(os providerconfig.OperatingSystem) (string, error) {
case providerconfig.OperatingSystemFlatcar:
return "flatcar_stable", nil
case providerconfig.OperatingSystemRockyLinux:
return "rocky_8", nil
return "rocky_9", nil
}
return "", providerconfig.ErrOSNotSupported
}
Expand Down