-
Notifications
You must be signed in to change notification settings - Fork 101
/
.kitchen.yml
63 lines (60 loc) · 1.52 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
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-13.04
driver_config:
box: opscode-ubuntu-13.04
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-13.04_provisionerless.box
customize:
memory: 1024
network:
- ["forwarded_port", {guest: 80, host: 8080}]
- ["forwarded_port", {guest: 8080, host: 8081}]
run_list:
- recipe[apt]
- name: centos-6.4
driver_config:
box: opscode-centos-6.4
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_centos-6.4_provisionerless.box
customize:
memory: 1024
network:
- ["forwarded_port", {guest: 80, host: 8080}]
- ["forwarded_port", {guest: 8080, host: 8081}]
run_list:
- recipe[yum]
suites:
- name: default
run_list:
- recipe[haproxy]
- recipe[graphite]
- recipe[monitor::master]
- recipe[monitor::haproxy]
- recipe[monitor::redis]
- recipe[monitor::rabbitmq]
attributes:
authorization:
sudo:
users: ["vagrant", "kitchen"]
passwordless: true
include_sudoers_d: true
haproxy:
enable_stats_socket: true
apache:
listen_ports: [8080]
graphite:
listen_port: 8080
carbon:
service_type: "init"
sensu:
dashboard:
port: 4000
monitor:
use_nagios_plugins: true
use_system_profile: true
use_statsd_input: true
metric_handlers: ["graphite"]
additional_client_attributes:
haproxy_services: "servers-http"