30 lines
567 B
YAML
30 lines
567 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
provider: <%= ENV['KITCHEN_PROVIDER'] || 'virtualbox' %>
|
|
|
|
## make file transfer faster. need https://github.com/coderanger/kitchen-sync
|
|
transport:
|
|
name: sftp
|
|
|
|
provisioner:
|
|
name: ansible_playbook
|
|
roles_path: ../../roles
|
|
hosts: test-kitchen
|
|
# ansible_verbose: true
|
|
ansible_verbose: false
|
|
ansible_verbosity: 3
|
|
ansible_extra_flags: <%= ENV['ANSIBLE_EXTRA_FLAGS'] %>
|
|
|
|
platforms:
|
|
- name: ubuntu-16.04
|
|
- name: ubuntu-14.04
|
|
- name: ubuntu-12.04
|
|
- name: centos-7.1
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
attributes:
|
|
|