blob: 61395996856fa45e07b7f277c33957bf2354a6c7 (
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
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
|
#
# NOTE: this runs the omnibus cookbook, but does not actually run Omnibus. Use
# 'kichen converge' to setup the virtual machine and then `kitchen login` to
# SSH into the machine and run Omnibus.
#
driver:
name: vagrant
forward_agent: yes
customize:
cpus: 4
memory: 4096
synced_folders:
- ['.', '/home/vagrant/omnibus-chef']
- ['../omnibus', '/home/vagrant/omnibus']
- ['../omnibus-software', '/home/vagrant/omnibus-software']
provisioner:
name: chef_zero
require_chef_omnibus: true # Always install the latest version of Chef
platforms:
- name: centos-5.10
run_list: yum-epel::default
- name: centos-6.5
run_list: yum-epel::default
- name: centos-7.0
run_list: yum-epel::default
- name: debian-7.2.0
run_list: apt::default
- name: debian-7.4
run_list: apt::default
- name: debian-6.0.8
run_list: apt::default
- name: freebsd-9.2
run_list:
- freebsd::portsnap
- freebsd::pkgng
- name: freebsd-10.0
run_list: freebsd::portsnap
- name: ubuntu-10.04
run_list: apt::default
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-12.10
run_list: apt::default
- name: ubuntu-13.04
run_list: apt::default
- name: ubuntu-13.10
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
# The following (private) boxes are shared via Atlas and are only
# available to users working for Chef. Sorry, it's about software licensing.
#
# Chef-internal users, you will need to:
# 1. Create an Atlas account: https://atlas.hashicorp.com/
# 2. Ping the Release Services room with your Atlas account name
# to be added to the relevant team in Atlas,
# 3. Do `vagrant login` with your Atlas creds so that you can download
# the private boxes.
#
# The Mac OS X boxes are VMware only also. You can enable VMware Fusion
# as the default provider by copying `.kitchen.local.yml.vmware.example`
# over to `.kitchen.local.yml`.
#
- name: macosx-10.8
driver:
box: chef/macosx-10.8 # private
- name: macosx-10.9
driver:
box: chef/macosx-10.9 # private
- name: macosx-10.10
driver:
box: chef/macosx-10.10 # private
- name: windows-7-professional
driver:
box: chef/windows-7-professional # private
- name: windows-8.1-professional
driver:
box: chef/windows-8.1-professional # private
- name: windows-2008r2-standard
driver:
box: chef/windows-server-2008r2-standard # private
attribute_defaults: &attribute_defaults
build_user: vagrant
build_user_group: vagrant
build_user_password: vagrant
suites:
- name: angrychef
attributes:
omnibus:
<<: *attribute_defaults
install_dir: /opt/angrychef
run_list:
- omnibus::default
- name: chef
provisioner:
chef_omnibus_install_options: -P angrychef
chef_omnibus_root: /opt/angrychef
attributes:
omnibus:
<<: *attribute_defaults
install_dir: /opt/chef
run_list:
- omnibus::default
- name: chefdk
attributes:
omnibus:
<<: *attribute_defaults
install_dir: /opt/chefdk
run_list:
- omnibus::default
- name: push-jobs-client
attributes:
omnibus:
<<: *attribute_defaults
install_dir: /opt/push-jobs-client
run_list:
- omnibus::default
|