cookbook 'et_mesos', '= 1.0.0'
et_mesos (13) Versions 1.0.0 Follow0
Installs/Configures mesos
cookbook 'et_mesos', '= 1.0.0', :supermarket
knife supermarket install et_mesos
knife supermarket download et_mesos
Mesos Cookbook
Install Mesos (http://mesos.apache.org/) and configure mesos master and slave.
This cookbook also supports installation by both bulding from source and with Mesosphere package.
You can switch installation type using the node[:et_mesos][:type]
attribute (source
or mesosphere
).
Platform
Currently only supports ubuntu
and centos
. But centos
support is experimental.
If you would use cgroups
isolator or docker
containerizer, Ubuntu 14.04 is highly recommended. Note that docker
containerizer is only supported by Mesos 0.20.0+.
Installation Type
You have to specify intallation type (source
or mesosphere
) by setting node[:et_mesos][:type]
variable.
Currently this cookbook defaults to build mesos from source, i.e.
node[:et_mesos][:type]
is set to source
.
Recipes
mesos::default
Install mesos using source
recipe or mesosphere
recipe, depending
on what the node[:et_mesos][:type]
attribute is set to (source
or mesosphere
).
mesos::build_from_source
Install mesos (download zip from github, configure, make, make install).
mesos::mesosphere
Install mesos using Mesosphere's mesos package.
You can also install zookeeper package by node[:et_mesos][:mesosphere][:with_zookeeper]
if required because Mesosphere's mesos package doesn't include zookeeper.
mesos::master
Configure master and cluster deployment configuration files, and start
mesos-master
.
node[:et_mesos][:prefix]/var/mesos/deploy/masters
node[:et_mesos][:prefix]/var/mesos/deploy/slaves
node[:et_mesos][:prefix]/var/mesos/deploy/mesos-deploy-env.sh
node[:et_mesos][:prefix]/var/mesos/deploy/mesos-master-env.sh
If you choose mesosphere
as node[:et_mesos][:type]
, the node[:et_mesos][:prefix]
attribute
will be overridden to /usr/local
, which is because the package from Mesosphere
installs mesos into that directory.
Furthermore, this recipe will also configure upstart configuration files.
/etc/mesos/zk
/etc/defaults/mesos
/etc/defaults/mesos-master
How to configure mesos-master
You can configure mesos-master
command line options using the node[:et_mesos][:master]
attribute.
If you have a configuration as shown below:
node[:et_mesos][:master] = {
port: "5050",
log_dir: "/var/log/mesos",
zk: "zk://localhost:2181/mesos",
cluster: "MyCluster",
quorum: "1"
}
Then mesos-master
will be invoked with command line options like this:
mesos-master --zk=zk://localhost:2181/mesos --port=5050 --log_dir=/var/log/mesos --cluster=MyCluster
See the latest Mesos config docs for available options or the output of mesos-master --help
.
mesos::slave
Configure slave configuration files, and start mesos-slave
.
node[:et_mesos][:prefix]/var/mesos/deploy/mesos-slave-env.sh
If you choose mesosphere
as node[:et_mesos][:type]
, the node[:et_mesos][:prefix]
attribute
will be overridden to /usr/local
, which is because the package from Mesosphere
installs mesos into that directory by default.
Furthermore, this recipe also configures upstart configuration files.
/etc/mesos/zk
/etc/defaults/mesos
/etc/defaults/mesos-slave
How to configure mesos-slave
You can configure mesos-slave
command line options by node[:et_mesos][:slave]
hash.
If you have a configuration as shown below:
node[:et_mesos][:slave] = {
master: 'zk://localhost:2181/mesos',
log_dir: '/var/log/mesos',
containerizers: 'docker,mesos',
isolation: 'cgroups/cpu,cgroups/mem',
work_dir: '/var/run/work'
}
Then mesos-slave
will be invoked with command line options like this:
mesos-slave --master=zk://localhost:2181/mesos --log_dir=/var/log/mesos --containerizers=docker,mesos --isolation=cgroups/cpu,cgroups/mem --work_dir=/var/run/work
See the latest Mesos config docs for available options or the output of mesos-slave --help
.
[Deprecated] mesos::docker-executor
Install mesos-docker executor.
Currently only Mesos 0.14.0 is supported.
NOTE: This cookbook DOES NOT install docker
automatically.
So, you need to install docker manually.
Usage
Wrap this cookbook, setting the node[:et_mesos][:type]
attribute as appropriate for your installation, and include_recipe 'mesos::master'
or include_recipe 'mesos::slave'
, depending on what part of the cluster you need to provision.
The recommendation would be to have two wrapper cookbooks, one for the master(s), and another for your slave(s).
Attributes
<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><tt>[:et_mesos][:type]</tt></td>
<td>String</td>
<td>installation type(<tt>source</tt> or <tt>mesosphere</tt>)</td>
<td><tt>source</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:version]</tt></td>
<td>String</td>
<td>Version(branch or tag name at <a href="http://github.com/apache/mesos">http://github.com/apache/mesos</a>).</td>
<td><tt>0.22.1</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:prefix]</tt></td>
<td>String</td>
<td>Prefix value to be passed to configure script. This value will be overridden by <tt>/usr/local</tt> if <tt>node[:et_mesos][:type] == mesosphere</tt>.</td>
<td><tt>/usr/local</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:home]</tt></td>
<td>String</td>
<td>Directory which mesos sources are extracted to(<tt>node[:et_mesos][:home]/mesos</tt>).</td>
<td><tt>/opt</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:build][:skip_test]</tt></td>
<td>Boolean</td>
<td>Flag whether test will be performed on the build before installing.</td>
<td><tt>true</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:mesosphere][:with_zookeeper]</tt></td>
<td>String</td>
<td>Flag for installing zookeeper package, only applies to <tt>[:et_mesos][:type] = mesosphere</tt>.</td>
<td><tt>false</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:ssh_opt]</tt></td>
<td>String</td>
<td>ssh options to be used in <tt>mesos-[start|stop]-cluster</tt></td>
<td><tt>-o StrictHostKeyChecking=no <br> -o ConnectTimeout=2</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:deploy_with_sudo]</tt></td>
<td>String</td>
<td>Flag whether sudo will be used in <tt>mesos-[start|stop]-cluster</tt></td>
<td><tt>1</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:cluster_name]</tt></td>
<td>String</td>
<td>[OBSOLETE] Human readable name for the cluster, displayed at webui. </td>
<td><tt>MyCluster</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:master_ips]</tt></td>
<td>Array of String</td>
<td>IP list of masters used in <tt>mesos-[start|stop]-cluster</tt></td>
<td>[ ]</td>
</tr>
<tr>
<td><tt>[:et_mesos][:slave_ips]</tt></td>
<td>Array of String</td>
<td>IP list of slaves used in <tt>mesos-[start|stop]-cluster</tt></td>
<td>[ ]</td>
</tr>
<tr>
<td><tt>[:et_mesos][:master][:zk]</tt></td>
<td>String</td>
<td>[REQUIRED(0.19.1+)] ZooKeeper URL (used for leader election amongst masters). May be one of:<br>
zk://host1:port1,host2:port2,…path<br>
zk://username:password@host1:port1,host2:port2,…/path<br>
file://path/to/file (where file contains one of the above)</td>
<td></td>
</tr>
<tr>
<td><tt>[:et_mesos][:master][:work_dir]</tt></td>
<td>String</td>
<td>[REQUIRED(0.19.1+)] Where to store the persistent information stored in the Registry.</td>
<td><tt>/tmp/mesos</tt></td>
</tr>
<tr>
<td><tt>[:et_mesos][:master][:quorum]</tt></td>
<td>String</td>
<td>[REQUIRED(0.19.1+)] The size of the quorum of replicas when using “replicated_log” based registry. It is imperative to set this value to be a majority of masters, i.e., quorum > (number of masters) / 2.</td>
<td></td>
</tr>
<tr>
<td><tt>[:et_mesos][:master][:option_name]</tt></td>
<td>String</td>
<td>You can set arbitrary command line option for <tt>mesos-master</tt>, replace option_name
with the key for the option to set. See the <a href="http://mesos.apache.org/documentation/latest/configuration/">latest Mesos config docs</a> for available options, or the output of mesos-master --help
.</td>
<td></td>
</tr>
<tr>
<td><tt>[:et_mesos][:slave][:master]</tt></td>
<td>String</td>
<td>[REQUIRED] mesos master url.This should be ip:port for non-ZooKeeper based masters, otherwise a zk:// . when <tt>mesosphere</tt>, you should set zk:// address. </td>
<td></td>
</tr>
<tr>
<td><tt>[:et_mesos][:slave][:option_name]</tt></td>
<td>String</td>
<td>Like <tt>[:et_mesos][:master][:option_name]</tt> above, arbitrary options may be specified as a key for a slave by replacing option_name
with your option’s key.</td>
<td></td>
</tr>
</table>
Testing
There are a couple of test suites in place:
-
chefspec
for unit tests. -
test-kitchen
withserverspec
for integration tests (usingvagrant
).
These test both source
and mesosphere
type installations (using both the master
and slave
recipes).
Contributing
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
License
MIT License. see [LICENSE.txt](LICENSE.txt)
(Please note that before 2015-02-06-18:00 PST, this project is opened under Apache License, Version 2.0. See also README.md in old version)
Dependent cookbooks
java >= 0.0.0 |
python >= 0.0.0 |
build-essential >= 0.0.0 |
maven >= 0.0.0 |
ulimit >= 0.0.0 |
apt >= 0.0.0 |
yum >= 0.0.0 |
Contingent cookbooks
Foodcritic Metric
1.0.0 failed this metric
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/docker-executor.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:90
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/masters.erb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-deploy-env.sh.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-deploy-env.sh.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-master-env.sh.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-master-env.sh.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-slave-env.sh.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-slave-env.sh.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/slaves.erb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/upstart.conf.for.source.erb:13
FC002: Avoid string interpolation where not required: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:78
FC002: Avoid string interpolation where not required: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:66
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:7
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:16
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/docker-executor.rb:7
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:43
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:44
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:50
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:14
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/zookeeper.rb:6
FC031: Cookbook without metadata file: /tmp/cook/bd8cbed378be592968493388/et_mesos/metadata.rb:1
FC045: Consider setting cookbook name in metadata: /tmp/cook/bd8cbed378be592968493388/et_mesos/metadata.rb:1
FC048: Prefer Mixlib::ShellOut: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:60
1.0.0 failed this metric
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/attributes/default.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/docker-executor.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/master.rb:90
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/masters.erb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-deploy-env.sh.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-deploy-env.sh.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-master-env.sh.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-master-env.sh.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-slave-env.sh.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/mesos-slave-env.sh.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/slaves.erb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/bd8cbed378be592968493388/et_mesos/templates/default/upstart.conf.for.source.erb:13
FC002: Avoid string interpolation where not required: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/slave.rb:78
FC002: Avoid string interpolation where not required: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:66
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:7
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/default.rb:16
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/docker-executor.rb:7
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:43
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:44
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/mesosphere.rb:50
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:14
FC019: Access node attributes in a consistent manner: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/zookeeper.rb:6
FC031: Cookbook without metadata file: /tmp/cook/bd8cbed378be592968493388/et_mesos/metadata.rb:1
FC045: Consider setting cookbook name in metadata: /tmp/cook/bd8cbed378be592968493388/et_mesos/metadata.rb:1
FC048: Prefer Mixlib::ShellOut: /tmp/cook/bd8cbed378be592968493388/et_mesos/recipes/source.rb:60