- Overview
- Module Changes
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with mattermost
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module installs and configures Mattermost, to provide secure, private cloud messaging for teams and enterprises. More information is available at: https://about.mattermost.com.
The name for this deployment solution in the context of the
Mattermost branding guidelines
is Puppet module for Mattermost by Richard Grainger
.
Following automated deployment, the following steps are required to make your system production-ready:
Please see https://docs.mattermost.com for the official Mattermost documentation.
From module version 1.7.0, the default value of conf
(the default
Mattermost configuration file location) has changed to /etc/mattermost.conf
.
This is to allow configuration changes made using the web GUI to be preserved
during Mattermost application upgrades.
The Mattermost module does the following:
- Installs the Mattermost server from a release archive on the web, or an alternative download location within your firewall.
- Installs and configures a daemon (service) for Mattermost in the format native to your operating system.
- Configures Mattermost according to settings you provide.
- Downloads and installs Mattermost server
(defaults to
/opt/mattermost-${version}
). - Creates a friendly symbolic link to the installation directory (defaults to
/opt/mattermost
). - Creates a configuration file (defaults to
/etc/mattermost.json
) based on the vendor-provided configuration file and adds user-supplied options. - Creates a Mattermost daemon (service) using your operating system's native service provider.
If you have a suitable database installed for Mattermost server to use as a backend, this is the minimum you need to get Mattermost server working:
class { 'mattermost':
override_options => {
'SqlSettings' => {
'DriverName' => 'postgres',
'DataSource' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
},
},
}
This will install a Mattermost server listening on the default TCP port (currently 8065).
Here is an example of Mattermost using PostgreSQL as a database and NGINX as a reverse proxy, all running on the same system (requires puppetlabs/postgresql and puppet/nginx):
class { 'postgresql::globals':
manage_package_repo => true,
version => '9.4',
} ->
class { 'postgresql::server':
ipv4acls => ['host all all 127.0.0.1/32 md5'],
}
postgresql::server::db { 'mattermost':
user => 'mattermost',
password => postgresql_password('mattermost', 'mattermost'),
}
postgresql::server::database_grant { 'mattermost':
privilege => 'ALL',
db => 'mattermost',
role => 'mattermost',
} ->
class { 'mattermost':
override_options => {
'SqlSettings' => {
'DriverName' => 'postgres',
'DataSource' => "postgres://mattermost:mattermost@127.0.0.1:5432/mattermost?sslmode=disable&connect_timeout=10",
},
},
}
class { 'nginx': }
nginx::resource::upstream { 'mattermost':
members => [ 'localhost:8065' ],
}
nginx::resource::server { 'mattermost':
server_name => [ 'myserver.mydomain' ],
proxy => 'http://mattermost',
location_cfg_append => {
'proxy_http_version' => '1.1',
'proxy_set_header Upgrade' => '$http_upgrade',
'proxy_set_header Connection' => '"upgrade"',
},
}
With the above code, you should be able to access the Mattermost application at
http://myserver.mydomain
(or whatever resolvable DNS domain you chose) via
the NGINX reverse proxy listening on port 80.
Use override_options
to change Mattermost's default settings:
class { 'mattermost':
override_options => {
'ServiceSettings' => {
'ListenAddress' => ":80",
},
'TeamSettings' => {
'SiteName' => 'BigCorp Collaboration',
},
'SqlSettings' => {
'DriverName' => 'postgres',
'DataSource' => "postgres://mattermost:mattermost@127.0.0.1:5432/mattermost?sslmode=disable&connect_timeout=10",
},
'FileSettings' => {
'Directory' => '/var/mattermost',
},
}
}
Store file data, such as file uploads, in a separate directory (recommended):
class { 'mattermost':
override_options => {
'FileSettings' => {
'Directory' => '/var/mattermost',
},
},
}
Install a specific version:
class { 'mattermost':
version => '3.9.0',
}
Install Enterprise edition:
class { 'mattermost':
edition => 'enterprise',
}
Install a release candidate:
class { 'mattermost':
version => '3.9.0-rc2',
}
Download from an internal server:
class { 'mattermost':
version => '3.9.0',
full_url => 'http://intranet.bigcorp.com/packages/mattermost.tar.gz',
}
The module can elegantly upgrade your Mattermost installation. To upgrade, just specify the new version when it has been released, for example:
class { 'mattermost':
version => '3.9.0',
}
On the next Puppet run, the new version will be downloaded and installed; the friendly symbolic link will be changed to point at the new installation directory and the service will be refreshed.
Note 1: The Mattermost application supports certain upgrade paths only. Please see the upgrade guide
Note 2: Always backup your data before upgrades.
Note 3: For a seamless upgrade you should store your file data outside of the Mattermost installation directory so that your uploaded files are still accessible after each upgrade. For example:
class { 'mattermost':
override_options => {
'FileSettings' => {
'Directory' => '/var/mattermost',
},
},
}
We highly recommend users subscribe to the Mattermost security updates email list. When notified of a security update, the maintainers of this deployment solution will make an effort to update to the secure version within 10 days.
mattermost
: Main class, includes all other classes
mattermost::install
: Installs the Mattermost server from a web archive and optionally installs a daemon (service) for Mattermost in the format native to your operating system.mattermost::config
: Configures Mattermost according to provided settings.mattermost::service
: Manages the Mattermost daemon.
The base URL to download the Mattermost server release archive. Defaults to
https://releases.mattermost.com
.
The edition of Mattermost server to install. Defaults to team
. Valid values
are team
and enterprise
.
The version of Mattermost server to install. Defaults to 3.9.0
.
The filename of the remote Mattermost server release archive.
Defaults to mattermost-team-${version}-linux-amd64.tar.gz
(for Team edition)
or mattermost-${version}-linux-amd64.tar.gz
(for Enterprise edition),
so with the default version
, the default value will be
mattermost-team-3.9.0-linux-amd64.tar.gz
.
The full URL of the Mattermost server release archive. Defaults to
${base_url}/${version}/${filename}
, so with the default base_url
, edition
,
version
and file_name
, this will be:
https://releases.mattermost.com/3.9.0/mattermost-team-3.9.0-linux-amd64.tar.gz
.
Please note: If you set full_url
you should also set version
to match the version of Mattermost server you are installing.
The directory to install Mattermost server on your system. Defaults to
/opt/mattermost-${version}
.
The path of the friendly symbolic link to the versioned Mattermost installation
directory. Defaults to /opt/mattermost
.
The path to Mattermost's config file. Defaults to /etc/mattermost.conf
.
Should the module create an unprivileged system account that will be used to run
Mattermost server? Defaults to true
.
Should the module create an unprivileged system group that will be used to run
Mattermost server? Defaults to true
.
The name of the unprivileged system account that will be used to run
Mattermost server. Defaults to mattermost
.
The name of the unprivileged system group that will be used to run
Mattermost server. Defaults to mattermost
.
The uid of the unprivileged system account that will be used to run
Mattermost server. Defaults to 1500
.
The gid of the unprivileged system group that will be used to run
Mattermost server. Defaults to 1500
.
A hash containing overrides to the default settings contained in Mattermost's
config file.
Defaults to {}
(empty hash).
Note 1: You should at least specify SqlSettings
, e.g.:
class { 'mattermost':
override_options => {
'SqlSettings' => {
'DriverName' => 'postgres',
'DataSource' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
},
},
}
Note 2: To purge existing settings from the configuration file, use the
purge_conf
parameter.
An element of the override_options
hash that specifies the Mattermost data
directory. Setting this element will result in the directory being created with
the correct permissions if it does not already exist (unless
manage_data_dir
is false
).
An absolute path must be specified. Example:
class { 'mattermost':
override_options => {
'FileSettings' => {
'Directory' => '/var/mattermost',
},
},
}
Should the module purge existing settings from Mattermost configuration file?
Defaults to false
.
Should the module ensure Mattermost's data directory exists and has the correct
permissions? This parameter only applies if
override_options['FileSettings']['Directory']
is set. Defaults to true
.
The local service (i.e. database service) that Mattermost server needs to start
when it is installed on the same server as the database backend. Defaults to
''
(empty string).
Should the module install a daemon for Mattermost server appropriate to your
operating system? Defaults to true
.
Should the module manage the installed Mattermost server daemon
(ensure => 'running'
and enable => true
)? Defaults to true
.
ERB
(Embedded RuBy) template to use for the service definition file. Defaults
to a bundled template suitable for the server's operating system.
The target path for the service definition file. Defaults to the standard path for the server's operating system.
The Puppet service provider to use for service management. Defaults to an appropriate value for the server's operating system.
This module has been tested with Puppet 3 and 4.
This module has been tested on:
- Red Hat Enterprise Linux 6, 7
- CentOS 6, 7
- Oracle Linux 6, 7
- Scientific Linux 6, 7
- Debian 7, 8
- Ubuntu 12.04, 12.10, 13.04, 13.10, 14.04, 14.10, 15.04, 15.10, 16.04, 16.10
- SLES 12
Note: According to the Mattermost software requirements documentation, the following platforms are offically supported by Mattermost:
Ubuntu 14.04, Debian Jessie, CentOS 6.6+, CentOS 7.1+, Red Hat Enterprise Linux 6.6+, RedHat Enterprise Linux 7.1+, Oracle Linux 6.6+, Oracle Linux 7.1+.
Please send pull requests. For maintenance and contributor info, see the maintainer guide.