7f726d8cf8
The role will now also be tested with Molecule on CentOS 7 and Fedora 28 docker containers. Change-Id: Ic6dfaa56317c68779a50cea63bbf85b9d663184c Signed-off-by: Luke Short <ekultails@gmail.com>
49 lines
763 B
YAML
49 lines
763 B
YAML
---
|
|
driver:
|
|
name: docker
|
|
|
|
log: true
|
|
|
|
platforms:
|
|
- name: centos7
|
|
hostname: centos7
|
|
image: centos:7
|
|
dockerfile: Dockerfile
|
|
pkg_extras: python-setuptools
|
|
easy_install:
|
|
- pip
|
|
environment: &env
|
|
http_proxy: "{{ lookup('env', 'http_proxy') }}"
|
|
https_proxy: "{{ lookup('env', 'https_proxy') }}"
|
|
|
|
- name: fedora28
|
|
hostname: fedora28
|
|
image: fedora:28
|
|
dockerfile: Dockerfile
|
|
pkg_extras: python*-setuptools
|
|
environment:
|
|
<<: *env
|
|
|
|
provisioner:
|
|
name: ansible
|
|
log: true
|
|
env:
|
|
ANSIBLE_STDOUT_CALLBACK: yaml
|
|
|
|
scenario:
|
|
test_sequence:
|
|
- destroy
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- verify
|
|
- destroy
|
|
|
|
lint:
|
|
enabled: false
|
|
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|