-
Notifications
You must be signed in to change notification settings - Fork 10
/
.kitchen.yml
48 lines (45 loc) · 1.22 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
---
platforms:
- name: vagrant-ubuntu-12.04
driver_plugin: vagrant
driver_config:
box: canonical-ubuntu-12.04
box_url: http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box
require_chef_omnibus: 11.2.0-1
run_list:
- recipe[apt]
- name: vagrant-centos-6.3
driver_plugin: vagrant
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::epel]
#- name: rackspace-ubuntu-12.04
# driver_plugin: rackspace
# driver_config:
# image_id: e4dbdba7-b2a4-4ee5-8e8f-4595b6d694ce
# require_chef_omnibus: 11.2.0-1
# run_list:
# - recipe[apt]
#- name: rackspace-centos-6.3
# driver_plugin: rackspace
# driver_config:
# image_id: da1f0392-8c64-468f-a839-a9e56caebf07
# require_chef_omnibus: 11.2.0-1
# run_list:
# - recipe[yum::epel]
suites:
- name: default
run_list:
- recipe[osops-utils::packages]
- recipe[graphite::graphite]
- recipe[graphite::whisper]
- recipe[minitest-handler]
attributes:
developer_mode: true
osops_networks:
management: "10.0.0.0/8"
public: "10.0.0.0/8"
minitest:
tests: '**/graphite/*_test.rb'