.github | ||
integration | ||
molecule_hetznercloud | ||
.drone.yml | ||
.envrc.sample | ||
.gitignore | ||
.pre-commit-config.yaml | ||
.yamllint.yml | ||
CHANGELOG.md | ||
LICENSE | ||
Makefile | ||
pyproject.toml | ||
pytest.ini | ||
README.md | ||
setup.cfg | ||
setup.py | ||
tox.ini |
Molecule Hetzner Cloud Plugin
A Hetzner Cloud plugin for Molecule.
This plugin allows you to do molecule init role myrolename -d hetznercloud
and have Molecule provision on-demand Hetzner Cloud VPSes of your choice for
your integration testing. New VPSes will be automagically created and
provisioned on each molecule test
run, SSH keys are generated and managed
internally and all resources are cleaned up regardless of whether the role
under test succeeds or fails.
Support
If you use this plugin in a commercial setting or you find it personally useful, please support my maintenance work financially through my Liberapay profile or through my Github Sponsor profile. I do not receive any financial support from RedHat or Hetzner Cloud for this work.
Install
$ pip install molecule-hetznercloud
Upgrade
Please see the CHANGELOG.md for migration guides.
$ pip install --upgrade molecule-hetznercloud
Usage
You need to expose a HCLOUD_TOKEN
environment variable in your environment.
Find out more about how to get one of those over here.
$ export HCLOUD_TOKEN=mycoolapitoken
Then create a role using the driver plugin.
$ molecule init role myrolename -d hetznercloud
Your myrolename/molecule/default/molecule.yml
should then look like the following.
---
dependency:
name: galaxy
driver:
name: hetznercloud
platforms:
- name: instance
server_type: cx11
image: debian-10
provisioner:
name: ansible
verifier:
name: ansible
Please see docs.hetzner.cloud for information regarding images and server types.
Then just run the role.
$ cd myrolename && molecule test
To ease initial debugging for getting things started, also expose the following environment variables.
$ export MOLECULE_NO_LOG=False # not so verbose, helpful
$ export MOLECULE_DEBUG=True # very verbose, last ditch effort
Volume Handling
It is possible to have the driver manage volumes during the test run.
You can add the following stanza to your Molecule configuration to have Molecule create this volume for the managed VPS. This volume will be cleaned up after use (Please note: there is a bug raised against clean-up right now, see #24 for more).
volumes:
- name: "molecule-hetznercloud-volume-1-${INSTANCE_UUID}"
location: /foo/bar
- name: "molecule-hetznercloud-volume-2-${INSTANCE_UUID}"
size: 20
Supported keys are:
- name (required): name of volume
- size (optional, default:
10GB
): size of volume - location (optional, default:
omitted
): path for volume
Only use molecule.yml
for configuration
It is being worked on that it is possible to remove all the files except the
molecule.yml
scenario file in your scenario directory. This is useful when
you only require this plugin to do the default behaviour each time. It is also
useful to reduce maintenance effort for migration of configurations. This
plugin currently embeds the create.yml
and destroy.yml
playbooks. All other
playbooks (e.g. prepare, cleanup) can be created as needed and Molecule will
pick them up and run them. Embedding the converge.yml
awaits this feature
request.
Mirroring
Issues will be responded to on both issue trackers.
- git.autonomic.zone (primary)
- github.com (mirror)
Change log
See CHANGELOG.md.
Molecule Documentation
Contact
- Ping @decentral1se on the
#ansible-molecule
channel on Freenode.
License
The LGPLv3 license.
Testing
This is all done on our drone.autonomic.zone setup.
Unit
$ pip install tox
$ tox -v
Integration
Only doable by Autonomic Cooperative members.
$ sudo apt install -y direnv
$ cp .envrc.sample .envrc
$ direnv allow
$ pip install -e . ansible
$ cd integration && molecule test