puppet-nodepool/templates/nodepool-launcherv3.default.erb
Paul Belanger 8d91d91108 Add statsd_prefix to launcher.pp
Expose the ability to override our statsd_prefix, which defaults to
none.

Change-Id: I8bef6aae5a566ff3a34e816ece14f9cfc1ef289d
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2017-03-10 10:49:57 -05:00

9 lines
320 B
Plaintext

<% if @statsd_host != nil && @statsd_host != "" -%>
export STATSD_HOST=<%= @statsd_host %>
export STATSD_PORT=8125
<% end -%>
<% if @statsd_prefix != nil && @statsd_prefix != "" -%>
export STATSD_PREFIX=<%= @statsd_prefix %>
<% end -%>
DAEMON_ARGS="-c /etc/nodepool/nodepool.yaml -l /etc/nodepool/launcher-logging.conf"