mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-10 07:23:30 +01:00
5e39160ed9
Testing: - Added docker networking, ensure that test output is verbose. - Fix build for AmazonLinux 2 - No-deploy flag test added
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
---
|
|
|
|
# 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
|
|
- MOLECULE_DISTRO: fedora31
|
|
- MOLECULE_DISTRO: amazonlinux2
|
|
|
|
# Test installing docker
|
|
- MOLECULE_DISTRO: centos7
|
|
MOLECULE_PLAYBOOK: playbook-docker.yml
|
|
|
|
# Test using alternate port and using wireguard as the flannel backend
|
|
- MOLECULE_DISTRO: amazonlinux2
|
|
MOLECULE_PLAYBOOK: playbook-docker-altport-wireguard.yml
|
|
|
|
# Test disabling all deployments
|
|
- MOLECULE_DISTRO: fedora31
|
|
MOLECULE_PLAYBOOK: playbook-no-deploy.yml
|
|
|
|
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/
|