Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions os_builders/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added new builders for Rocky 8 and 9 AQ images. [#148](https://github.com/stfc/cloud-image-builders/pull/148)

### Changed:
- Updated Ansible version for building. [#144](https://github.com/stfc/cloud-image-builders/pull/144)
- Created separate requirements file for RL8 image builds. [#153](https://github.com/stfc/cloud-image-builders/pull/153)

### Fixed:
- Ubuntu 22 stuck at reboot when building image. [#153](https://github.com/stfc/cloud-image-builders/pull/153)

## [0.1.0]

Expand Down
1 change: 1 addition & 0 deletions os_builders/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ The pipeline consists of the following steps:
cd cloud-image-builders/os_builders

pip install -r requirements.txt
# If you are building the RL8 image use requirements-rl8.txt

ansible-playbook prep_builder.yml
```
Expand Down
4 changes: 4 additions & 0 deletions os_builders/requirements-rl8.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ansible==9.13.0
ansible-core==2.16.16
# The most compatible OpenStack CLI version with OpenStack Yoga
python-openstackclient==5.8.0
4 changes: 1 addition & 3 deletions os_builders/roles/tidy_image/tasks/reboot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
- name: Reboot machine
ansible.builtin.reboot:
reboot_command: "shutdown -r"
post_reboot_delay: 30
connect_timeout: 3600
pre_reboot_delay: 4
become: true