Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.0.0 < 7.0.0
- , , ,
Start using this module
Add this module to your Puppetfile:
mod 'deric-mesos', '1.1.0'
Learn more about managing modules with a PuppetfileDocumentation
Mesos Puppet Module
COMPATIBILITY NOTE: current version (0.6.x) requires puppetlabs-apt >= 2.1.0
which has significantly refactored API (doesn't matter if you don't wanna use Mesosphere APT repo).
deric-mesos |
Puppet 3.x | Puppet 4.x | Puppet 5.x |
---|---|---|---|
0.9.x |
:heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
1.x.x |
:x: | :heavy_check_mark: | :heavy_check_mark: |
For installing master
class{'mesos':
repo => 'mesosphere',
zookeeper => [ '192.168.1.1', '192.168.1.2', '192.168.1.3'],
}
class{'mesos::master':
work_dir => '/var/lib/mesos',
options => {
quorum => 2
}
}
From ZooKeeper array an URI is created zk://192.168.1.1:2181,192.168.1.2:2181,192.168.1.3:2181/mesos
. In order to customize this use either server:port
or see zk_path
and zk_default_port
variable.
Example slave configuration:
class{'mesos::slave':
attributes => {
'env' => 'production',
},
resources => {
'ports' => '[10000-65535]'
},
options => {
'isolation' => 'cgroups/cpu,cgroups/mem',
'containerizers' => 'docker,mesos',
'hostname' => $::fqdn,
}
}
for using Hiera and other options see below.
Shared parameters
Parameters:
zookeeper
- Array of ZooKeeper servers (with port) which is used for slaves connecting to the master and also for leader election, e.g.:- single ZooKeeper:
127.0.0.1:2181
(which isn't fault tolerant)- multiple ZooKeepers:
[ '192.168.1.1:2181', '192.168.1.2:2181', '192.168.1.3:2181']
(usually 3 or 5 ZooKeepers should be enough) - ZooKeeper URL will be stored in
/etc/mesos/zk
,/etc/default/mesos-master
and/or/etc/default/mesos-slave
- multiple ZooKeepers:
- single ZooKeeper:
conf_dir
- directory with simple configuration files containing master/slave parameters (name of the file is a key, contents its value)- this directory will be completely managed by Puppet
env_var
- shared master/slave execution environment variables (see example under slave)version
- install specific version of Mesosmanage_python
- Control whether mesos module should install pythonmanage_zk_file
- Control whether module manages /etc/mesos/zk (default: true)manage_service
- Whether Puppet should ensure service state (applies tomesos-master
andmesos-slave
) (default:true
)single_role
- When enabled each machine is expected to run either master or slave service (default:true
)manage_service_file
Provide custom service definition - onlysystemd
is supported right now (default:false
)systemd_after
Ensures that the configured unit is started after the listed unit finished starting up (default:network.target
)systemd_wants
If this unit gets activated, the units listed here will be activated as well (default:network.target
)
Master
Should be as simple as this, on master node:
class{'mesos::master': }
optionally you can specify some parameters or it is possible to configure Mesos via Hiera (see below).
class{'mesos::master':
master_port => 5050,
work_dir => '/var/lib/mesos',
options => {
quorum => 4
}
}
For slave you have to specify either master
class{'mesos::slave':
master => '192.168.1.1'
}
or zookeeper
node(s) to connect:
class{'mesos::slave':
zookeeper => ['192.168.1.1:2181', '192.168.1.2:2181', '192.168.1.3:2181']
}
conf_dir
default value is/etc/mesos-master
(this directory will be purged by Puppet!)- for list of supported options see
mesos-master --help
- for list of supported options see
env_var
- master's execution environment variables (see example under slave)acls
- hash of mesos acls,{"permissive" => true, "register_frameworks" => [..]}
(default:{}
)acls_file
- path to file to store acls (default:/etc/mesos/acls
)credentials
- array of mesos credentials,[{'principal' => 'some-principal', 'secret' => 'some-secret'}]
(default:[]
)credentials_file
- path to file to store credentials (default:/etc/mesos/master-credentials
)syslog_logger
- whether to log the Mesos service's output to syslog - note that if this parameter is false then it is up to your init system to log the process's output and if Mesos fails to start properly it will not produce log files of its own (default: true)
listen address
By default Mesos will bind to 0.0.0.0
. If you want to change the IP address Mesos is binding to, you can either provide a Puppet Fact:
class{'mesos::master':
listen_address => $::ipaddress_eth0
}
or directly use some IP address:
class{'mesos::master':
listen_address => '192.168.1.1'
}
Note that Facter 2 will contain incorrect IP address in $::ipaddress
fact when Docker is installed. See FACT-380 for more information.
By default no IP address is set, which means that Mesos will use IP to which translates hostname -f
(you can influence bind address simply in /etc/hosts
).
Slave
enable
- install Mesos slave service (default:true
)port
- slave's port for incoming connections (default:5051
)master
- ip address of Mesos master (default:localhost
)master_port
- Mesos master's port (default:5050
)work_dir
- directory for storing task's temporary files (default:/var/lib/mesos
)env_var
- slave's execution environment variables - a Hash, if you are using Java, you might need e.g.:principal
- mesos principal used for auththenticationsecret
- secret used for auththenticationcredentials_file
- path to file to store credentials (default:/etc/mesos/slave-credentials
)syslog_logger
- whether to log the Mesos service's output to syslog (default: true)
class{'mesos::slave':
master => '192.168.1.1',
env_var => {
'JAVA_HOME' => '/usr/bin/java'
}
}
in a similar manner you can specify cgroups isolation:
class{'mesos::slave':
zookeeper => 'zk://192.168.1.1:2181/mesos',
isolation => 'cgroups/cpu,cgroups/mem',
cgroups => {
'hierarchy' => '/sys/fs/cgroup',
'root' => 'mesos',
}
}
conf_dir
default value is/etc/mesos-slave
(this directory will be purged by Puppet!)- for list of supported options see `mesos-slave --help`
File based configuration
As Mesos configuration flags changes with each version we don't provide directly a named parameter for each flag. mesos::property
allows to create a parameter file. e.g. configure value in /etc/mesos-slave/hostname
:
mesos::property { 'hostname':
value => 'mesos.hostname.com',
dir => '/etc/mesos-slave',
notify => Service['mesos-slave']
}
Remove this file simply use the ensure
parameter:
mesos::property { 'hostname':
ensure => absent,
dir => '/etc/mesos-slave',
notify => Service['mesos-slave']
}
This is equivalent approach to
class{'mesos::slave':
options => {
'hostname' => 'mesos.hostname.com'
}
}
which will create a file /etc/mesos-slave/hostname
with content mesos.hostname.com
(where /etc/mesos-slave
is a slave's $conf_dir
).
Yet another option would be to pass this value via Hiera (see the section below).
Boolean flags
Current Mesos packages recognizes boolean flags like --[no-]quiet
via files named as /etc/mesos-slave/?quiet
for --quiet
(true) and /etc/mesos-slave/?no-quiet
for false value.
class{'mesos::slave':
options => {
'quiet' => true
}
}
since 0.4.1
Mesos Standalone
Standalone mode (non-HA) is useful for testing, it does not require ZooKeeper URI, nor quorum
variable. If you are running both master and slave on the same node, make sure you disable single_role
parameter:
class{'::mesos':
single_role => false,
}
Hiera support
All configuration could be handled by Hiera. Simple parameter are looked up by default in Puppet 3, however hashes won't get merged. In order to merge options from multiple Hiera files set mesos::use_hiera: true
.
Either specify one master
mesos::master : '192.168.1.1'
or Zookeeper could be use for a fault-tolerant setup (multiple instances of zookeeper are separated by comma):
mesos::zookeeper:
- '192.168.1.1:2181'
- '192.168.1.2:2181'
- '192.168.1.3:2181'
Some parameters are shared between master and slave nodes:
mesos::master_port : 5050
mesos::log_dir : '/var/log/mesos'
mesos::conf_dir : '/etc/mesos'
mesos::owner : 'mesos'
mesos::group : 'mesos'
Other are master specific:
mesos::master::cluster : 'my_mesos_cluster'
mesos::master::whitelist : '*'
or slave specific:
mesos:slave::env_var:
JAVA_HOME: '/usr/bin/java'
Mesos service reads configuration either from ENV variables or from configuration files wich are stored in /etc/mesos-slave
resp. /etc/mesos-master
. Hash passed via options
will be converted to config files. Most of the options is possible to configure this way:
mesos::master::options:
webui_dir: '/usr/local/share/mesos/webui'
quorum: '4'
you can also use facts from Puppet:
mesos::master::options:
hostname: "%{::fqdn}"
cgroups with Hiera:
mesos::slave::isolation: 'cgroups/cpu,cgroups/mem'
mesos::slave::cgroups:
hierarchy: '/sys/fs/cgroup'
Limit resources used by Mesos slave:
mesos::slave::resources:
cpus: '10'
Mesos CLI
Mesos command line interface is written in Python (currently supports 2.6 and 2.7). The CLI provides serveral useful commands like mesos ps
,mesos ls
. For complete list see CLI documentation.
By default CLI is not installed with master nor slave, you should enable this manually by including
class{'mesos::cli':
debug => false,
response_timeout => 5,
}
on any machine that can connect to mesos-master and mesos-slaves.
Python installation
Python is required for Mesos Web UI and for CLI as well. Installing Python with Mesos should be responsibility of binary packages (Mesos could be build without UI), therefore this behaviour is not enabled by default.
You can enable this feature with following:
class{'mesos':
manage_python => true
}
or change Python package name, to match your needs:
class{'mesos':
manage_python => true,
python_package => 'python-dev'
}
Software repository
Software repositories could be enabled by defining a source:
mesos::repo: 'mesosphere'
mesos::manage_repo: true
or in Puppet code:
class{'mesos':
repo => 'mesosphere',
manage_repo => true,
}
by default this feature is enabled and right we support mesosphere.io repositories for:
- Debian/Ubuntu
- RedHat/CentOS
Feel free to send PR for other distributions/package sources.
Custom APT repository
Default APT repository is configured following way:
class{'mesos':
repo => {
location => "http://repos.mesosphere.io/${osfamily}",
release => $::lsbdistcodename,
repos => 'main',
key => {
'id' => '81026D0004C44CF7EF55ADF8DF7D54CBE56151BF',
'server' => 'keyserver.ubuntu.com',
},
include => {
'src' => false
},
}
}
where the repo
hash is passsed to apt::source
(from offcial apt module).
In case you want to override some settings, only the modified values needs to be passed e.g.:
class{'mesos':
repo => {
location => "http://myrepo.example.com",
key => {
'id' => '{mykey}',
'server' => 'keyserver.ubuntu.com',
},
}
}
since 0.8.2
Overriding service providers
Some Mesos packages does not respect conventions on given OS for starting services. For both mesos::master
and mesos::slave
you can specify mechanism which will be used for starting services.
class{'mesos::master':
service_provider => 'upstart'
}
If you want to create the service resource yourself, set service_provider
to none
.
Some reasonable values are:
init
upstart
- e.g. Ubuntusystemd
runit
none
- service won't be installedundef
- (default) detected provider by Puppet
A custom systemd
configuration example:
class{'mesos::master':
service_provider => 'systemd',
manage_service_file => true,
systemd_wants => 'network.target zookeeper.service',
systemd_after => 'network.target zookeeper.service',
}
Packages
You can build package by yourself and upload package to your software repository. Or use packages from mesosphere.io:
- Debian/Ubuntu
- RedHat/CentOS
Requirements
- Puppet > 3.0 and < 5.0
Dependencies
- stdlib version
>= 4.2.0
- we need functionis_bool
- apt version
>= 2.1.0
is required for Debian servers (since puppet-mesos 0.6)
Installation
Preferred installation is via puppet-librarian just add to Puppetfile
:
mod 'deric/mesos', '>= 0.6.0'
for latest version from git:
mod 'deric/mesos', :git => 'git://github.com/deric/puppet-mesos.git'
Acceptance testing
Fastest way is to run tests on prepared Docker images:
BEAKER_set=debian9-5.5 bundle exec rake acceptance
For examining system state set Beaker's ENV variable BEAKER_destroy=no
:
BEAKER_destroy=no BEAKER_set=debian9-6.3 bundle exec rake acceptance
and after finishing tests connect to container:
Links
For more information see Mesos project
License
Apache License 2.0
Contributors
Alphabetical list of contributors (not necessarily up-to-date), generated by command git log --format='%aN' | sort -u | sed -e 's/^/\- /'
:
- Andrew Teixeira
- Chris Rebert
- Felix Bechstein
- Ian Burrell
- Jamie Hewland
- jfarrell
- Jing Dong
- Konrad Scherer
- krall
- Kyle Anderson
- Maksym Melnychok
- Oriol Fitó
- Paul Otto
- Rhommel Lamas
- Sam Stoelinga
- Sean McLaughlin
- Sophie Haskins
- Tadas Vilkeliskis
- taik0
- Tomas Barton
- Tom Stockton
- William Leese
deric-mesos
v1.1.0
- Add parameter
mesos::manage_repo
that would disable repository management (#93) - Fix Ubuntu support (#89)
- Workaround for CentOS, RHEL (#87, #90)
- Basic acceptance tests
- Full diff
v1.0.3
- Full diff
- Support
puppetlabs-apt
6.x
v1.0.2
- Full diff
- Fixed the mesos_version variable check, which fails if the puppet server has "strict_variables = true" #91
- Adds notifier from credentials and acls files to services #92
- Mark Puppet 6 and new versions of
stdlib
andapt
as compatible
v1.0.1
- Full diff
- Fixed passing custom repository configuration
v1.0.0
-
Introduced Puppet 4 strong types
-
[Breaking Changes]
-
Dropped Puppet 3 support
-
Use Mesosphere repo by default
v0.9.1
- Full diff
- Use https for package repositories (#88)
- Fixed insecure dev dependency (
nokogiri
)
v0.9.0
- Full diff
- New features:
- [Breaking Changes]
force_provider
replaced withservice_provider
- Agent's
work_dir
defaults to/var/lib/mesos
v0.8.4
- FIX: Install the package before managing the $conf_dir for slave #79 #72
- full changelog
v0.8.3
- incomplete release, fixed running tests on Ruby > 2.2.0
v0.8.2
- FIX: /etc/init.d scripts not found on installation #28
- FEATURE: allow passing custom APT configuration #77
- systemd disabled on older systems #74
- removed code duplication #75
- expire yum cache #76
- full changelog
v0.8.1
- Removing configuration file should cause service reload #73
- Refactor mesos::property and its spec #68
- Undef property specs failing with new rspec #70
- full changelog
v0.8.0
- [BC]
single_role
: by default node is either master xor slave #62 - ZooKeeper servers are defined as an array (62ebc80498c35314af3b8ec56d2637c53d15ba8f) - old syntax is as well supported
- support alternative pip providers #63
- fix: restart service when
/etc/default/mesos-master
or/etc/default/mesos-slave
changes #64 - prefix credentials file with
file://
#65 - full changes diff
v0.7.1
- Add ability to disable logging to syslog #60
- Add
mesos_version
fact (312d441d163fe5115252a6e2034b4026d984521c) - test against Puppet 4
- diff to previous version
v0.7.0
- Fix service restart when new version is installed #55
- Support Mesos CLI management
- Fix setting credential for mesos-slave #57
- Allow changing path to
/etc/default/mesos
#58 - Add ensure parameter to mesos::property #59
mesos::property
require/notify fixes #56- full diff to last patch version
- diff to last minor version - 0.6.0
v0.6.5
- Support ACLs #49 - Note: Mesos
<0.26
reads secrets as base64 encoded byte array, Mesos>=0.26
reads secrets as plain strings - Fix running
apt-get update
#54 - Add owner and group parameters to
mesos::property
#52 - full patch version diff
Dependencies
- puppetlabs-stdlib (>= 2.4.0 < 7.0.0)
- puppetlabs-apt (>= 3.0.0 < 8.0.0)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2013 Tomas Barton 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.