This repository has been archived by the owner on Mar 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathdefault-environment.yaml
56 lines (50 loc) · 1.72 KB
/
default-environment.yaml
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
---
classes:
- supervisor
- timezone
- wirbelsturm_yumrepos::confluent
- wirbelsturm_yumrepos::epel
- wirbelsturm_yumrepos::miguno
- wirbelsturm_yumrepos::nginx
- wirbelsturm_yumrepos::puppetlabs
# Common settings
wirbelsturm_common::ipv6_disable: true
wirbelsturm_common::ipv6_manage: true
wirbelsturm_common::manage_ntp: true
wirbelsturm_common::puppet_package_ensure: '3.3.1-1.el6'
# Kafka
kafka::config_map:
controlled.shutdown.enable: true
log.roll.hours: 48
log.retention.hours: 48
kafka::kafka_heap_opts: '-Xms512M -Xmx512M -XX:NewSize=200m -XX:MaxNewSize=200m'
kafka::kafka_opts: '-XX:CMSInitiatingOccupancyFraction=70 -XX:+PrintTenuringDistribution'
kafka::limits_manage: true
kafka::limits_nofile: 65536
kafka::zookeeper_connect:
- 'zookeeper1:2181'
# Storm
storm::package_ensure: '0.9.3-1.miguno'
storm::zookeeper_servers:
- 'zookeeper1'
storm::nimbus_host: 'nimbus1'
storm::nimbus_childopts: '-Xmx256m -Djava.net.preferIPv4Stack=true'
storm::ui_childopts: '-Xmx256m -Djava.net.preferIPv4Stack=true'
storm::supervisor_childopts: '-Xmx256m -Djava.net.preferIPv4Stack=true'
storm::worker_childopts: '-Xmx256m -Djava.net.preferIPv4Stack=true'
storm::supervisor_slots_ports:
- 6700
- 6701
# Supervisord
supervisor::logfile_maxbytes: '20MB'
supervisor::logfile_backups: 5
supervisor::autoupgrade: true
# Timezone
timezone::timezone: 'UTC'
# ZooKeeper
# If you want to use a quorum (of usually 3 or 5 ZooKeeper servers), use a configuration similar as the following.
# Make sure to set 'zookeeper::myid' appropriately for the machines in the quorum (myid must match 'server.X').
#zookeeper::quorum:
# - 'server.1=zookeeper1:2888:3888'
# - 'server.2=zookeeper2:2888:3888'
# - 'server.3=zookeeper3:2888:3888'