drop centos stream 8

CentOS Stream 8 is EOL, thus we should no longer offer it in the
service, because it can pose a security risk.

See https://blog.centos.org/2023/04/end-dates-are-coming-for-centos-stream-8-and-centos-linux-7/
This commit is contained in:
Ondřej Budai 2024-06-11 20:19:55 +02:00 committed by Klara Simickova
parent fa12ff7588
commit 642cb10036
9 changed files with 15 additions and 83 deletions

View file

@ -1,4 +1,4 @@
import { CENTOS_8, CENTOS_9, RHEL_8, RHEL_9 } from '../constants';
import { CENTOS_9, RHEL_8, RHEL_9 } from '../constants';
export const releaseToVersion = (release: string) => {
switch (release) {
@ -8,8 +8,6 @@ export const releaseToVersion = (release: string) => {
return '8';
case CENTOS_9:
return '9';
case CENTOS_8:
return '8';
default:
return '';
}