Creates and rotates snapshots of Hetzner cloud servers
Project description
Creating and rotating snapshots of Hetzner cloud servers
This script can perform the following tasks for selected servers of a Hetzner cloud project:
- Creating a new snapshot
- Shutting down the server before taking a snapshot and restarting it thereafter
- Rotating snapshots, retaining a limited number of quarter-hourly, hourly, daily, weekly, monthly, quarterly and yearly snapshots
- Generating names of new and rotated snapshots from templates
These tasks can be configured independently per server in a JSON configuration file.
Additional features:
- The secret API token can be read from the configuration file, from an environment variable or from
stdin - Log messages are sent to the console or to syslog
Content
- Generating an API token
- Installing this script
- Creating the configuration file
- Running the script natively
- Running the script in a container
- Licenses
Generating an API token
This document describes in detail how to generate an API token for your Hetzner cloud project. This script requires a token with "Read & Write" permission.
Guard your API token well since it provides unlimited read/write/delete access to all servers, snapshots, backups etc. of your Hetzner cloud project!
Installing this script
This script is available as a PyPI project. It can be installed by:
python3 -m pip install hetzner-snap-and-rotate
Creating the configuration file
The configuration file is expected to be a JSON document in UTF-8 encoding with the following structure:
{
"api-token": "...", // optional, can also be passed via the command line;
// see section "Command line options" below
"defaults": { // optional defaults, can be overriden per server
"create-snapshot": // create a new snapshot whenever the script is invoked
true,
"snapshot-timeout": // timeout (in s) after which snapshot creation is considered to have failed
120,
"snapshot-name": // template for the snapshot name; see section "Snapshot name templates" below
"{server}-{label[VERSION]}_{period_type}#{period_number}_{timestamp:%Y-%m-%d_%H:%M:%S}_by_{env[USER]}",
"shutdown-and-restart": // shut down the server before taking a snapshot
true, // and restart it afterwards
"shutdown-timeout": // timeout (in s) after which graceful shutdown is considered to have failed
15,
"allow-poweroff": // power off the server if it cannot be shut down gracefully
false,
"rotate": // rotate the existing snapshots and the new one, if any
true,
"quarter-hourly": // number of quarter-hourly snapshots to retain (intended for testing)
0,
"hourly": // number of hourly snapshots to retain
2,
"daily": // number of daily snapshots to retain
3,
"weekly": // number of weekly snapshots to retain
4,
"monthly": // number of monthly snapshots to retain
3,
"quarter-yearly": // number of quarter-yearly snapshots to retain
2,
"yearly": // number of yearly snapshots to retain
1
},
"servers": { // one entry per server
"server-1": { // Hetzner cloud server name
// uses only "defaults" settings
},
"server-2": { // another server; override a few defaults
"snapshot-name": "snapshot_{timestamp:%Y-%m-%d_%H:%M:%S}",
"snapshot-timeout": 300,
"shutdown-timeout": 30,
"allow-poweroff": true,
"hourly": 0,
"daily": 0,
"monthly": 6,
"quarter-yearly": 0,
"yearly": 0
}
}
}
Omitted defaults default to 0, false or '' except for:
snapshot-timeout: defaults to300shutdown-timeout: defaults to30
Please note that this is not valid JSON due to the comments. File resources/config-example.json contains the same example as a valid JSON file without comments.
Taking snapshots
This script takes a snapshot of every server in the configuration file
for which create-snapshot is true. Each of these snapshots also stores a copy
of the current server labels.
If taking the snapshot takes longer than snapshot-timeout then that operation
is considered to have failed.
If shutdown-and-restart is true and the server is running
then the script attempts to shut down the server gracefully before taking the snapshot.
If the server cannot be shut down gracefully within the shutdown-timeout then it
will be powered down instead if allow-poweroff is true, or else the snapshot operation will fail.
If the server was running before taking the snapshot then it is restarted afterwards.
Rotating snapshots
This script rotates the snapshots of every server in the configuration file
for which rotate-snapshots is true.
"Rotating" means that existing snapshots will be renamed
according to snapshot-name, or will be deleted if they
are no longer contained in any of the configured quarter-hourly, hourly, ... yearly
periods. Those settings determine for how many such periods the snapshots will be retained.
New snapshots that are not yet contained in any rotation period will be renamed but not deleted.
Snapshots that have been protected are neither renamed nor deleted during rotation. Nevertheless, they are taken into account in the rotation process.
Rotating snapshots is controlled by the following rules:
-
Rotation period types (
quarter-hourly,hourly, ...yearly) that were set to zero are ignored. -
Periods are counted backwards from the present towards the past.
-
The first period is the shortest configured period that immediately precedes the instant of rotation.
-
Other periods immediately precede the next shorter periods without gaps. If, for example, the rotation periods were set to
"daily": 3, "monthly": 2, "yearly": 1then they would be arranged along the timeline like this if the latest snapshots had been taken on Sep 3, 2024 at 06:00 and 12:30:In this example,
dailyperiods become aligned so that they immediately precede the snapshot instant;monthlyperiods become adjacent todaily, andyearlybecomes adjacent tomonthly, regardless of month and year boundaries. -
If a period contains multiple snapshots then only the oldest one will be retained for that period.
-
All snapshots in the
latestinterval will be retained. -
New and rotated snapshots are (re)named according to the template
snapshot-name. This allows the server name and labels, the period, the snapshot timestamp and environment variables to become part of the snapshot name.
See section Snapshot name templates below for details.
Snapshot name templates
snapshot-name must be a string and may contain Python format strings.
Snapshot names should be unique but this is not a requirement.
The following field names are available for formatting:
| Field name | Type | Rendered as |
|---|---|---|
server |
str |
Server name, same as server in the configuration file |
timestamp |
datetime.datetime |
Creation instant of the snapshot (not changed by rotation), expressed in the timezone of the system running this script. datetime-specific formatting may be used for this field. |
label |
dict[str] |
Value of a server label at the creation instant of the snapshot (not changed by rotation), may be referred to as e.g. label[VERSION] |
period_type |
str |
Type of period: quarter-hourly, hourly, ... yearly, or latest for new snapshots that have not been rotated yet |
period_number |
int |
Rotation number of the period: 1 = latest, 2 = next to latest and so on; also applies to latest snapshots |
env |
dict[str] |
Value of an environment variable at the creation or rotation instant of the snapshot, may be referred to as e.g. env[USER] |
Running the script natively
python3 -m hetzner_snap_and_rotate [options ...]
Command line options
| Option | Description |
|---|---|
--config config_file-c config_file |
Read the configuration from config_file. Default: config.json |
--api-token-from env_var-t env_var |
Read the API token from environment variable env_var, or read it from stdin if '-' is specified. Default: get the API token from config_file. |
--facility syslog_facility-f syslog_facility |
Send the log messages to syslog_facility (SYSLOG, USER, DAEMON, CRON, etc.). Default: send log messages to stdout. |
--priority pri-p pri |
Log only messages up to syslog priority pri (ERR, WARNING, NOTICE, INFO, DEBUG, or OFF to disable logging). Default: NOTICE. |
--dry-run-n |
Perform a trial run with no changes made. This requires only an API token with "Read" permission. |
--version-v |
Display the version number and exit. |
--help-h |
Display a help message and exit. |
Passing the API token
The API token provides complete control over your Hetzner cloud project, therefore it must be protected against unauthorized access. The following methods are available for passing the API token to the script:
- Inlcuding it as
api-tokenin the configuration file. The configuration file then must be protected adequately. - Passing it via an environent variable and specifying the variable name on the command line as
api-token-from. - Piping it to the script through
stdinand specifyingapi-token-from -on the command line.
Error handling
Snapshot-taking and rotation operations are isolated from each other with regard to failure. If an operation fails, then this will not affect further operations on the same and on other servers. Global errors (such as network or authentication failure) still affect multiple or all operations.
The script terminates with return code 0 if all operations succeeded, or with return code 1 if there was any failure.
Creating and rotating snapshots in a cron job
As a cron job, this script should run once per the shortest period for which snapshots are to be retained.
If, for example, the shortest retention period has been set to daily then the script should run daily.
If the script is run more frequently then multiple latest snapshots will be preserved.
Running the script in a container
This image on Docker Hub runs the script
in a Docker or Podman container
(for Podman, substitute podman for docker in the following commands):
docker run [Docker options] undecaf/hetzner-snap-and-rotate:latest [script command line options]
The same command line options are available as for the native script.
Passing the configuration file to the container
The configuration file needs to be prepared on the host. It can be passed to the container in various ways:
-
As a bind mount, e.g.
docker run --mount type=bind,source=/path/to/your/config.json,target=/config.json [other Docker options] undecaf/hetzner-snap-and-rotate:latest [script command line options]
-
As a secret; this requires Podman or Docker swarm.
First, your configuration file needs to be saved as a secret (e.g. calledconfig_json):docker secret create config_json /path/to/your/config.json
That secret becomes part of your Docker/Podman configuration and then can be passed to the container:
docker run --secret=config_json,target=/config.json [other Docker options] undecaf/hetzner-snap-and-rotate:latest [script command line options]
Environment variables
Environment variables referenced in your snapshot name templates must be
passed to the container as --env options, e.g.
docker run --env USER=your_username [other Docker options] undecaf/hetzner-snap-and-rotate:latest [script command line options]
Examples
Display the script version and exit:
# does not require a configuration file
docker run --rm undecaf/hetzner-snap-and-rotate:latest --version
Dry run with the API token in the configuration file, log priority DEBUG:
# option --tty/-t displays log output in real time
docker run \
--rm \
--tty \
--mount type=bind,source=/path/to/your/config.json,target=/config.json \
undecaf/hetzner-snap-and-rotate:latest --dry-run --priority DEBUG
Live run with the API token in the configuration file:
# option --tty/-t displays log output in real time
docker run \
--rm \
--tty \
--mount type=bind,source=/path/to/your/config.json,target=/config.json \
undecaf/hetzner-snap-and-rotate:latest
Passing the API token through stdin:
# requires option --interactive/-i, adding --tty/-t would display the API token :-(
cat /your/api/token/file | docker run \
--rm \
--interactive \
--mount type=bind,source=/path/to/your/config.json,target=/config.json \
undecaf/hetzner-snap-and-rotate:latest --api-token-from -
Licenses
Software: MIT
Documentation: CC-BY-SA 4.0
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hetzner_snap_and_rotate-1.2.6.tar.gz.
File metadata
- Download URL: hetzner_snap_and_rotate-1.2.6.tar.gz
- Upload date:
- Size: 68.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02e22f629230cd0932171379ec0a9680b9b1532e59ea1a30a167ad34003c6492
|
|
| MD5 |
73fc8cf98b72f84ef8d7250292636976
|
|
| BLAKE2b-256 |
b31a146791d82b3580446624686f1503f41c2c9c8d3450630065f5c0c4ff8894
|
Provenance
The following attestation bundles were made for hetzner_snap_and_rotate-1.2.6.tar.gz:
Publisher:
publish.yml on undecaf/hetzner-snap-and-rotate
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hetzner_snap_and_rotate-1.2.6.tar.gz -
Subject digest:
02e22f629230cd0932171379ec0a9680b9b1532e59ea1a30a167ad34003c6492 - Sigstore transparency entry: 332573823
- Sigstore integration time:
-
Permalink:
undecaf/hetzner-snap-and-rotate@ce1179c62248c0f2a19a4daf5acda524eb42d6ba -
Branch / Tag:
refs/tags/v1.2.6 - Owner: https://github.com/undecaf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ce1179c62248c0f2a19a4daf5acda524eb42d6ba -
Trigger Event:
push
-
Statement type:
File details
Details for the file hetzner_snap_and_rotate-1.2.6-py3-none-any.whl.
File metadata
- Download URL: hetzner_snap_and_rotate-1.2.6-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fb51a9bdb2a5b3b68a094688268e3dae89ec44a40cdb3c8214065063323a75a
|
|
| MD5 |
381bd492c34bffbb340740b030ca4cfc
|
|
| BLAKE2b-256 |
41d7a195762c755bb6cfe91a800112c0ffbb4a9cee87fa3c5cc325b8510e9081
|
Provenance
The following attestation bundles were made for hetzner_snap_and_rotate-1.2.6-py3-none-any.whl:
Publisher:
publish.yml on undecaf/hetzner-snap-and-rotate
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hetzner_snap_and_rotate-1.2.6-py3-none-any.whl -
Subject digest:
7fb51a9bdb2a5b3b68a094688268e3dae89ec44a40cdb3c8214065063323a75a - Sigstore transparency entry: 332573861
- Sigstore integration time:
-
Permalink:
undecaf/hetzner-snap-and-rotate@ce1179c62248c0f2a19a4daf5acda524eb42d6ba -
Branch / Tag:
refs/tags/v1.2.6 - Owner: https://github.com/undecaf
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ce1179c62248c0f2a19a4daf5acda524eb42d6ba -
Trigger Event:
push
-
Statement type: