forked from djoos-cookbooks/newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
83 lines (80 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
driver_plugin: vagrant
provisioner:
name: chef_zero
attributes:
newrelic:
license: '0000ffff0000ffff0000ffff0000ffff0000ffff'
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
attributes:
rubygems: 'rubygems'
newrelic:
php_agent:
web_server:
service_name: apache2
php_config: '/etc/php5/conf.d/newrelic.ini'
- name: ubuntu-14.04
run_list:
- recipe[apt]
attributes:
rubygems: 'rubygems-integration'
newrelic:
php_agent:
web_server:
service_name: apache2
php_config: '/etc/php5/mods-available/newrelic.ini'
- name: centos-6.8
attributes:
rubygems: 'rubygems'
newrelic:
php_agent:
web_server:
service_name: httpd
php_config: '/etc/php.d/newrelic.ini'
suites:
- name: default
run_list:
- recipe[newrelic::default]
attributes:
newrelic:
server_monitor_agent:
service_notify_action: nothing
service_actions:
- nothing
- name: php-agent
run_list: "recipe[newrelic_lwrp_test::agent_php]"
attributes:
newrelic:
php_agent:
execute_php5enmod: false
- name: php-agent-php5enmod
run_list: "recipe[newrelic_lwrp_test::agent_php]"
attributes:
newrelic:
php_agent:
execute_php5enmod: true
includes:
- ubuntu-14.04
- name: server-monitor
run_list: "recipe[newrelic_lwrp_test::server_monitor]"
- name: java-agent
run_list: "recipe[newrelic_lwrp_test::agent_java]"
attributes:
newrelic:
java_agent:
install_dir: '/opt/tomcat_java_test_app'
- name: ruby-agent
run_list: "recipe[newrelic_lwrp_test::agent_ruby]"
attributes:
newrelic:
ruby_agent:
install_dir: '/opt/newrelic/ruby'
- name: python-agent-recipe
run_list: "recipe[newrelic_lwrp_test::agent_python_recipe]"
- name: nodejs-agent
run_list: "recipe[newrelic_lwrp_test::agent_nodejs]"
- name: nodejs-agent-recipe
run_list: "recipe[newrelic_lwrp_test::agent_nodejs_recipe]"