d6adb4786d
This change imports the tuned content from the tripleo-heat-templates project and creates a role which can be used throughout the tripleo project ecosystem. The role will test in docker containers running both fedora28 and centos7. Change-Id: I90b5b63959c754989416544f83089f1ca4b53be2 Signed-off-by: Kevin Carter <kecarter@redhat.com>
69 lines
1.3 KiB
YAML
69 lines
1.3 KiB
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') }}"
|
|
command: /sbin/init
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
capabilities:
|
|
- ALL # CENT7 requires all due to the age of the software
|
|
volumes:
|
|
- /run/udev:/run/udev:ro
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
|
|
- name: fedora28
|
|
hostname: fedora28
|
|
image: fedora:28
|
|
dockerfile: Dockerfile
|
|
pkg_extras: python*-setuptools
|
|
environment:
|
|
http_proxy: "{{ lookup('env', 'http_proxy') }}"
|
|
https_proxy: "{{ lookup('env', 'https_proxy') }}"
|
|
command: /sbin/init
|
|
privileged: true
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
capabilities:
|
|
- SYS_ADMIN
|
|
volumes:
|
|
- /run/udev:/run/udev:ro
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
|
|
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
|