2019-10-01 22:31:35 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# Thanks to geerlingguy!
|
|
|
|
|
|
|
|
language: python
|
|
|
|
services: docker
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- ROLE_NAME: k3s
|
2020-01-13 22:32:31 +01:00
|
|
|
- ROLE_OWNER: xanmanning
|
|
|
|
- REPO_OWNER: PyratLabs
|
2020-01-12 13:50:03 +01:00
|
|
|
- MOLECULE_SCENARIO: default
|
2019-10-01 22:31:35 +02:00
|
|
|
matrix:
|
2019-12-09 14:53:42 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-debian10-ansible:latest
|
2019-10-01 22:31:35 +02:00
|
|
|
|
2019-10-26 23:49:48 +02:00
|
|
|
# Test installing docker
|
2019-12-09 14:53:42 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-centos7-ansible:latest
|
2019-10-01 22:31:35 +02:00
|
|
|
MOLECULE_PLAYBOOK: playbook-docker.yml
|
2019-12-09 18:53:37 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-ubuntu1804-ansible:latest
|
|
|
|
MOLECULE_PLAYBOOK: playbook-docker.yml
|
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-amazonlinux2-ansible:latest
|
|
|
|
MOLECULE_PLAYBOOK: playbook-docker.yml
|
2019-10-01 22:31:35 +02:00
|
|
|
|
2019-10-26 23:49:48 +02:00
|
|
|
# Test using alternate port and using wireguard as the flannel backend
|
2020-01-18 10:22:53 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-centos7-ansible:latest
|
2019-10-26 23:49:48 +02:00
|
|
|
MOLECULE_PLAYBOOK: playbook-docker-altport-wireguard.yml
|
|
|
|
|
|
|
|
# Test disabling all deployments
|
2019-12-09 14:53:42 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-fedora31-ansible:latest
|
2019-10-26 23:49:48 +02:00
|
|
|
MOLECULE_PLAYBOOK: playbook-no-deploy.yml
|
|
|
|
|
2020-01-11 20:20:52 +01:00
|
|
|
# Test multiple masters in control plane with PostgreSQL
|
2020-01-18 10:22:53 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-fedora29-ansible:latest
|
2020-01-12 17:16:40 +01:00
|
|
|
MOLECULE_SCENARIO: highavailability
|
|
|
|
|
2020-01-13 22:32:31 +01:00
|
|
|
# Test multiple masters with auto deploying manifests
|
2020-01-18 10:22:53 +01:00
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-fedora30-ansible:latest
|
2020-01-13 22:32:31 +01:00
|
|
|
MOLECULE_SCENARIO: highavailability
|
|
|
|
MOLECULE_PLAYBOOK: playbook-auto-deploying-manifests.yml
|
|
|
|
|
2020-01-12 17:16:40 +01:00
|
|
|
# Test multiple masters in control plane with DQLite
|
|
|
|
- MOLECULE_DISTRO: geerlingguy/docker-centos8-ansible:latest
|
|
|
|
MOLECULE_SCENARIO: highavailability
|
|
|
|
MOLECULE_PLAYBOOK: playbook-dqlite.yml
|
2020-01-11 18:03:47 +01:00
|
|
|
|
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 ../
|
2020-01-13 22:32:31 +01:00
|
|
|
- mv ansible-role-${ROLE_NAME} ${ROLE_OWNER}.${ROLE_NAME}
|
|
|
|
- cd ${ROLE_OWNER}.${ROLE_NAME}
|
2019-10-01 22:31:35 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
# Run tests.
|
2020-01-12 13:50:03 +01:00
|
|
|
- molecule test --scenario-name "${MOLECULE_SCENARIO}"
|
2019-10-01 22:31:35 +02:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|