infrastructure/updates.md

58 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2024-10-02 15:52:04 +02:00
# Updates
To update the infrastructure, do the following steps:
```bash
# Update inputs
nix flake update
# Check builds
nix build
# Push updates to git remote
git add flake.lock
git commit
git push
```
Deploy updates:
```bash
nix develop
# Deploy vms
deploy-qois .#lindberg-nextcloud .#lindberg-build
# Deploy fast physical hosts
deploy-qois .#lindberg
# Deploy slow physical hosts (maybe do individually)
2024-12-23 21:10:41 +01:00
deploy-qois --confirm-timeout 600 --activation-timeout 600 --targets .#stompert .#stompert
2024-10-02 15:52:04 +02:00
```
After deploying updates, verify that all services run as expected.
For kernel updates, it might be required to reboot machines, which can be done in parallel with e.g.:
```bash
pssh -l root -H lindberg-nextcloud.backplane.net.qo.is -H lindberg-build.backplane.net.qo.is reboot
```
2024-12-05 13:31:55 +01:00
## `systemVersion` upgrades
- Make sure to read through the nixpkgs changelog to catch configuration scheme changes,
successor applications or for the need for manual interventions.
- Pay special attention the applications listed below.
## Application Updates
2024-10-02 15:52:04 +02:00
Some applications have pinned versions to prevent problems due to accidental upgrades.
The version switch has to be done manually by switching the package used.
This includes the modules for:
- `nextcloud`
2024-12-05 13:31:55 +01:00
- `postgresql`, [→ Nixpkgs manual page](https://nixos.org/manual/nixos/stable/#module-services-postgres-upgrading)