Created
May 22, 2015 20:15
-
-
Save benley/1400bc3d00e57901a8ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
services.mesos.master = { | |
enable = true; | |
zk = "zk://zookeeper.example.com:2181/mesos"; | |
extraCmdLineOptions = [ | |
"--cluster=name_your_cluster" | |
]; | |
quorum = 2 # floor((number of mesos masters)/2) + 1 | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment