forked from sous-chefs/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
157 lines (148 loc) · 3.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
---
driver_plugin: vagrant
driver_config:
customize:
memory: 1024
provisioner:
name: chef_zero
require_chef_omnibus: latest
data_path: test/shared
attributes:
docker:
container_cmd_timeout: 30
platforms:
- name: centos-6.5
driver_config:
box: opscode-centos-6.5
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.5_chef-provisionerless.box
#- name: oracle-6
#- name: macosx-10.7
#- name: macosx-10.8
#- name: macosx-10.9
#- name: opensuse-12.3
- name: debian-7.2
driver_config:
box: opscode-debian-7.2.0
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-7.2.0_chef-provisionerless.box
- name: debian-7.4
driver_config:
box: opscode-debian-7.4
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-7.4_chef-provisionerless.box
- name: fedora-19
driver_config:
box: opscode-fedora-19
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_fedora-19_chef-provisionerless.box
- name: fedora-20
driver_config:
box: opscode-fedora-20
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_fedora-20_chef-provisionerless.box
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box
- name: ubuntu-13.04
driver_config:
box: opscode-ubuntu-13.04
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-13.04_chef-provisionerless.box
- name: ubuntu-13.10
driver_config:
box: opscode-ubuntu-13.10
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-13.10_chef-provisionerless.box
require_chef_omnibus: latest
- name: ubuntu-14.04
driver_config:
box: opscode-ubuntu-14.04
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box
require_chef_omnibus: latest
suites:
#
# Package Installations
#
- name: package-native
run_list:
- recipe[build-essential]
- recipe[docker_test::default]
- recipe[docker_test::image_lwrp]
- recipe[docker_test::container_lwrp]
attributes:
docker:
install_type: package
- name: package-lxc
run_list:
- recipe[build-essential]
- recipe[docker_test::default]
- recipe[docker_test::image_lwrp]
- recipe[docker_test::container_lwrp]
attributes:
docker:
install_type: package
exec_driver: lxc
#
# Binary Installations
#
- name: binary-native
excludes:
- centos-6.5
run_list:
- recipe[build-essential]
- recipe[docker_test::default]
- recipe[docker_test::image_lwrp]
- recipe[docker_test::container_lwrp]
attributes:
docker:
install_type: binary
- name: binary-lxc
excludes:
- centos-6.5
run_list:
- recipe[build-essential]
- recipe[docker_test::default]
- recipe[docker_test::image_lwrp]
- recipe[docker_test::container_lwrp]
attributes:
docker:
install_type: binary
exec_driver: lxc
#
# Source Installations
#
#- name: source-native
# excludes:
# - centos-6.5
# run_list:
# - recipe[docker_test::default]
# - recipe[docker_test::image_lwrp]
# - recipe[docker_test::container_lwrp]
# attributes:
# docker:
# install_type: source
#- name: source-lxc
# excludes:
# - centos-6.5
# run_list:
# - recipe[docker_test::default]
# - recipe[docker_test::image_lwrp]
# - recipe[docker_test::container_lwrp]
# attributes:
# docker:
# install_type: source
# exec_driver: lxc
#
# Archived Tests
#
#- name: docker-lwrp-native
# run_list:
# - recipe[minitest-handler]
# - recipe[docker_test::default]
# - recipe[docker_test::image_lwrp]
# - recipe[docker_test::container_lwrp]
#- name: docker-lwrp-lxc
# run_list:
# - recipe[minitest-handler]
# - recipe[lxc]
# - recipe[docker_test::default]
# - recipe[docker_test::image_lwrp]
# - recipe[docker_test::container_lwrp]
# attributes:
# docker:
# exec_driver: lxc