forked from rabbitmq/chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
46 lines (43 loc) · 1018 Bytes
/
.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
driver:
name: vagrant
provisioner:
name: chef_zero
require_chef_omnibus: latest
platforms:
- name: centos-6.7
- name: centos-7.2
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: debian-7.7
suites:
- name: default
run_list:
- recipe[rabbitmq::default]
- name: default-use-distro-version
run_list:
- recipe[rabbitmq::default]
attributes:
rabbitmq:
use_distro_version: true
excludes: ["centos-6.7", "centos-7.2"]
- name: lwrps
run_list:
- recipe[rabbitmq_test::lwrps]
- name: default-force-yes
run_list:
- recipe[rabbitmq::default]
attributes:
apt:
confd:
assume_yes: true
force-yes: true
excludes: ["centos-6.7", "centos-7.2"]
- name: default-force-yes-false
run_list:
- recipe[rabbitmq::default]
attributes:
apt:
confd:
assume_yes: false
force-yes: false
excludes: ["centos-6.7", "centos-7.2"]