Skip to content

Commit

Permalink
Merge pull request #14 from eengstrom/upgrade-to-molecule3
Browse files Browse the repository at this point in the history
Upgrade testing to Molecule 3.x
  • Loading branch information
azielke authored May 3, 2020
2 parents c70eb76 + 55aae9d commit 3793174
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
language: python
services: docker
dist: xenial
dist: bionic

env:
- GOPATH=~/gopath

Expand Down
2 changes: 1 addition & 1 deletion .yamllint
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
extends: default

rules:
braces:
max-spaces-inside: 1
Expand Down
34 changes: 25 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Install, configure and run dehydrated Let's Encrypt client
* [Additinal hook scripts](#additinal-hook-scripts)
+ [Writing shell fragments for single hooks](#writing-shell-fragments-for-single-hooks)
+ [deploying complete hook script files](#deploying-complete-hook-script-files)
* [Testing](#testing)
* [License](#license)
* [Author Information](#author-information)

Expand All @@ -30,10 +31,10 @@ Install, configure and run dehydrated Let's Encrypt client
Variable | Function | Default
--- | --- | ---
dehydrated_accept_letsencrypt_terms | Set to yes to automatically register and accept Let's Encrypt terms | no
dehydrated_contactemail | E-Mail address (required) |
dehydrated_domains | List of domains to request SSL certificates for |
dehydrated_deploycert | Script to run to deploy a certificate (see below) |
dehydrated_wellknown | Directory where to deploy http-01 challenges |
dehydrated_contactemail | E-Mail address (required) |
dehydrated_domains | List of domains to request SSL certificates for |
dehydrated_deploycert | Script to run to deploy a certificate (see below) |
dehydrated_wellknown | Directory where to deploy http-01 challenges |
dehydrated_install_root | Where to install dehydrated | /opt/dehydrated
dehydrated_update | Update dehydrated sources on ansible run | yes
dehydrated_version | Which version to check out from github | HEAD
Expand All @@ -47,9 +48,9 @@ dehydrated_keysize | Size of Key (only for rsa Keys) | 4096
dehydrated_ca | CA to use | https://acme-v02.api.letsencrypt.org/directory
dehydrated_cronjob | Install cronjob for certificate renewals | yes
dehydrated_systemd_timer | Use systemd timer for certificate renewals | no
dehydrated_config_extra | Add arbitrary text to config |
dehydrated_config_extra | Add arbitrary text to config |
dehydrated_run_on_changes | If dehydrated should run if the list of domains changed | yes
dehydrated_systemd_timer_onfailure | If set, an OnFailure-Directive will be added to the systemd unit |
dehydrated_systemd_timer_onfailure | If set, an OnFailure-Directive will be added to the systemd unit |
dehydrated_cert_config | Override configuration for certificates | []
dehydrated_repo_url | Specify URL to git repository of dehydrated | https://github.com/dehydrated-io/dehydrated.git
dehydrated_install_pip | Whether pip will be installed when using lexicon | yes
Expand All @@ -58,9 +59,13 @@ dehydrated_pip_executable | Name of pip executable to use | autodetected by pip

## Using dns-01 challenges

When dehydrated_challengetype is set to dns-01, this role will automatically install lexicon from python pip to be able to set and remove the necessary DNS-Records needed to obtain an SSL certificate.
When `dehydrated_challengetype` is set to `dns-01`, this role will automatically install `lexicon` from python pip to be able to set and remove the necessary DNS records needed to obtain an SSL certificate.

lexicon uses environment variables for username and password.
`lexicon` uses environment variables for username/token and password/secret; see examples below.

### Platforms supporting `dns-01` challenges

All platforms supported by this role will work with `dns-01` challenges, **except** for Debian 8 (codename: Jessie). The `dns-lexicon` package requires Python version >= 3.5, which is not available by default on Debian 8.

## using systemd timers

Expand Down Expand Up @@ -230,7 +235,6 @@ If you decide, that you don't need the hook anymore, you can add `state: absent`

**Note:** Filenames must match ^[a-zA-Z0-9_-]+$ - otherwise they won't be executed!


# Testing

This role is automatically tested using Travis CI. Local testing can be done using Vagrant. Both run `molecule/setup.sh` script to setup the testing environment.
Expand All @@ -243,6 +247,18 @@ boulder (using docker) | Let's Encrypt CA for validations
nginx | webserver for http-01
powerdns | Used as a nameserver for dns-01. lexicon as a plugin to manipulate records.

## Vagrant testing example

Assuming you have Vagrant already configured, run a complete test via Vagrant:

vagrant up
vagrant ssh
source ~/venv/bin/activate
cd /vagrant
molecule test
exit
vagrant destroy

# License

MIT License
Expand Down
7 changes: 4 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@

Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"


config.vm.provider "virtualbox" do |vb|
vb.linked_clone = true
vb.cpus = 4
vb.memory = 4096
end

config.vm.provision "shell-1", type: "shell", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true
apt-get update
apt-get -y install python3-pip jq
pip3 install virtualenv
curl -sSL "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
SHELL
Expand Down
File renamed without changes.
13 changes: 4 additions & 9 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ dependency:
name: galaxy
driver:
name: docker
lint:
name: yamllint
platforms:
- name: ubuntu1804-http01
image: ubuntu:18.04
Expand Down Expand Up @@ -37,9 +35,9 @@ platforms:
- name: ubuntu1604-dns01
image: ubuntu:16.04
groups: [dns01]
- name: debian8-dns01
image: debian:8
groups: [dns01]
# - name: debian8-dns01
# image: debian:8
# groups: [dns01]
- name: debian9-dns01
image: debian:9
groups: [dns01]
Expand All @@ -48,8 +46,6 @@ platforms:
groups: [dns01]
provisioner:
name: ansible
lint:
name: ansible-lint
inventory:
group_vars:
http01:
Expand Down Expand Up @@ -79,5 +75,4 @@ scenario:
name: default
verifier:
name: testinfra
lint:
name: flake8
lint: 'molecule/lint.sh'
8 changes: 8 additions & 0 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
- name: Prepare
hosts: all
tasks:
- name: Install cron for molecule based role testing
package:
name: cron
state: present
15 changes: 15 additions & 0 deletions molecule/lint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
# accumulate error codes, allowing all linters to execute.
# exit with total of all error codes at end.

declare -i errors
catch() { errors=$errors+$?; }
trap catch ERR
onexit() { exit $errors; }
trap onexit EXIT

#set -x

yamllint .
ansible-lint
flake8
15 changes: 14 additions & 1 deletion molecule/setup.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
#!/bin/bash

# NOTE: this assumes we are running in Travis or Vagrant,
# so happily installs things globally, and with abandon.

set -eo pipefail

# if running in vagrant, `/vagrant` exists;
# Then, setup local virtualenv and use it.
if [ -d /vagrant ]; then
(cd ~; virtualenv -p python3 venv)
source ~/venv/bin/activate
fi

# Install molecule
pip3 install "molecule>=2.22rc3" docker
pip install "molecule>=3.0.3" testinfra docker

# Install linting tools
pip install yamllint ansible-lint flake8

# Let's Encrypt CA (boulder)
export GOPATH=~/gopath
Expand Down

0 comments on commit 3793174

Please sign in to comment.