forked from sous-chefs/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
184 lines (175 loc) · 4.9 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
---
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: centos-7.0
driver_config:
box: opscode-centos-7.0
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-7.0_chef-provisionerless.box
#- name: oracle-6
#- name: macosx-10.7
#- name: macosx-10.8
#- name: macosx-10.9
#- name: opensuse-12.3
#
# Because the Debian Bento boxes have kernel v3.2, the checks will fail. For the time
# being this platform will be removed from the test suite until we can build
# out own debian boxes with the correct kernel version.
#
# - name: debian-7.7
# driver_config:
# box: opscode-debian-7.7
# box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-7.7_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
#
# There appears to be an issue with the apt cookbook on 13.04. We will eventually
# take care of this but for the time being we are disabling this platform
# from the test suite.
#
# - name: ubuntu-13.04
# run_list:
# - recipe[apt]
# 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
run_list:
- recipe[build-essential]
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
- name: ubuntu-14.10
run_list:
- recipe[build-essential]
driver_config:
box: opscode-ubuntu-14.10
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.10_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]
excludes:
- fedora-19 # There is some bug with removing containers. We will address
- fedora-20 # this bug in a future release.
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
- fedora-19
- fedora-20
- ubuntu-14.10
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