forked from EMSL-MSC/munin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
50 lines (46 loc) · 1.15 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
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
provisioner:
name: chef_zero
platforms:
- name: fedora-20
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: centos-6.6
run_list:
- recipe[selinux::permissive]
- recipe[yum-epel]
driver_config:
network:
- ["forwarded_port", {guest: 80, host: 8090}]
- ["forwarded_port", {guest: 443, host: 4433}]
- name: centos-7.0
run_list:
- recipe[firewalld::disable]
- recipe[yum-epel]
driver_config:
network:
- ["forwarded_port", {guest: 80, host: 8091}]
- ["forwarded_port", {guest: 443, host: 4434}]
suites:
- name: munin-client
run_list:
- recipe[munin::client]
- name: munin-server
run_list:
- recipe[munin::server]
- role[munin_server]
attributes:
munin:
server_auth_method: none
# - name: server_apache
# run_list:
# - recipe[munin::server_apache]
# - name: server_nginx
# run_list:
# - recipe[munin::server_nginx]
data_bags_path: test/integration/data_bags/
roles_path: test/integration/roles/
environments_path: test/integration/environments