The grappling hook for Proxmox backups.
Project description
Proxmox-grapple
The Python app that "hooks" into Proxmox.
This is a clone of vzdump-hook-script.pl that is written in Python, and that offers a lot more configurability.
Different phases of the vzdump
backup can be hooked into, and things can be run.
The app also logs script output in realtime -- useful when using a long-running process (like rclone
for example),
and you want to see progressive timestamping against its output.
Table of contents
Purpose and uses
Running binaries
Having hooks into each part of vzdump
backups is very useful, especially to detect failures (or success) of the
different backup phases.
For example, it can be used in concert with Healthchecks.io, Mailrise/Apprise, or other apps, to receive status notifications:
production:
job-start:
script:
- "curl -fsS -m 10 --retry 5 -o /dev/null https://your.healthchecks.server/ping/xxx/vzdump-backups/start"
job-abort:
script:
- "curl -fsS -m 10 --retry 5 -o /dev/null https://your.healthchecks.server/ping/xxx/vzdump-backups/fail"
backup-abort:
script:
- "curl -fsS -m 10 --retry 5 -o /dev/null https://your.healthchecks.server/ping/xxx/vzdump-backups/fail"
Maybe you'd like to offsite-sync your backups on job completion:
job-end:
script:
- "ssh some.host rclone sync --checkers 32 --transfers 16 --dscp cs1 --stats-log-level NOTICE --stats-unit=bits --stats=2m /mnt/pbs-backups remote.host:pbs-rsync"
- "curl -fsS -m 10 --retry 5 -o /dev/null https://your.healthchecks.server/ping/xxx/vzdump-backups"
Anything that can be run on the CLI, you can use here.
Running things via a shell
Instead of using script
, you can use shell
, and anything configured will be run through a shell. This is directly
equivalent to the shell
argument to Python's subprocess.Popen
.
What's the benefit here? To quote the Python documentation:
If shell is True, the specified command will be executed through the shell. This can be useful if you are using Python primarily for the enhanced control flow it offers over most system shells and still want convenient access to other shell features such as shell pipes, filename wildcards, environment variable expansion, and expansion of ~ to a user’s home directory.
The shell used is /bin/sh
.
⚠️ WARNING! Read Python's Security Considerations section before using
shell
!
Installation
The recommended way to install proxmox-grapple
is to use pipx.
After getting pipx
installed, simply run:
username@proxmox:~$ pipx install proxmox-grapple
Please don't use pip system-wide.
You can of course also install it using classic virtualenvs.
Once installed, you need to tell Proxmox (specifically vzdump
) to use the app. Edit /etc/vzdump.conf
and add or edit
the script
setting:
script: /home/username/.local/bin/proxmox-grapple
Configuration
Overview
proxmox-grapple
is configured with a YAML-style file. An example:
production:
job-end:
script:
- echo 'hi'
- sleep 1
- echo 'there'
- echo 'This is a test.'
backup-end:
extract:
enabled: false
source_directory: /tmp
destination_directory: /tmp
# exclude_storeids:
job-abort:
shell:
- echo 'your strange command' | tee some_logfile.txt
Location
The default location for the configuration is /etc/proxmox_grapple.yml
, or proxmox_grapple.yml
in the current
working directory, but this can also be specified on the commandline.
If a non-absolute path is given, Dynaconf will iterate upwards: it will look at each parent up to the root of the
system. For each visited folder, it will also try looking inside a /config
folder.
Configuration environments
It can also use different configuration settings based on arbitrary environment names (eg. production
, lab
, etc.) It
uses the Dynaconf Python project for configuration, so using environment variables to
choose the environment and any other configuration option is possible.
⚠️ The default environment is
production
For example, to choose a different configuration environment, set the environment variable ENV_FOR_DYNACONF=lab
:
root@proxmox:~# ENV_FOR_DYNACONF=lab proxmox-grapple --dump-config
Each top-level key should match the different vzdump
phases. The currently recognised phases are:
- job-init
- job-start
- job-end
- job-abort
- backup-start
- backup-end
- backup-abort
- log-end
- pre-stop
- pre-restart
- post-restart
⚠️ The extract argument is currently not tested, and should be treated as a proof-of-concept only.
Supported versions
proxmox-grapple
supports the following VE versions:
VE version | Debian version | Python version | VE EoL |
---|---|---|---|
8 | 12 (Bookworm) | 3.11 | TBA |
7 | 11 (Bullseye) | 3.9 | 2024-07 |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file proxmox_grapple-1.5.5.tar.gz
.
File metadata
- Download URL: proxmox_grapple-1.5.5.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92fe41ae594226a83e2ddf44f0505e9c9fbbdc8f045cfac6309d1dde3d0c15a6 |
|
MD5 | bcaaab218b507443424890e162c909fb |
|
BLAKE2b-256 | 29bb3eb04d524ae17020546efff6a63b02aa3b93100a5938e9cf3bea83938156 |
File details
Details for the file proxmox_grapple-1.5.5-py3-none-any.whl
.
File metadata
- Download URL: proxmox_grapple-1.5.5-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74fefea310d0e4f4988e4e40db8cacc67de039ee9d9fbd870357a3006512c7dd |
|
MD5 | 261b28158fd094018000da10db4edba9 |
|
BLAKE2b-256 | 797147772a3653a304e99e6a1c96565ee481f4a865a38729b3d9e9fc5f8f9361 |