forked from sensu/uchiwa-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
104 lines (95 loc) · 2.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
driver:
name: vagrant
provisioner:
name: chef_zero
attributes:
uchiwa:
api: [
{
name: sensu1,
host: api1.example.com,
port: 4567,
ssl: false,
timeout: 5000
},
{
name: sensu2,
host: api2.example.com,
port: 4567,
ssl: false,
timeout: 5000
}
]
platforms:
- name: centos-6.5
- name: centos-7.0
- name: ubuntu-12.04
- name: ubuntu-14.04
suites:
- name: repo
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: repo
- name: http
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: http
version: 0.4.0-1
- name: disabled_service
excludes:
- centos-7.0
- ubuntu-12.04
- ubuntu-14.04
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: repo
manage_service: false
- name: package_options_ubuntu_http
excludes:
- centos-6.5
- centos-7.0
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: http
version: 0.4.0-1
package_options: --log=/tmp/uchiwa_pkg.log
- name: package_options_ubuntu_repo
excludes:
- centos-6.5
- centos-7.0
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: repo
package_options: -o Dpkg::Options::="--log=/tmp/uchiwa_pkg.log"
- name: package_options_centos_http
excludes:
- ubuntu-12.04
- ubuntu-14.04
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: http
version: 0.4.0-1
package_options: --nogpgcheck > /tmp/uchiwa_pkg.log
- name: package_options_centos_repo
excludes:
- ubuntu-12.04
- ubuntu-14.04
run_list:
- recipe[uchiwa::default]
attributes:
uchiwa:
install_method: repo
package_options: --nogpgcheck > /tmp/uchiwa_pkg.log