forked from lusis/chef-logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
47 lines (44 loc) · 1.09 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
---
driver:
name: vagrant
driver_config:
require_chef_omnibus: true
use_vagrant_berkshelf_plugin: true
customize:
memory: 512
cpus: 1
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: centos-5.10
- name: centos-6.6
- name: centos-7.1
- name: fedora-21
- name: debian-7.6
suites:
- name: server
run_list:
- recipe[apt::default]
- recipe[java::default]
- recipe[logstash::server]
attributes:
java:
install_flavor: "oracle"
jdk_version: "7"
oracle:
accept_oracle_download_terms: true
logstash:
instance:
server:
xms: '256M'
xmx: '256M'
config_templates:
input_syslog: 'config/input_syslog.conf.erb'
output_stdout: 'config/output_stdout.conf.erb'
output_elasticsearch: 'config/output_elasticsearch.conf.erb'
pattern_templates:
default: 'patterns/custom_patterns.erb'
elasticsearch_ip: '127.0.0.1'
enable_embedded_es: true