forked from Youscribe/backup-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.kitchen.yml
44 lines (41 loc) · 859 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
customize:
memory: '1024'
provisioner:
name: chef_solo
platforms:
- name: ubuntu-16.04
run_list:
- recipe[apt]
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: centos-6.6
- name: debian-8.1
run_list:
- recipe[apt]
suites:
- name: default
run_list:
- recipe[build-essential]
- recipe[minitest-handler]
- recipe[backup_test::default]
- name: chef10
run_list:
- recipe[build-essential]
- recipe[minitest-handler]
- recipe[backup_test::default]
provisioner:
require_chef_omnibus: 10.30.2
- name: disable
run_list:
- recipe[build-essential]
- recipe[minitest-handler]
- recipe[backup_test::disable]
- name: remove
run_list:
- recipe[build-essential]
- recipe[minitest-handler]
- recipe[backup_test::remove]