-
Notifications
You must be signed in to change notification settings - Fork 51
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
Allow for Jenkins EL9 node #1892
Conversation
4a11b5e
to
75d9ff1
Compare
Pulled the git-annex standalone change to #1900 in order to allow EL8 based nodes to be used for all workloads similar to EL7 today. EL9 has a big caveat with NodeJS that complicates things, and while we can/should merge this I'd prefer to pursue moving to EL8 for nodes rather than splitting their usage and wasting resources. |
can you elaborate on the caveat? EL8 is EOL next year, so it would be cool if we would be able to deploy EL9 directly or at least have a description of the issue we need to solve before that. or is it just the fact that there is only 16+ in the repos? |
It's a couple items:
|
This sounds like blockers to deploy Foreman on EL9 too? |
Correct, and it is known.
…On Mon, Sep 11, 2023, 2:42 PM Evgeni Golov ***@***.***> wrote:
This sounds like blockers to deploy Foreman on EL9 too?
—
Reply to this email directly, view it on GitHub
<#1892 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACHT442TAHRWTKJL74UFNLXZ5LS5ANCNFSM6AAAAAA4RV7WFA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
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.
I took your PR and created #1929 as an alternative which I think is a bit cleaner.
} | ||
|
||
# nodejs/npm for JavaScript tests | ||
if $facts['os']['family'] == 'RedHat' { | ||
if $facts['os']['family'] == 'RedHat' and !$is_el9 { |
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.
The nodejs module downloads it from https://nodejs.org/download/release/v12.22.12/ and since daf7beb this works:
if $facts['os']['family'] == 'RedHat' and !$is_el9 { | |
if $facts['os']['family'] == 'RedHat' { |
No description provided.