Displaying 2 results from an estimated 2 matches for "listening_service".
2013 Feb 01
3
Cannot get puppetlabs-haproxy to do what I want
...sing this module, which stinks because
its behavior is EXACTLY what I am looking for... whenever I bootstrap new
rabbitMQ nodes I want to add them to our HAProxy instance.
Here''s my relevant site.pp entries:
node /^rabbit.*/ inherits basenode {
@@haproxy::balancermember { $fqdn:
listening_service => ''messaging00'',
server_names => $::hostname,
ipaddresses => $::ipaddress,
ports => [''55672'', ''5672''],
options => ''check''
}
include roles::rabbitmq::worker...
2013 Jan 09
0
concat and ordering
...aproxy module.
The module uses concat and I get how it works, but I''m having some problems
with the sequencing.
What the module does is:
For the listener:
order => "20-${name}" // ${name} is the name of the listening service
For the balancermember
order => "20-${listening_service}-${name}" // listening_service is == name
above and $name == the name of the member
on the surface this seems correct to generate a file with a parent child
relationship
listener1
member1
member2
listener2
member1
memeber2
From speaking with other folks who use the module thi...