Skip to content
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

Fixes #38020 - Add RHEL 10 recommended repositories #11225

Merged
merged 1 commit into from
Nov 20, 2024
Merged
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
9 changes: 9 additions & 0 deletions webpack/redux/actions/RedHatRepositories/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ const repoTypeSearchQueryMap = {
};

const recommendedRepositoriesRHEL = [
'rhel-10-for-x86_64-baseos-rpms',
'rhel-10-for-x86_64-baseos-kickstart',
'rhel-10-for-x86_64-baseos-rpms',
'rhel-10-for-x86_64-baseos-kickstart',
'rhel-10-for-x86_64-appstream-rpms',
'rhel-10-for-x86_64-appstream-kickstart',
'rhel-10-for-x86_64-baseos-eus-rpms',
'rhel-10-for-x86_64-appstream-eus-rpms',
'rhel-9-for-x86_64-baseos-rpms',
'rhel-9-for-x86_64-baseos-kickstart',
'rhel-9-for-x86_64-appstream-rpms',
Expand All @@ -27,6 +35,7 @@ const recommendedRepositoriesRHEL = [
];

const recommendedRepositoriesSatTools = [
'satellite-client-6-for-rhel-10-x86_64-rpms',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ehelms do we know that the future Satellite client 6 repo for RHEL 10 will match this?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes - it should, as far as we know, follow the same pattern as RHEL 9.

'satellite-client-6-for-rhel-9-x86_64-rpms',
'satellite-client-6-for-rhel-8-x86_64-rpms',
'rhel-7-server-els-satellite-client-6-rpms',
Expand Down
Loading