src: add RHEL 8.9
This commit is contained in:
parent
344bdb6773
commit
f1141ec698
6 changed files with 6 additions and 3 deletions
|
|
@ -664,6 +664,7 @@ components:
|
|||
- rhel-86
|
||||
- rhel-87
|
||||
- rhel-88
|
||||
- rhel-89
|
||||
- rhel-9
|
||||
- rhel-9-nightly
|
||||
- rhel-90
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ const Release = ({ release }: ReleaseProps) => {
|
|||
'rhel-86': 'RHEL 8.6',
|
||||
'rhel-87': 'RHEL 8.7',
|
||||
'rhel-88': 'RHEL 8.8',
|
||||
'rhel-89': 'RHEL 8.9',
|
||||
'rhel-9': 'RHEL 9',
|
||||
'rhel-9-nightly': 'RHEL 9',
|
||||
'rhel-90': 'RHEL 9.0',
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ export const RHSM_API = '/api/rhsm/v2';
|
|||
export const EDGE_API = '/api/edge/v1';
|
||||
export const CONTENT_SOURCES_API = '/api/content-sources/v1';
|
||||
export const PROVISIONING_API = '/api/provisioning/v1';
|
||||
export const RHEL_8 = 'rhel-88';
|
||||
export const RHEL_8 = 'rhel-89';
|
||||
export const RHEL_9 = 'rhel-93';
|
||||
export const CENTOS_8 = 'centos-8';
|
||||
export const CENTOS_9 = 'centos-9';
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ export type Distributions =
|
|||
| "rhel-86"
|
||||
| "rhel-87"
|
||||
| "rhel-88"
|
||||
| "rhel-89"
|
||||
| "rhel-9"
|
||||
| "rhel-9-nightly"
|
||||
| "rhel-90"
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ describe('Images Table', () => {
|
|||
rows.forEach(async (row, index) => {
|
||||
expect(row.cells[1]).toHaveTextContent(imageNameValues[index]);
|
||||
expect(row.cells[2]).toHaveTextContent('Apr 27, 2021');
|
||||
expect(row.cells[3]).toHaveTextContent('RHEL 8.8');
|
||||
expect(row.cells[3]).toHaveTextContent('RHEL 8.9');
|
||||
});
|
||||
|
||||
// TODO Test remaining table content.
|
||||
|
|
|
|||
2
src/test/fixtures/architectures.ts
vendored
2
src/test/fixtures/architectures.ts
vendored
|
|
@ -40,7 +40,7 @@ export const mockArchitecturesByDistro = (
|
|||
],
|
||||
},
|
||||
],
|
||||
'rhel-88': [
|
||||
'rhel-89': [
|
||||
{
|
||||
arch: 'x86_64',
|
||||
image_types: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue