Application cookbook which installs and configures mesos. This cookbook does not install zookeeper for you. I specifically remove it from the dependency install since I don't think its heplful for mesos to install this for you. You can use this cookbook zookeeper-cluster to setup and install zookeeper.
- Ubuntu
- CentOS
Name | Description |
---|---|
poise | Library cookbook built to aide in writing reusable cookbooks. |
poise-service | Library cookbook built to abstract service management. |
The current attributes are the bare minimum to get the service up and running. This whole cookbook assumes you understand mesos and its components. There is an option collector which will create files(key) and write the options(value) into the directory of the instance(master/slave).
A single mesos instance would look like this.
mesos_instance "testing" do
type "master" # you can do master/slave/standalone
listen "172.16.10.10"
port 5000
quorum 1
zk "zk:///172.16.10.10"
additional_options do
example "example" # will create /etc/mesos-master/example, which contains example in the file
example2 "example2" # will create /etc/mesos-master/example2, which contains example2 in the file
end
end
- Author:: Anthony Caiafa ([email protected])
Copyright 2015 Bloomberg Finance L.P.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.