-
Notifications
You must be signed in to change notification settings - Fork 1
feat: support Ubuntu 24.04 #18
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
Changes from all commits
b88c60d
de585dc
a1e92cd
1068559
10b8986
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,26 @@ | ||
| --- | ||
| dependency: | ||
| name: galaxy | ||
| driver: | ||
| name: docker | ||
| platforms: | ||
| - &instance | ||
| name: instance-r | ||
| image: "geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2004}-ansible:latest" | ||
| command: ${MOLECULE_DOCKER_COMMAND:-""} | ||
| volumes: | ||
| - /sys/fs/cgroup:/sys/fs/cgroup:ro | ||
| capabilities: | ||
| - SYS_ADMIN | ||
| pre_build_image: true | ||
| platform: linux/amd64 | ||
| - <<: *instance | ||
| name: instance-r-rh | ||
| image: "registry.access.redhat.com/${MOLECULE_DISTRO:-ubi9}/ubi-init" | ||
| command: "/usr/sbin/init" | ||
| volumes: | ||
| - /sys/fs/cgroup:/sys/fs/cgroup:rw | ||
| privileged: true | ||
| cgroupns_mode: host | ||
| provisioner: | ||
| name: ansible | ||
| playbooks: | ||
| prepare: prepare.yml | ||
| converge: converge.yml | ||
| verify: verify.yml | ||
| dependency: | ||
| name: galaxy | ||
| driver: | ||
| name: docker | ||
| platforms: | ||
| - &instance | ||
| name: instance-r | ||
| image: "geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2004}-ansible:latest" | ||
| command: ${MOLECULE_DOCKER_COMMAND:-""} | ||
| volumes: | ||
| - /sys/fs/cgroup:/sys/fs/cgroup:rw | ||
| privileged: true | ||
| cgroupns_mode: host | ||
| pre_build_image: true | ||
| platform: linux/amd64 | ||
| - <<: *instance | ||
| name: instance-r-rh | ||
| image: "registry.access.redhat.com/${MOLECULE_DISTRO:-ubi8}/ubi-init" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why reverting test to rhel8?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I probably reverted that by accident, but similarly to this #18 (comment) - In CI we run the tests against both releases, so the default here is not so important |
||
| command: "/usr/sbin/init" | ||
| provisioner: | ||
| name: ansible | ||
| playbooks: | ||
| prepare: prepare.yml | ||
| converge: converge.yml | ||
| verify: verify.yml | ||
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.
are we keeping test with ubuntu2004?
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 tests in CI are run for 20.04, 22.04 and 24.04. I think it doesn't matter that much what's the default here. When testing changes locally I typically run the tests against the newest and the oldest Ubuntu release