Wizard: add RHEL 9 beta

Only exposed in preview.
This commit is contained in:
Sanne Raymaekers 2024-10-16 12:46:07 +02:00
parent 25f9fac059
commit cd70d1ff95
5 changed files with 25 additions and 5 deletions

View file

@ -50,6 +50,7 @@ export const OSBUILD_SERVICE_ARCHITECTURE_URL =
export const RHEL_8 = 'rhel-8';
export const RHEL_9 = 'rhel-9';
export const RHEL_9_BETA = 'rhel-9-beta';
export const CENTOS_9 = 'centos-9';
export const X86_64 = 'x86_64';
export const AARCH64 = 'aarch64';
@ -80,6 +81,7 @@ export const UNIT_GIB = 1024 ** 3;
export const RELEASES = new Map([
[RHEL_9, 'Red Hat Enterprise Linux (RHEL) 9'],
[RHEL_8, 'Red Hat Enterprise Linux (RHEL) 8'],
[RHEL_9_BETA, 'Red Hat Enterprise Linux (RHEL) 9 Beta'],
[CENTOS_9, 'CentOS Stream 9'],
]);