forked from sous-chefs/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
49 lines (45 loc) · 929 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_solo
product_name: chef
product_version: 14.2
enforce_idempotency: true
multiple_converge: 2
solo_rb:
treat_deprecation_warnings_as_errors: true
verifier:
name: inspec
platforms:
- name: amazonlinux-2
driver_config:
box: ywatase/amzn2
- name: centos-6
- name: centos-7
- name: debian-9
- name: ubuntu-16.04
- name: ubuntu-18.04
suites:
- name: repo
run_list:
- recipe[test::repository]
- name: server_install
run_list:
- recipe[test::server_install]
- name: client_install
run_list:
- recipe[test::client_install]
- name: access
run_list:
- recipe[test::access]
- name: ident
run_list:
- recipe[test::ident]
- name: extension
run_list:
- recipe[test::extension]
- name: initdb_locale
run_list:
- recipe[test::initdb_locale]
includes: [centos-7]