Expand the root disk size from 35 GB to 50 GB and implement log size limits for Docker containers. Add details about the new monitoring dashboard for homelab services, including deployment instructions and access URL. Ensure clarity on log rotation policies and risks associated with disk space usage.
Systemd unit-файлы для бэкапов и мониторинга
Копировать на хост Proxmox в /etc/systemd/system/:
cp *.service *.timer /etc/systemd/system/
systemctl daemon-reload
Включить все таймеры:
for t in backup-*.timer notify-vzdump-success.timer verify-*.timer backup-watchdog-timers.timer backup-healthcheck-ping.timer; do
systemctl enable --now "$t" 2>/dev/null || true
done
Проверка:
systemctl list-timers --all | grep backup
Перед миграцией с cron — отключить задания в crontab (crontab -e).