summaryrefslogtreecommitdiff
path: root/acceptance/cookbook-git/.kitchen.vagrant.yml
blob: 0dc8b11dc18dbc6934939c08132dcb520d40fe5d (plain)
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
driver:
  name: vagrant
  forward_agent: yes
  customize:
    cpus: 2
    memory: 1024

platforms:
<% %w(
debian-8
debian-7
debian-6
ubuntu-15.10
ubuntu-14.04
el-7
el-6
el-5
freebsd-10
freebsd-9
fedora-21
).each do |platform| %>
  - name: <%= platform %>
    driver:
      box: opscode-<%= platform %>
      box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_<%= platform %>_chef-provisionerless.box
<% end %>
# freebsd-8
# ubuntu-12.04
# centos-7
# centos-6

<% %w(
2012r2
2012
2008r2
).each do |version| %>
  - name: windows-<%= version %>
    driver:
      box: chef/windows-server-<%= version %>-standard
# URL is atlas
<% end %>

suites:
  - name: default
    run_list:
      - recipe[git]
    attributes: {}
    includes: ["ubuntu-14.04"]
    excludes: ["windows-2012r2", "windows-2012", "windows-2008r2"]
  - name: source
    includes: ["nonexistent"]
    excludes: ["ubuntu-12.04", "ubuntu-10.04", "windows-2012r2", "windows-2012", "windows-2008r2"]
    run_list:
      - recipe[git::source]
    attributes: {}
  - name: default-windows
    includes: [
      # 'windows-8.1-professional',
      # 'windows-2008r2-standard',
      "windows-2012r2",
      # "windows-2012",
      # "windows-2008r2"
    ]
    run_list:
      - recipe[git]
    attributes: {}

provisioner:
  name: chef_zero
  product_name: chef
  product_version: latest
  channel: current