forked from elijah/chef-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.dokken.yml
93 lines (82 loc) · 1.93 KB
/
.kitchen.dokken.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
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_version: 12.21.31
#chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
transport:
name: dokken
provisioner:
name: dokken
data_path: test/shared
verifier:
sudo: false
platforms:
- name: ubuntu-14.04
- name: ubuntu-16.04
driver:
image: dokken/ubuntu-16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt install sudo
# - name: debian-7.11
# driver:
# cache_directory: false
- name: debian-8.7
driver:
image: dokken/debian-8
pid_one_command: /bin/systemd
- name: centos-6.9
run_list:
- recipe[yum::default]
- name: centos-7.3
run_list:
- recipe[yum::default]
suites:
- name: default
run_list:
- recipe[prometheus::default]
- recipe[prometheus::alertmanager]
attributes:
prometheus:
install_method: 'binary'
alertmanager:
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: default-source
run_list:
- recipe[prometheus::default]
attributes:
go:
gobin: '/usr/local/go/bin'
gopath: '/usr/local/go'
- 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: bluepill-binary
# run_list:
# - recipe[prometheus::default]
# attributes:
# prometheus:
# init_style: 'bluepill'
# install_method: 'binary'