-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
kitchen.yml
60 lines (56 loc) · 1.23 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
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
chef_license: accept-no-persist
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: amazonlinux-2
- name: centos-7
- name: centos-8
- name: debian-9
- name: debian-10
- name: fedora-latest
- name: ubuntu-18.04
- name: ubuntu-20.04
- name: freebsd-12
suites:
- name: default
run_list:
- recipe[openldap-test::default]
- name: tls_enabled
run_list:
- recipe[openldap-test::ssl]
attributes:
openldap:
tls_enabled: true
ldaps_enabled: true
verifier:
inspec_tests:
- name: openldap-default
path: test/integration/default
- name: type_provider
run_list:
- recipe[openldap-test::default]
attributes:
openldap:
slapd_type: 'provider'
verifier:
inspec_tests:
- name: openldap-default
path: test/integration/default
- name: type_consumer
run_list:
- recipe[openldap-test::default]
attributes:
openldap:
slapd_type: 'consumer'
verifier:
inspec_tests:
- name: openldap-default
path: test/integration/default