This project has been archived by its maintainers, and is no longer receiving any updates.
Hamstercage – Config Management for Pets, not Cattle
Overview
If you work professionally with many machines and config, you like will have heard "cattle, not pets" as the philosophy for managing machines, VMs, etc., and you're likely using Ansible, Puppet, SaltStack, or another configuration management system that allows you to express configuration as code. This approach works well when you have many targets that share many traits, you have a lab where you can test configuration changes, and you have full time staff to take care of it all.
However, if you're running a handful of boxes or VPSes for a small organisation, or just for yourself and your friends and family, your workflow might actually look quite different: you make changes to the live configuration of your web server, for example, and after you're satisfied that everything is working, you might want to save the key bits of config somewhere safe, so you can refer back to it later. Setting up any of the heavy tools can be cumbersome, especially for making quick provisional changes: in the worstcase scenario, you modify a file in the source repo, commit it, then run the tool to apply it to your machine.
Hamstercage aims to make it easy to save and restore your config by using a Git repo, by editing the config files directly on the target machine, then saving the new config into the repository. In other words: pets, not cattle.
Hamstercage is geared towards managing config files as complete files. To keep things simple, there are no facilities to update individual lines in files, update system configuration settings through some API, or other more complex logic. Hamstercage can be used to manage shell script files or binaries for custom tools, however.
To allow one repository to be used for multiple targets, sets of files can be managed. Each set is called a tag. You can select the tags to use each time you run Hamstercage. The manifest also contains a list of hostnames and the tags to use for each. This makes it possible to run the same Hamstercage command on multiple hosts, and have files be applied to each according to their respective purpose.
Installation and Usage
See Hamstercage Documentation and the Hamstercage Homepage.
Quick Start
pip install hamstercage
mkdir hamsters
cd hamsters
git init
hamstercage init
hamstercage -t all add /etc/profile
git add .
git commit
Developing Hamstercage
Installing Development Snapshots
The GitHub workflow automatically builds a snapshot version on each push to the main branch. To work with these snapshots, install them from Test PyPI:
sudo pip install --upgrade --index-url https://test.pypi.org/simple/ hamstercage
Poetry For Dependency Management and Building
The project uses Poetry, which you should install locally. After installing Poetry, you can install all necessary dependencies:
poetry install
Source Code Formatting With Black
The GitHub workflow checks source code formatting with black.
To format all code automatically:
poetry run black .
When working on the code, you might want to configure your IDE to automatically reformat the code with black.
Release files for hamstercage 0.2.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| hamstercage-0.2.5.tar.gz | 23.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hamstercage-0.2.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 49.9 kB
Release files / hamstercage-0.2.5.tar.gz
| Download URL | hamstercage-0.2.5.tar.gz |
|---|---|
| Size | 23.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7af3025112eb1d40dfa187870e21614fd21d1cf1c20a2e64443e844219470073
|
|
BLAKE2b-256 checksum How to use checksums |
b47070c2e26ea25d0de5a66839635023e2c57d2276fdcc5bad561cd9b3c93b81
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.8.3 CPython/3.8.18 Linux/5.15.0-1071-azure
|
Release files / hamstercage-0.2.5-py3-none-any.whl
| Download URL | hamstercage-0.2.5-py3-none-any.whl |
|---|---|
| Size | 26.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
346f0d280a4fef35b3d6bbec1d423bbcdf9addf252ea32240107f49c6ef510d5
|
|
BLAKE2b-256 checksum How to use checksums |
679937682c5ca9b2a25bfdae91f6476a6a74aeb6c068fe2167ac01f2d125bf19
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.8.3 CPython/3.8.18 Linux/5.15.0-1071-azure
|