forked from elijah/chef-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
72 lines (64 loc) · 1.37 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
driver:
name: vagrant
provisioner:
name: chef_zero
require_chef_omnibus: 12.0.3
data_path: test/shared
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: debian-7.7
run_list:
- recipe[apt]
- name: centos-6.6
run_list:
- recipe[yum::default]
- name: centos-7.0
run_list:
- recipe[yum::default]
suites:
- name: default
run_list:
- recipe[prometheus::default]
attributes:
- name: init
run_list:
- recipe[prometheus::default]
provisioner:
name: chef_zero
require_chef_omnibus: 11.12.4
attributes:
prometheus:
init_style: 'init'
- name: bluepill
run_list:
- recipe[prometheus::default]
attributes:
prometheus:
init_style: 'bluepill'
- name: default-binary
run_list:
- recipe[prometheus::default]
attributes:
prometheus:
install_method: 'binary'
- name: init-binary
run_list:
- recipe[prometheus::default]
attributes:
prometheus:
init_style: 'init'
install_method: 'binary'
flags:
storage.remote.timeout: 45s
- name: bluepill-binary
run_list:
- recipe[prometheus::default]
attributes:
prometheus:
init_style: 'bluepill'
install_method: 'binary'