Deploy Mattermost with the Mattermost Operator
You can use the Mattermost Kubernetes Operator to deploy Mattermost on Kubernetes using S3-compatible storage and a managed database service. While the operator supports a range of configurations, we strongly recommend using a cloud-native approach for production environments.
Before you begin, ensure you have the following:
- A functioning Kubernetes cluster (see the Kubernetes setup guide). Your cluster should be running a supported Kubernetes version.
- The
kubectlcommand-line tool installed on your local machine (see the kubectl installation guide). - A fundamental understanding of Kubernetes concepts, such as deployments, pods, and applying manifests.
- Sufficient Kubernetes resources allocated based on your expected user load. Consult the scaling for Enterprise documentation for resource requirements at different scales.
Installation steps
The installation process involves setting up necessary operators and then deploying Mattermost itself.
Step 1: Install the NGINX Ingress Controller
Follow the instructions in the Kubernetes deployment documentation to install the NGINX ingress controller on your Kubernetes cluster. Mattermost recommends installing the Nginx Operator via helm, regardless of platform you are installing to.
Step 2: Install the Mattermost Operator
The Mattermost Kubernetes Operator can be installed using Helm.
-
Install Helm (version 3.13.0 or later). See the Helm quickstart documentation for installation instructions.
-
Add the Mattermost Helm repository:
helm repo add mattermost https://helm.mattermost.com -
Create a file named
config.yamland populate it with the contents of the Mattermost operator values file. This file allows for customization of the operator. -
Create a namespace for the Mattermost Operator:
kubectl create ns mattermost-operator -
Install the Mattermost Operator. If you don't specify a version, the latest version of the Mattermost Operator will be installed. We recommend using the latest version of the Mattermost Operator.
helm install <your-release-name> mattermost/mattermost-operator -n <namespace_name>For example:
helm install mattermost-operator mattermost/mattermost-operator -n mattermost-operatorTo use your custom
config.yamlfile:helm install mattermost-operator mattermost/mattermost-operator -n mattermost-operator -f config.yaml
Step 3: Deploy Mattermost
-
(Mattermost Enterprise only) Create a Mattermost license secret. Create a file named
mattermost-license-secret.yamlwith the following content, replacing[LICENSE_FILE_CONTENTS]with your actual license:apiVersion: v1kind: Secretmetadata:name: my-mattermost-licensetype: OpaquestringData:license: <LICENSE_FILE_CONTENTS> -
Create a Mattermost installation manifest file named
mattermost-installation.yaml. File names in this guide are suggestions; you can use different names. Use the following template, adjusting the values as needed:apiVersion: installation.mattermost.com/v1beta1kind: Mattermostmetadata:name: <INSTALLATION_NAME_HERE>spec:size: <SIZE_VALUE_HERE>ingress:enabled: truehost: <FULL_DOMAIN_NAME_HERE>annotations:kubernetes.io/ingress.class: nginxversion: <VERSION_HERE>licenseSecret: ""Key fields in the manifest include:
metadata.name: The name of your Mattermost deployment in Kubernetes.spec.size: The size of your installation (e.g., "100users", "1000users", etc.).spec.ingress.host: The DNS name for your Mattermost installation.spec.version: The Mattermost version. See the server version archive for available versions. You should use a supported version of Mattermost in conjunction with the latest version of the Mattermost Operator.spec.licenseSecret: The name of the Kubernetes secret containing your license (required for Enterprise).
For a full list of configurable fields, see the example manifest and the Custom Resource Definition.
-
Create a file named
mattermost-database-secret.yamlfor database credentials. This secret must be in the same namespace as the Mattermost installation.apiVersion: v1data:DB_CONNECTION_CHECK_URL: <DB_CONNECTION_CHECK_URL>DB_CONNECTION_STRING: <DB_CONNECTION_STRING>MM_SQLSETTINGS_DATASOURCEREPLICAS: <MM_SQLSETTINGS_DATASOURCEREPLICAS>kind: Secretmetadata:name: my-postgres-connectiontype: OpaqueExample for AWS Aurora with PostgreSQL (
DB_CONNECTION_CHECK_URL,DB_CONNECTION_STRING, andMM_SQLSETTINGS_DATASOURCEREPLICASare the base64-encoded form of your Aurora connection URL, e.g.postgres://user:password@host:5432/mattermost):apiVersion: v1data:DB_CONNECTION_CHECK_URL: cG9zdGdyZXM6Ly91c2Vy...DB_CONNECTION_STRING: cG9zdGdyZXM6Ly91c2Vy...MM_SQLSETTINGS_DATASOURCEREPLICAS: cG9zdGdyZXM6...kind: Secretmetadata:name: my-postgres-connectiontype: Opaque
Step 4: Create the Filestore Secret
Create a file named mattermost-filestore-secret.yaml to store the credentials for your object storage service (e.g., AWS S3 or any S3-compatible service). This secret must be created in the same namespace where you intend to install Mattermost. The file should contain the following YAML structure:
apiVersion: v1
kind: Secret
metadata:
name: <secret-name>
type: Opaque
data:
accesskey: <base64-encoded-access-key>
secretkey: <base64-encoded-secret-key>
| Key | Description | Required |
|---|---|---|
| accesskey | Base64-encoded access key for your storage service. | Yes |
| secretkey | Base64-encoded secret key for your storage service. | Yes |
| metadata.name | The name of the Kubernetes secret. | Yes |
Step 5: Configure the Mattermost Installation Manifest
-
Modify the
mattermost-installation.yamlfile (created in step 2) to connect Mattermost to your external database and object storage. Refer to the supported fields for guidance on where to add these configurations within the YAML structure. -
Connect to the database:
-
Add the following to the
specsection of your manifest:spec:database:external:secret: <database-secret-name>Replace
<database-secret-name>with the name of the database secret you created (e.g.,my-postgres-connection). -
(Recommended) Configure the database-readiness init container to use the in-image
mattermost db pingcommand instead of the legacypostgres:13+pg_isreadyflow. This avoids the need to pull a separatepostgres:13image (the primary motivation for air-gapped clusters that can't mirror it) and keeps your readiness check in sync with the Mattermost release you're running.spec:database:external:secret: <database-secret-name>readinessCheck:mode: builtintimeout: 5mtimeoutis optional and defaults to5m.Using
builtinmode requires a Mattermost release that ships themattermost db pingcommand (see the Mattermost server pull request for availability).Omitting
readinessCheck(or settingmode: external) preserves the legacypostgres:13+pg_isreadybehavior. The legacy mode is the current default for backward compatibility and will be deprecated in a future operator release. See the Mattermost CRD reference for the fullreadinessCheckfield schema.
-
-
Connect to Object Storage:
-
Add the following to the
specsection of your manifest:spec:fileStore:external:url: <storage-service-url>bucket: <bucket-name>secret: <filestore-secret-name>Replace
<storage-service-url>with the URL of your storage service (e.g.,s3.amazonaws.com),<bucket-name>with the name of your storage bucket, and<filestore-secret-name>with the name of the filestore secret you created (e.g.,my-s3-credentials).
-
-
If you are using Amazon S3, it's recommended to enable server-side encryption (SSE) and SSL. Add the following environment variables to the
mattermostEnvsection:spec:mattermostEnv:MM_FILESETTINGS_AMAZONS3SSL: trueMM_FILESETTINGS_AMAZONS3SSE: true
Review Mattermost Resource Status
After a Mattermost installation has been created with the Operator, you can review its status with the following:
kubectl -n [namespace] get mattermost
The kubectl describe command can be used to obtain more information about the Mattermost server pods:
kubectl -n [namespace] describe pod
Follow logs
The following command can be used to follow logs on any kubernetes pod:
kubectl -n [namespace] logs -f [pod name]
If the -n [namespace] is omitted, then the default namespace of the current context is used. We recommend specifying the namespace based on your deployment.
This command can be used to review the Mattermost Operator or Mattermost server logs as needed.
Frequently Asked Questions
What is the Operator's version compatibility with Mattermost Server?
While generally speaking, the Operator should be compatible with most, or all versions of Mattermost Server, we recommend always using the latest version of the Operator in conjunction with a supported version of Mattermost Server.