deric / puppet-mesos

Puppet module for managing Mesos nodes
https://forge.puppetlabs.com/deric/mesos
Apache License 2.0
69 stars 61 forks source link

$zk_session_timeout #81

Closed tamama closed 7 years ago

tamama commented 7 years ago

Hi there, Greetings,

May I know what is the best practice here to add an --zk_session_timeout option when starting the Mesos master?

Kind regards, Tamama

deric commented 7 years ago

Typically via options:

class{'mesos::master':
  options => {
    zk_session_timeout => 20
  }
}

or via hiera config:

mesos::master::options:
    zk_session_timeout: 20 
tamama commented 7 years ago

Though I figured that out sometime ago from your source code, I thank you for confirming the answer. :)