
This allows a user to tweak nodepool-builder image workers over using static settings. Change-Id: I54c879e1607d960629a2ed64efddff99491b6440 Depends-On: I5268e0ca34ab91ffae7a203ca710eecf571585e5 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
9 lines
387 B
Plaintext
9 lines
387 B
Plaintext
<% if @statsd_host != nil && @statsd_host != "" -%>
|
|
export STATSD_HOST=<%= @statsd_host %>
|
|
export STATSD_PORT=8125
|
|
<% end -%>
|
|
<% @environment.keys.sort.each do |key| -%>
|
|
export <%= key %>='<%= @environment[key] %>'
|
|
<% end -%>
|
|
DAEMON_ARGS="-c /etc/nodepool/nodepool.yaml -l /etc/nodepool/builder-logging.conf --build-workers <%= @build_workers %> --upload-workers <%= @upload_workers %>"
|