mirror of
https://github.com/atosatto/ansible-minio.git
synced 2025-01-31 22:31:23 +01:00
39 lines
852 B
YAML
39 lines
852 B
YAML
|
---
|
||
|
|
||
|
# docker driver configuration (CI)
|
||
|
docker:
|
||
|
containers:
|
||
|
- name: minio-centos-7
|
||
|
image: atosatto/centos
|
||
|
image_version: 7-systemd
|
||
|
privileged: True
|
||
|
# - name: minio-ubuntu-16.04
|
||
|
# image: atosatto/ubuntu
|
||
|
# image_version: 16.04
|
||
|
# privileged: True
|
||
|
# Unfortunately, upstart does not run in Docker containers,
|
||
|
# so no Ubuntu 14.04 docker tests :/
|
||
|
|
||
|
# vagrant driver configuration (development)
|
||
|
vagrant:
|
||
|
platforms:
|
||
|
- name: centos-7
|
||
|
box: centos/7
|
||
|
- name: ubuntu-16.04
|
||
|
box: bento/ubuntu-16.04
|
||
|
- name: ubuntu-14.04
|
||
|
box: bento/ubuntu-14.04
|
||
|
providers:
|
||
|
- name: virtualbox
|
||
|
type: virtualbox
|
||
|
options:
|
||
|
memory: 2048
|
||
|
cpus: 2
|
||
|
instances:
|
||
|
- name: ansible-minio-01
|
||
|
options:
|
||
|
append_platform_to_hostname: yes
|
||
|
|
||
|
verifier:
|
||
|
name: testinfra
|