Forge Home

mattermost

Installs and configures Mattermost.

60,900 downloads

3,352 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 3.10.0 (latest)
  • 3.9.0
  • 3.8.0
  • 3.6.1
  • 3.6.0
  • 3.5.0
  • 3.4.0
  • 3.3.0
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.11.0
  • 2.10.1
  • 2.10.0
  • 2.9.0
  • 2.8.1
  • 2.8.0
  • 2.7.1
  • 2.6.0
  • 2.5.1
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.1
  • 2.3.0
  • 2.2.1
  • 2.2.0
  • 2.1.1
  • 2.1.0
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • 1.17.0
  • 1.16.3
  • 1.16.2
  • 1.16.1
  • 1.16.0
  • 1.15.1
  • 1.15.0
  • 1.14.1
  • 1.14.0
  • 1.13.0
  • 1.12.3
  • 1.12.2
  • 1.12.1
  • 1.12.0
  • 1.11.2
  • 1.11.1
  • 1.11.0
  • 1.10.1
  • 1.10.0
  • 1.9.0
  • 1.8.0
  • 1.7.2
  • 1.7.1
  • 1.7.0
  • 1.6.1
  • 1.6.0 (deleted)
  • 1.5.1
  • 1.5.0
  • 1.4.1
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 0.1.0 (deleted)
released Mar 14th 2020
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 >=3.0.0 <7.0.0
  • Archlinux, , , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'liger1978-mattermost', '3.10.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add liger1978-mattermost
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install liger1978-mattermost --version 3.10.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

liger1978/mattermost — version 3.10.0 Mar 14th 2020

mattermost

Puppet Forge - downloads Puppet Forge - scores GitLab - build status

Table of Contents

  1. Overview
  2. Module Changes
  3. Module Description - What the module does and why it is useful
  4. Setup - The basics of getting started with mattermost
  5. Usage - Configuration options and additional functionality
  6. Reference - An under-the-hood peek at what the module is doing and how
  7. Limitations - OS compatibility, etc.
  8. Development - Guide for contributing to the module

Overview

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.

Module Changes

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.

Module Description

The Mattermost module does the following:

  • Installs the Mattermost server from a release archive on the web, an alternative download location within your firewall or using a package.
  • Installs and configures a daemon (service) for Mattermost in the format native to your operating system.
  • Configures Mattermost according to settings you provide.

Setup

What mattermost affects

When using a release archive:

  • 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.
  • Create an environment variable configuration file (defaults to /etc/sysconfig/mattermost or /etc/default/mattermost depending on platform) and add user-supplied options.
  • Creates and manages a Mattermost daemon (service) using your operating system's native service provider.

When using a package:

  • Installs the package.
  • Add user-supplied options to the configuration files.
  • Manages the service .

Beginning with mattermost

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 by configuring environment variables that will be used by the installed Mattermost service:

Using Puppet only:

class { 'mattermost':
  override_env_options => {
    'MM_SQLSETTINGS_DRIVERNAME' => 'postgres',
    'MM_SQLSETTINGS_DATASOURCE' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
  },
}

Using Puppet and Hiera:

include mattermost
mattermost::override_env_options:
  MM_SQLSETTINGS_DRIVERNAME: postgres
  MM_SQLSETTINGS_DATASOURCE: postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10

Alternatively, the minimum configuration can be supplied by configuring Mattermost's json config file:

Using Puppet only:

class { 'mattermost':
  override_options => {
    'SqlSettings' => {
      'DriverName' => 'postgres',
      'DataSource' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
    },
  },
}

Using Puppet and Hiera:

include mattermost
mattermost::override_options:
  SqlSettings:
    DriverName: postgres
    DataSource: postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10

Any of these options will install a Mattermost server listening on the default TCP port (currently 8065).

The module's default behaviour is to download and install Mattermost using a .tar.gz archive. The module can instead install Mattermost using a package. Here is an example using the mattermost-server package in the harbottle-main RPM repo for CentOS 7:

yumrepo { 'harbottle-main':
  baseurl  => 'https://copr-be.cloud.fedoraproject.org/results/harbottle/main/epel-7-$basearch/',
  descr    => 'harbottle-main',
  gpgcheck => true,
  gpgkey   => 'https://copr-be.cloud.fedoraproject.org/results/harbottle/main/pubkey.gpg',
}
-> class { 'mattermost':
  install_from_pkg => true,
  version          => latest,
  conf             => '/etc/mattermost/config.json',
  override_options => {
    'SqlSettings'  => {
      'DriverName' => 'postgres',
      'DataSource' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
    },
  },
}

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.

Usage

Mattermost config settings can be set using environment variables or a json file.

Configuration options supplied using environment variables takes precedence over options supplied using the json file and they disable modification using the Service Console.

You must decide which method to use.

Use override_options to change Mattermost's default settings by modifying the json file:

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',
    },
  }
}

Use override_env_options to change Mattermost's default settings by modifying environment variables:

class { 'mattermost':
  override_env_options => {
    'MM_SERVICESETTINGS_LISTENADDRESS' => ":80",
    'MM_TEAMSETTINGS_SITENAME'         => 'BigCorp Collaboration',
    'MM_SQLSETTINGS_DRIVERNAME'        => 'postgres',
    'MM_SQLSETTINGS_DATASOURCE'        => "postgres://mattermost:mattermost@127.0.0.1:5432/mattermost?sslmode=disable&connect_timeout=10",
    'MM_FILESETTINGS_DIRECTORY'        => '/var/mattermost',
    },
  }
}

Store file data, such as file uploads, in a separate directory (recommended), json file method:

class { 'mattermost':
  override_options => {
    'FileSettings' => {
      'Directory' => '/var/mattermost',
    },
  },
}

Store file data, such as file uploads, in a separate directory (recommended), environment variables method:

class { 'mattermost':
  override_env_options => {
    'MM_FILESETTINGS_DIRECTORY' => '/var/mattermost',
  },
}

Install a specific version:

class { 'mattermost':
  version => '5.21.0',
}

Install Enterprise edition:

class { 'mattermost':
  edition => 'enterprise',
}

Install a release candidate:

class { 'mattermost':
  version => '5.21.0-rc1',
}

Download from an internal server:

class { 'mattermost':
  version  => '5.21.0',
  full_url => 'http://intranet.bigcorp.com/packages/mattermost.tar.gz',
}

Upgrading Mattermost

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 => '5.21.0',
}

On the next Puppet run, when using a release archive, 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.

When using a package, the new package will be installed 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_env_options => {
    'MM_FILESETTINGS_DIRECTORY' => '/var/mattermost',
  },
}

or

class { 'mattermost':
  override_options => {
    'FileSettings' => {
      'Directory' => '/var/mattermost',
    },
  },
}

Security Updates

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.

Reference

Public classes

  • mattermost: Main class, includes all other classes

Private classes

  • mattermost::install: Installs the Mattermost server from a web archive or using a package 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.

Parameters

mattermost

install_from_pkg

The default behaviour is to install from a remote Mattermost server release archive. Enable this option to instead install from a package. The package should be available to install from a existing repository. Defaults to false.

Helpful hint: The author of this module has has created a package suitable for RHEL 7, CentOS 7 and Oracle Linux 7 users.

pkg

The package name when installing from a package. Defaults to mattermost-server.

base_url

The base URL to download the Mattermost server release archive. Ignored if installing from a package. Defaults to https://releases.mattermost.com.

edition

The edition of Mattermost server to install. Ignored if installing from a package. Defaults to team. Valid values are team and enterprise.

version

The version of Mattermost server to install. Defaults to 5.21.0.

file_name

The filename of the remote Mattermost server release archive. Ignored if installing from a package. 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-5.21.0-linux-amd64.tar.gz.

full_url

The full URL of the Mattermost server release archive. Ignored if installing from a package. Defaults to ${base_url}/${version}/${filename}, so with the default base_url, edition, version and file_name, this will be: https://releases.mattermost.com/5.21.0/mattermost-team-5.21.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.

dir

The directory to install Mattermost server on your system. Ignored if installing from a package. Defaults to /opt/mattermost-${version}.

symlink

The path of the friendly symbolic link to the versioned Mattermost installation directory. Ignored if installing from a package. Defaults to /opt/mattermost.

conf

The path to Mattermost's config file. Defaults to /etc/mattermost.json.

env_conf

The path to Mattermost's environment variable config file. Defaults to /etc/sysconfig/mattermost (Enterprise Linux/SLES) or /etc/default/mattermost (Debian/Ubuntu).

create_user

Should the module create an unprivileged system account that will be used to run Mattermost server? Ignored if installing from a package. Defaults to true.

create_group

Should the module create an unprivileged system group that will be used to run Mattermost server? Ignored if installing from a package. Defaults to true.

user

The name of the unprivileged system account that will be used to run Mattermost server and will own the config file. Defaults to mattermost.

group

The name of the unprivileged system group that will be used to run Mattermost serverand will own the config file. Defaults to mattermost.

uid

The uid of the unprivileged system account that will be used to run Mattermost server. Ignored if installing from a package. Defaults to 1500.

gid

The gid of the unprivileged system group that will be used to run Mattermost server. Ignored if installing from a package. Defaults to 1500.

override_options

Mattermost config settings can be set using environment variables or a json file.

Configuration options supplied using environment variables takes precedence over options supplied using the json file and disable modification using ther Service Console.

You must decide which method to use.

This is a hash containing overrides to the default settings contained in Mattermost's json config file. Defaults to {} (empty hash).

Note 1: If you decide to configure Mattermost using a json file, 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.

override_options['FileSettings']['Directory']

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).

Note: override_env_options['MM_FILESETTINGS_DIRECTORY'] takes precedence over this element.

An absolute path must be specified. Example:

class { 'mattermost':
  override_options => {
    'FileSettings' => {
      'Directory' => '/var/mattermost',
    },
  },
}
override_options['LogSettings']['FileLocation']

An element of the override_options hash that specifies the Mattermost log directory. Setting this element will result in the directory being created with the correct permissions if it does not already exist (unless manage_log_dir is false).

Note: override_env_options['MM_LOGSETTINGS_FILELOCATION'] takes precedence over this element.

An absolute path must be specified. Example:

class { 'mattermost':
  override_options => {
    'LogSettings' => {
      'FileLocation' => '/var/log/mattermost',
    },
  },
}
override_env_options

Mattermost config settings can be set using environment variables or a json file.

Configuration options supplied using environment variables takes precedence over options supplied using the json file and disable modification using ther Service Console.

You must decide which method to use.

This is a hash containing overrides to Mattermost's environment variables that will be stored in the env_conf environment variable file. Defaults to {} (empty hash).

Note 1: If you decide to configure Mattermost using environment variables, you should at least specify database settings, e.g.:

class { 'mattermost':
  override_env_options => {
    'MM_SQL_SETTINGS_DRIVERNAME' => 'postgres',
    'MM_SQL_SETTINGS_DATASOURCE' => "postgres://db_user:db_pass@db_host:db_port/mattermost?sslmode=disable&connect_timeout=10",
  },
}

Note 2: To purge existing settings from the environment variable file, use the purge_env_conf parameter.

override_env_options['MM_FILESETTINGS_DIRECTORY']

An element of the override_env_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).

Note: This takes precedence over override_options['FileSettings']['Directory']

An absolute path must be specified. Example:

class { 'mattermost':
  override_env_options => {
    'MM_FILESETTINGS_DIRECTORY' => '/var/mattermost',
  },
}
override_env_options['MM_LOGSETTINGS_FILELOCATION']

An element of the override_env_options hash that specifies the Mattermost log directory. Setting this element will result in the directory being created with the correct permissions if it does not already exist (unless manage_log_dir is false).

Note: This takes precedence over override_options['LogSettings']['FileLocation']

An absolute path must be specified. Example:

class { 'mattermost':
  override_env_options => {
    'MM_LOGSETTINGS_FILELOCATION' => '/var/log/mattermost',
  },
}
purge_conf

Should the module purge existing settings from Mattermost configuration file? Defaults to false.

purge_env_conf

Should the module purge existing settings from Mattermost environment variable file? Defaults to false.

manage_data_dir

Should the module ensure Mattermost's data directory exists and has the correct permissions? This parameter only applies if override_env_options['MM_FILESETTINGS_DIRECTORY'] or override_options['FileSettings']['Directory'] is set. Ignored if installing from a package. Defaults to true.

manage_log_dir

Should the module ensure Mattermost's log directory exists and has the correct permissions? This parameter only applies if override_env_options['MM_LOGSETTINGS_FILELOCATION'] or override_options['LogSettings']['FileLocation'] is set. Ignored if installing from a package. Defaults to true.

depend_service

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. Ignored if installing from a package.Defaults to '' (empty string).

install_service

Should the module install a daemon for Mattermost server appropriate to your operating system? Ignored if installing from a package. Defaults to true.

manage_service

Should the module manage the installed Mattermost server daemon (ensure => 'running' and enable => true)? Defaults to true.

service_name

The service name. Defaults to mattermost.

service_template

ERB (Embedded RuBy) template to use for the service definition file. Ignored if installing from a package. Defaults to a bundled template suitable for the server's operating system.

service_path

The target path for the service definition file. Ignored if installing from a package. Defaults to the standard path for the server's operating system.

service_provider

The Puppet service provider to use for service management. Defaults to an appropriate value for the server's operating system.

Public defined types

Defined type: mattermost_settings

Defines settings within a JSON-formatted Mattermost configuration file.

Example:

mattermost_settings{ '/etc/mattermost.json':
  values  => {
    'SqlSettings' => {
      'DriverName' => 'postgres',
      'DataSource' => "postgres://mattermost:mattermost@127.0.0.1:5432/mattermost?sslmode=disable&connect_timeout=10",
    },
    'TeamSettings' => {
      'SiteName' => 'Dev Team',
    },
  },
}

mattermost_settings parameters:

name

An arbitrary name for the resource. It will be the default for 'target'.

target

The path to the mattermost config file to manage. Either this file should already exist, or the source parameter needs to be specified.

source

The file from which to load the current settings. If unspecified, it defaults to the target file.

allow_new_value

Whether it should be allowed to specify values for non-existing tree portions. Defaults to true.

allow_new_file

Whether it should be allowed to create a new target file. Default to true.

user

The user with which to make the changes.

values

The portions to change and their new values. This should be a hash. The subtree to change is specified in the form:

<key 1>/<key 2>/.../<key n>

where <key x> admits three variants:

  • the plain contents of the string key, as long as they do not start with : or ' and do not contain /
  • '<contents>', to represent a string key that contains the characters mentioned above. Single quotes must be doubled to have literal value.
  • :'<contents>', likewise, but the value will be a symbol.

Limitations

This module has been tested with Puppet 3, 4, 5 and 6.

This module has been tested on:

  • Red Hat Enterprise Linux 6, 7, 8
  • CentOS 6, 7, 8
  • Oracle Linux 6, 7, 8
  • Scientific Linux 6, 7
  • Debian 8, 9, 10
  • Ubuntu 14.04, 16.04, 18.04, 19.04
  • SLES 12, 15

Note: According to the Mattermost software requirements documentation, the following platforms are offically supported by Mattermost:

Ubuntu 16.04, Ubuntu 18.04, Debian Buster, CentOS 6+, CentOS 7+, RedHat Enterprise Linux 6+, RedHat Enterprise Linux 7+, Oracle Linux 6+, Oracle Linux 7+

Development

Please send pull requests. For maintenance and contributor info, see the maintainer guide.