2019-10-01 22:31:35 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# Thanks to geerlingguy!
|
|
|
|
|
|
|
|
language: python
|
|
|
|
services: docker
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- ROLE_NAME: k3s
|
|
|
|
matrix:
|
|
|
|
- MOLECULE_DISTRO: centos8
|
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
- MOLECULE_DISTRO: debian10
|
|
|
|
- MOLECULE_DISTRO: fedora29
|
|
|
|
- MOLECULE_DISTRO: fedora30
|
2019-10-26 23:49:48 +02:00
|
|
|
- MOLECULE_DISTRO: fedora31
|
2019-10-01 22:31:35 +02:00
|
|
|
- MOLECULE_DISTRO: amazonlinux2
|
|
|
|
|
2019-10-26 23:49:48 +02:00
|
|
|
# Test installing docker
|
2019-10-01 22:31:35 +02:00
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
MOLECULE_PLAYBOOK: playbook-docker.yml
|
|
|
|
|
2019-10-26 23:49:48 +02:00
|
|
|
# Test using alternate port and using wireguard as the flannel backend
|
2019-12-04 19:44:37 +01:00
|
|
|
- MOLECULE_DISTRO: debian10
|
2019-10-26 23:49:48 +02:00
|
|
|
MOLECULE_PLAYBOOK: playbook-docker-altport-wireguard.yml
|
|
|
|
|
|
|
|
# Test disabling all deployments
|
|
|
|
- MOLECULE_DISTRO: fedora31
|
|
|
|
MOLECULE_PLAYBOOK: playbook-no-deploy.yml
|
|
|
|
|
2019-10-01 22:31:35 +02:00
|
|
|
install:
|
|
|
|
# Install test dependencies.
|
|
|
|
- pip install molecule docker jmespath
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
# Use actual Ansible Galaxy role name for the project directory.
|
|
|
|
- cd ../
|
|
|
|
- mv ansible-role-$ROLE_NAME xanmanning.$ROLE_NAME
|
|
|
|
- cd xanmanning.$ROLE_NAME
|
|
|
|
|
|
|
|
script:
|
|
|
|
# Run tests.
|
|
|
|
- molecule test
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|