-
Notifications
You must be signed in to change notification settings - Fork 2
/
.kitchen.yml
89 lines (86 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
driver_plugin: vagrant
driver_config:
customize:
cpus: 1
memory: 512
ssh:
insert_key: false
provisioner:
name: chef_zero
always_update_cookbooks: true
require_chef_omnibus: 12.16.42
log_level: debug
log_file: /var/log/chef-solo.log
platforms:
- name: centos-6.8
driver_config:
box: bento/centos-6.8
- name: centos-7.2
driver_config:
box: bento/centos-7.2
#- name: rhel-6.5
# driver_config:
# box: local-rhel-6.5
# box_url: file://<%= File.expand_path('~') %>/opscode_rhel-6.5_chef-provisionerless.box
#- name: rhel-7.0
# driver_config:
# box: local-rhel-7.0
# box_url: file://<%= File.expand_path('~') %>/opscode_rhel-7.0_chef-provisionerless.box
- name: ubuntu-12.04
driver_config:
box: bento/ubuntu-12.04
run_list: ['recipe[apt]']
- name: ubuntu-14.04
driver_config:
box: bento/ubuntu-14.04
- name: ubuntu-16.04
driver_config:
box: bento/ubuntu-16.04
suites:
- name: default
run_list:
- recipe[machine_tag]
- recipe[fake]
attributes:
apt:
compile_time_update: true
- name: create
run_list:
- recipe[machine_tag]
- recipe[fake::create_tags]
attributes:
apt:
compile_time_update: true
cloud:
provider: vagrant
- name: delete
run_list:
- recipe[machine_tag]
- recipe[fake::create_tags]
- recipe[fake::delete_tags]
attributes:
apt:
compile_time_update: true
cloud:
provider: vagrant
- name: list
run_list:
- recipe[machine_tag]
- recipe[fake::create_tags]
- recipe[fake::list_tags]
attributes:
apt:
compile_time_update: true
cloud:
provider: vagrant
- name: search
run_list:
- recipe[machine_tag]
- recipe[fake::create_tags]
- recipe[fake::search_tags]
attributes:
apt:
compile_time_update: true
cloud:
provider: vagrant