forked from arunjax/cookbooks-1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.kitchen.yml
59 lines (57 loc) · 1.34 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
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-12.04
driver_config:
box: vagrant-ubuntu-12.04
box_url: http://files.vagrantup.com/precise64.box
require_chef_omnibus: true
run_list:
- recipe[apt]
- name: ubuntu-10.04
driver_config:
box: vagrant-ubuntu-10.04
box_url: http://files.vagrantup.com/lucid64.box
require_chef_omnibus: true
run_list:
- recipe[apt]
# - name: centos-6.3
# driver_config:
# box: opscode-centos-6.3
# box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-6.3_chef-11.2.0.box
# run_list:
# - recipe[yum]
# - name: centos-5.8
# driver_config:
# box: opscode-centos-5.8
# box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-5.8_chef-11.2.0.box
# run_list:
# - recipe[yum]
suites:
- name: mongo
run_list:
- recipe[build-essential]
- recipe[mongodb::10gen_repo]
- recipe[mongodb]
- recipe[mongo_test]
attributes:
build_essential:
compiletime: true
mongodb:
auth: true
- name: replicaset
run_list:
- recipe[build-essential]
- recipe[mongodb::10gen_repo]
- recipe[mongodb]
- recipe[mongodb::replicaset]
- recipe[mongo_test]
attributes:
mongodb:
cluster_name: clustrname
replicaset_name: replset
replicaset_members:
- 127.0.0.1
auth: true