forked from Icinga/chef-icinga2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
49 lines (44 loc) · 1022 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
47
48
49
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
- name: centos-6.8
- name: centos-7.2
suites:
- name: server
driver:
network:
- ["forwarded_port", {guest: 80, host: 8080, auto_correct: true}]
run_list:
- recipe[icinga2::server]
- recipe[icinga2-test::default]
attributes:
icinga2:
version: '2.4.10-1'
classic_ui:
version: '2.4.10-1'
- name: client
run_list:
- recipe[icinga2::client]
attributes:
icinga2:
version: '2.4.10-1'
- name: web2
driver:
network:
- ["forwarded_port", {guest: 80, host: 8080, auto_correct: true}]
- ["forwarded_port", {guest: 443, host: 8443, auto_correct: true}]
run_list:
- recipe[icinga2::default]
- recipe[icinga2::server]
- recipe[icinga2-test::default]
attributes:
icinga2:
version: '2.4.10-1'
web2:
enable: true
classic_ui:
enable: false