1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-04-24 07:15:02 +02:00

Document semi-automated server updates

This commit is contained in:
Evangelos Foutras 2021-08-23 21:43:39 +03:00
parent 5ff9037832
commit 006cdc0446
No known key found for this signature in database
GPG Key ID: 51E8B148A9999C34

View File

@ -128,6 +128,23 @@ The following steps should be used to update our managed servers:
* checkservices
* reboot
##### Semi-automated server updates (experimental)
For updating a lot of servers in a more unattended manner, the following
playbook can be used:
ansible-playbook playbooks/tasks/upgrade-servers.yml [-l SUBSET]
It runs `pacman -Syu` on the targeted hosts in batches and then reboots them.
If any server fails to reboot successfully, the rolling update stops and
further batches are cancelled. To display the packages updated on each host,
you can pass the `--diff` option to ansible-playbook.
Using this update method, `.pacnew` files are left unmerged which is OK for
most configuration files that are managed by Ansible. However, care must be
taken with updates that require manual intervention (e.g. major PostgreSQL
releases).
## Servers
This section has been moved to [docs/servers.md](docs/servers.md).