-
Notifications
You must be signed in to change notification settings - Fork 627
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
feat(runner): support Ubuntu 24.04 #4246
base: main
Are you sure you want to change the base?
Conversation
823afb9
to
7dcef0f
Compare
Additional change to the user data template to make the Ubuntu example work. |
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.
@bdellegrazie great to see support for ubuntu 24.04 is coming in. What is the status of the PR? How did you test the PR. Is the cahnge working as well for ubuntu 22.04
Just testing the setup on ubuntu 22.04, works all fine. Still curious if there are any side effects. Are you also aware we thinking about update the module to support ubuntu by default, and step away from Amazon. Interally we are already 1.5 year on Ubuntu (own ami). Would be great if we can add via a second PR support for arm as well. I have updated the examples, will push them asap. |
Getting the following error / warning in the log for ubuntu 24.0, however the runner gets healthy online and is being able run jobs.
|
I have pushed changes on the example dir to this branch |
In summary:
|
@npalm : |
f4ed638
to
987a159
Compare
@npalm I have responded to your questions, please let me know if you require any more information. |
@bdellegrazie will check later this week. |
987a159
to
3165305
Compare
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.
Thx, tested and works all nice, small remark on the docs.
On Ubuntu 24.04 there is another variable `ID_LIKE` that appears in the `/etc/os-release` file. This change fixes the regex match to only match ID and not ID_LIKE closes philips-labs#4245
2006c51
to
65b9267
Compare
* Switch to using the upstream deb archive for Docker * use awscli v2 * Provide a user-specific override for systemd * use machinectl to launch rootless docker
65b9267
to
410a7aa
Compare
@npalm I have made the change as requested - could you please re-review? |
On Ubuntu 24.04 there is another variable
ID_LIKE
that appears in the/etc/os-release
file. This change fixes the regex to only matchID
and notID_LIKE
closes #4245