]> git.openstreetmap.org Git - chef.git/blob - .kitchen.yml
Check that servers are listening on the right protocols
[chef.git] / .kitchen.yml
1 ---
2 driver:
3   name: dokken
4   chef_version: 14
5
6 transport:
7   name: dokken
8
9 provisioner:
10   name: dokken
11   data_bags_path: test/data_bags
12
13 verifier:
14   root_path: /opt/verifier
15
16 platforms:
17   - name: ubuntu-18.04
18     driver:
19       image: dokken/ubuntu-18.04
20       privileged: true
21       pid_one_command: /bin/systemd
22       intermediate_instructions:
23         - RUN /usr/bin/apt-get update -y
24
25 suites:
26   - name: accounts
27     run_list:
28       - recipe[accounts::default]
29   - name: apache
30     run_list:
31       - recipe[apache::default]
32   - name: apt
33     run_list:
34       - recipe[apt::default]
35   - name: bind
36     run_list:
37       - recipe[bind::default]
38     attributes:
39       bind:
40         clients: none
41   - name: blogs
42     run_list:
43       - recipe[accounts::default]
44       - recipe[blogs::default]
45   - name: clamav
46     run_list:
47       - recipe[clamav::default]
48   - name: devices
49     run_list:
50       - recipe[devices::default]
51   - name: dhcpd
52     run_list:
53       - recipe[dhcpd::default]
54     attributes:
55       dhcpd:
56         first_address: 172.18.100.1
57         last_address: 172.18.100.254
58       networking:
59         interfaces:
60           test:
61             interface: eth0
62             role: internal
63             address: 172.18.0.2
64             prefix: 16
65             gateway: 172.18.0.1
66         roles:
67           external:
68             zone: test
69   - name: exim
70     run_list:
71       - recipe[exim::default]
72   - name: forum
73     run_list:
74       - recipe[accounts::default]
75       - role[forum]
76   - name: letsencrypt
77     run_list:
78       - recipe[accounts::default]
79       - recipe[apt::default]
80       - role[letsencrypt]
81     attributes:
82       apt:
83         sources:
84           - openstreetmap
85   - name: munin
86     run_list:
87       - recipe[munin::default]
88   - name: munin-server
89     run_list:
90       - recipe[munin::server]
91   - name: mysql
92     run_list:
93       - recipe[mysql::default]
94   - name: networking
95     run_list:
96       - recipe[networking::default]
97   - name: ntp
98     run_list:
99       - recipe[ntp::default]
100   - name: otrs
101     run_list:
102       - recipe[accounts::default]
103       - recipe[chef::default]
104       - role[otrs]
105   - name: python
106     run_list:
107       - recipe[python::default]
108   - name: spamassassin
109     run_list:
110       - recipe[spamassassin::default]
111   - name: tools
112     run_list:
113       - recipe[tools::default]