CreateImageWizard: RHEL 9

Expose rhel-90, it has reached GA.
This commit is contained in:
Sanne Raymaekers 2022-05-18 11:36:06 +02:00
parent 40f7be170c
commit cfaa8a463d
7 changed files with 31 additions and 9 deletions

View file

@ -2,11 +2,12 @@ import React from 'react';
import PropTypes from 'prop-types';
import { Label } from '@patternfly/react-core';
import { RHEL_8 } from '../../constants.js';
import { RHEL_8, RHEL_9 } from '../../constants.js';
const Release = (props) => {
const releaseOptions = {
[RHEL_8]: 'RHEL 8',
[RHEL_9]: 'RHEL 9',
'centos-8': 'CentOS Stream 8',
'centos-9': 'CentOS Stream 9',
};