-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
62 lines (49 loc) · 1.32 KB
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
driver:
name: vagrant
vagrantfile_erb: Vagrantfile_local.erb
provisioner:
name: ansible_playbook
hosts: ssh_servers
sudo_command: sudo -E -H
role_name: ssh-server
require_ansible_repo: false
require_ansible_omnibus: true
require_chef_for_busser: false
require_ruby_for_busser: false
ansible_verbose: true
ansible_verbosity: warn
transport:
max_ssh_sessions: 4
verifier:
name: shell
suites:
- name: defaults
provisioner:
playbook: tests/defaults.yml
idempotency_test: true
verifier:
command: PLAYBOOK=tests/defaults.yml bundle exec rspec -c -I serverspec
- name: gen-keys
provisioner:
playbook: tests/gen-keys.yml
idempotency_test: false
verifier:
command: PLAYBOOK=tests/gen-keys.yml bundle exec rspec -c -I serverspec
platforms:
- name: centos-7
driver_config:
box: bento/centos-7.2
box_url: https://atlas.hashicorp.com/bento/boxes/centos-7.2
- name: debian-8
driver_config:
box: bento/debian-8.6
box_url: https://atlas.hashicorp.com/bento/debian-8.6
- name: ubuntu-1404
driver_config:
box: bento/ubuntu-14.04
box_url: https://atlas.hashicorp.com/bento/ubuntu-14.04
- name: ubuntu-1604
driver_config:
box: bento/ubuntu-16.04
box_url: https://atlas.hashicorp.com/bento/ubuntu-16.04