我是 puppet 的新手,真的需要一些帮助:
我的应用程序 my_app.pp 值具有以下值:
akka_application_cluster_seed_nodes => '"akka.tcp://ActorSystem@host1:2551","akka.tcp://ActorSystem@host2:2551","akka.tcp://ActorSystem@host3:2551"'
现在在我的 erb 文件中,min-nr-of-members
值应该通过将akka_application_cluster_seed_nodes
数组的大小除以 2 加 1来计算
$min-nr-of-members = $akka_application_cluster_seed_nodes.size/2 +1
例如:
auto-down-unreachable-after = <%= get_param('akka_cluster_auto_down_unreachable_after')%>
and something like this:
<% $cluster= get_param('akka_cluster_auto_down_unreachable_after') %>
<% $minNumOfNodes = ($cluster.size / 2)+1 %>
min-nr-of-members = <% $minNumOfNodes %>
你能帮忙吗?