You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey
The reload_service class is trying to reload the consul service by explicitly specifying the rpc addr and port.
While this makes perfect sense in case non default ports are used, it fails when the rpc_addr was set to listen to 0.0.0.0.
if $consul::manage_service == true and $consul::service_ensure == 'running' {
exec { 'reload consul service':
path => [$consul::bin_dir,'/bin','/usr/bin'],
command => "consul reload -rpc-addr=${consul::rpc_addr}:${consul::rpc_port}",
refreshonly => true,
}
}
The text was updated successfully, but these errors were encountered:
Hey
The reload_service class is trying to reload the consul service by explicitly specifying the rpc addr and port.
While this makes perfect sense in case non default ports are used, it fails when the rpc_addr was set to listen to 0.0.0.0.
The text was updated successfully, but these errors were encountered: