bdf0238328
Signed-off-by: Victor Morales <v.morales@samsung.com>
48 lines
807 B
YAML
48 lines
807 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
provider:
|
|
name: libvirt
|
|
lint: |
|
|
set -e
|
|
yamllint -c ../../../.yamllint .
|
|
platforms:
|
|
- name: ubuntu1804
|
|
box: generic/ubuntu1804
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: centos7
|
|
box: centos/7
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: centos8
|
|
box: centos/8
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: fedora
|
|
box: fedora/31-cloud-base
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
provisioner:
|
|
name: ansible
|
|
env:
|
|
ANSIBLE_ROLES_PATH: ../../../../
|
|
config_options:
|
|
defaults:
|
|
callback_whitelist: profile_tasks
|
|
lint:
|
|
name: ansible-lint
|
|
options:
|
|
c: ../../../.ansible-lint
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|