1
0
Fork 0

Add SOP for openQA system upgrades

This commit is contained in:
Al Bowles 2023-06-28 14:55:11 -05:00
parent 7c2c1ba146
commit d8a019d84a
No known key found for this signature in database
GPG Key ID: 9B42314A30F1A3D1
1 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,59 @@
---
title: 'SOP: openQA - System Upgrades'
---
This SOP details the necessary steps for performing a system upgrade on an openQA host.
{% include "contacts_top.md" %}
## Fedora
1. Verify current installation is fully upgraded
dnf upgrade --refresh
1. Install system upgrade plugin
dnf install dnf-plugin-system-upgrade
1. Download the upgrade packages for next version
dnf system-upgrade download --releasever=[newversion]
1. Reboot into offline upgrade mode
dnf system-upgrade reboot
1. Post-reboot cleanup
dnf system-upgrade clean
dnf clean packages
## Post-Upgrade Tasks
These steps may also be necessary in some (but not all) cases.
### Upgrade the PostgreSQL database
1. Install postgresql-upgrade package
dnf install postgresql-upgrade
1. Upgrade your postgres database
sudo -iu postgres
postgresql-setup --upgrade
### Re-apply Rocky branding
1. Obtain the [Ansible openQA deployment repository](https://git.resf.org/infrastructure/ansible-openqa-management)
1. Run the branding related tasks
ansible-playbook init-openqa-rocky-developer-host.yml -t branding
## References
https://docs.fedoraproject.org/en-US/quick-docs/dnf-system-upgrade/
https://www.makeuseof.com/how-to-upgrade-to-fedora-workstation-36/
{% include "content_bottom.md" %}