Skip to content

Instantly share code, notes, and snippets.

@benley
Created May 22, 2015 20:15
Show Gist options
  • Save benley/1400bc3d00e57901a8ed to your computer and use it in GitHub Desktop.
Save benley/1400bc3d00e57901a8ed to your computer and use it in GitHub Desktop.
{ 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