-
Notifications
You must be signed in to change notification settings - Fork 115
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
Use custom content for RHEL10 until SAT-29721 is resolved #17369
base: master
Are you sure you want to change the base?
Use custom content for RHEL10 until SAT-29721 is resolved #17369
Conversation
bdb827a
to
e7be5cb
Compare
|
PRT Result
|
|
PRT Result
|
57c113b
to
e59c6de
Compare
Can you please rebase the PR and run PRT. This should work with latest beta repos. |
17b6edd
to
272f48a
Compare
272f48a
to
22ee3ff
Compare
|
PRT Result
|
|
PRT Result
|
|
PRT Result
|
Signed-off-by: Gaurav Talreja <[email protected]>
22ee3ff
to
61b99d6
Compare
|
PRT Result
|
61b99d6
to
0e38cde
Compare
|
PRT Result
|
0e38cde
to
90a309e
Compare
Signed-off-by: Gaurav Talreja <[email protected]>
90a309e
to
cb47aff
Compare
PRT passed with Jenkins MR of satellite-jenkins MR#1613 |
@@ -105,7 +118,7 @@ def module_provisioning_rhel_content( | |||
rhel_xy = Version( | |||
constants.REPOS['kickstart'][f'rhel{rhel_ver}']['version'] | |||
if rhel_ver == 7 | |||
else constants.REPOS['kickstart'][f'rhel{rhel_ver}_bos_beta']['version'] | |||
else '10.1' # EL10 pre-release version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of hardcoding 10.1
, keep it as constant and use the constant here. Good coding practice.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a good coding practice suggestion.
Problem Statement
With RHEL10 beta repos, provisioning fails because of SAT-29721, and it will be fixed when it becomes GA
Solution
Use custom content for RHEL10 until SAT-29721 is resolved
Related Issues