forked from djoos-cookbooks/newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
131 lines (128 loc) · 3.63 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
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
123
124
125
126
127
128
129
130
131
---
driver_plugin: vagrant
provisioner:
name: chef_zero
chef_version: 12.19.36
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'
ruby_agent:
version: 3.18.1.330 # Ruby version >= 1.8.7, newrelic_rmp 4.x requires Ruby >= 2.0.0
- 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'
ruby_agent:
version: 3.18.1.330 # Ruby version >= 1.8.7, newrelic_rmp 4.x requires Ruby >= 2.0.0
- name: ubuntu-16.04
run_list:
- recipe[apt]
attributes:
rubygems: 'rubygems-integration'
java:
jdk_version: 7
newrelic:
php_agent:
web_server:
service_name: apache2
php_config: '/etc/php/7.0/mods-available/newrelic.ini'
nodejs:
repo: 'https://deb.nodesource.com/node_6.x'
- name: centos-6.8
attributes:
rubygems: 'rubygems'
newrelic:
php_agent:
web_server:
service_name: httpd
php_config: '/etc/php.d/newrelic.ini'
ruby_agent:
version: 3.18.1.330 # Ruby version >= 1.8.7, newrelic_rmp 4.x requires Ruby >= 2.0.0
- name: centos-7.2
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:
enable_module: false
- name: php-agent-enable-module
run_list: "recipe[newrelic_lwrp_test::agent_php]"
attributes:
newrelic:
php_agent:
enable_module: true
- name: php-agent-php5enmod
run_list: "recipe[newrelic_lwrp_test::agent_php]"
attributes:
newrelic:
php_agent:
execute_php5enmod: true
- 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: java-agent-not-latest-version
run_list: "recipe[newrelic_lwrp_test::agent_java]"
attributes:
newrelic:
java_agent:
version: 3.31.1
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
run_list: "recipe[newrelic_lwrp_test::agent_python]"
- 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]"
- name: lwrp_yml
run_list: "recipe[newrelic_lwrp_test::lwrp_yml]"
attributes:
newrelic:
java_agent:
install_dir: '/opt/tomcat_java_test_app'