d762e27dc7
Add molecule test structure for each ceph role. Also add missing doc/*tripleo-ceph-*.rst files. Local test setup changes have been made in support of these roles. Change-Id: I43b828d5c892a0b33c7a3cbae4034267ce493dc0 Task: 34717 Task: 34718 Task: 34719 Task: 34720 Story: 2006041 Signed-off-by: Kevin Carter <kecarter@redhat.com>
54 lines
841 B
YAML
54 lines
841 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
|
|
inventory:
|
|
hosts:
|
|
all:
|
|
vars:
|
|
ansible_user: root
|
|
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
|