We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286b968 commit 1aa6b76Copy full SHA for 1aa6b76
manifests/master.pp
@@ -41,6 +41,7 @@
41
$credentials = [],
42
$syslog_logger = true,
43
$force_provider = undef, #temporary workaround for starting services
44
+ $quorum = $mesos::quorum,
45
$use_hiera = $mesos::use_hiera,
46
$single_role = $mesos::single_role,
47
) inherits mesos {
templates/master.erb
@@ -14,6 +14,12 @@
14
# ZooKeeper URL (used for leader election amongst masters)
15
export MESOS_ZK="<%= @zookeeper_url %>"
16
17
+# The size of the quorum of replicas when using 'replicated_log' based
18
+# registry. It is imperative to set this value to be a majority of
19
+# masters i.e., quorum > (number of masters)/2.
20
+
21
+QUORUM=<%= @quorum %>
22
23
# Human readable name for the cluster, displayed in the webui
24
export MESOS_CLUSTER="<%= @cluster %>"
25
0 commit comments