forked from afaundez/node-build-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
44 lines (40 loc) · 834 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
always_update_cookbooks: true
chef_license: accept-no-persist
verifier:
name: inspec
platforms:
- name: amazonlinux-1
driver_config:
box: mvbcoding/awslinux
- name: amazonlinux-2
- name: centos-6
- name: centos-7
- name: centos-8
- name: debian-8
- name: debian-9
- name: debian-10
- name: fedora-30
- name: fedora-31
- name: oraclelinux-6
driver_config:
box: bento/oracle-6
- name: oraclelinux-7
driver_config:
box: bento/oracle-7
- name: oraclelinux-8
driver_config:
box: bento/oracle-8
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: ubuntu-18.04
- name: ubuntu-20.04
suites:
- name: default
run_list:
- recipe[test::plugin_install]
- recipe[test::standalone_install]