-
Notifications
You must be signed in to change notification settings - Fork 48
/
.kitchen.yml
57 lines (52 loc) · 1.22 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
--- # TODO: move to Docker a la https://github.com/ferrarimarco/ansible-role-virtualbox
driver:
cachier: true
name: vagrant
customize:
cableconnected1: 'on'
ssh:
insert_key: false
driver_config:
require_chef_omnibus: latest
provisioner:
name: chef_zero
cookbook_files_glob: '**/*'
client_rb:
cookbook_path:
- /tmp/kitchen/cookbooks
- /tmp/kitchen/cookbooks/couchdb/test/cookbooks
# Uncomment for great debug
# log_level: debug
verifier:
name: inspec
platforms:
# - name: centos-6.9
- name: centos-7.4
- name: debian-7.11
- name: debian-8.7
- name: debian-9.2
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: ubuntu-17.10
suites:
- name: source
run_list:
- recipe[apt::default]
- recipe[couchdb-wrapper-test::one-node-from-source]
verifier:
inspec_tests:
- test/smoke/inspec
- name: search
run_list:
- recipe[apt::default]
- recipe[couchdb-wrapper-test::one-node-with-search]
verifier:
inspec_tests:
- test/searchsmoke/inspec
- name: threenodes
run_list:
- recipe[apt::default]
- recipe[couchdb-wrapper-test::three-nodes-from-source]
verifier:
inspec_tests:
- test/threesmoke/inspec