How to install Mattermost Team Edition Helm Chart in a GitLab Helm Chart deployment#
Available on Enterprise plans
self-hosted deployments
This document describes how to use Mattermost Team Edition Helm Chart in proximity with an existing GitLab Helm Chart deployment. Once the Mattermost Team Edition Helm Chart is installed, GitLab SSO integration is configured which utilizes shared configurations to streamline authentication, storage, encryption, and traffic routing.
As the Mattermost Helm Chart is installed in a separate namespace, it is recommended that cert-manager
and nginx-ingress
be configured to manage cluster-wide ingress and certificate resources.
Prerequisites#
A running Kubernetes cluster.
Tiller (the Helm server-side component) installed on the cluster.
Note
For the Team Edition you can have just one replica running.
Install Mattermost Team Edition Helm Chart#
This chart creates a Mattermost Team Edition deployment on a Kubernetes cluster using the Helm package manager. For detailed instructions, refer to the Mattermost Team Edition documentation.
Deploy the Mattermost Team Edition Helm Chart#
Once you have installed the Mattermost Team Edition Helm Chart, you can deploy it using the following command:
$ helm repo add mattermost https://helm.mattermost.com
$ helm repo update
$ helm upgrade --install mattermost -f values.yaml mattermost/mattermost-team-edition
Wait for the pods to run. Then, using the ingress host you specified in the configuration, access your Mattermost server.
Create an OAuth application with GitLab#
The next part of the process is setting up the GitLab SSO integration.
To create the OAuth application to allow Mattermost to use GitLab as the authentication provider, please follow the instructions here.
Please take note of the Application ID
, Application Secret Key
, User API Endpoint
, Auth Endpoint
and Token Endpoint
settings, as these values will be used later.
Note
Only the default GitLab SSO is officially supported. “Double SSO”, where GitLab SSO is chained to other SSO solutions, is not supported. It may be possible to connect GitLab SSO with AD, LDAP, SAML, or MFA add-ons in some cases, but because of the special logic required they’re not officially supported and are known not to work on some experiences.
Deploy GitLab Helm Chart#
To deploy the GitLab Helm Chart, follow the instructions described in the GitLab cloud native Helm Chart documentation.
Here’s a light way to install it:
$ helm repo add gitlab https://charts.gitlab.io/
$ helm repo update
$ helm upgrade --install gitlab gitlab/gitlab \
--timeout 600 \
--set global.hosts.domain=<your-domain> \
--set global.hosts.externalIP=<external-ip> \
--set certmanager-issuer.email=<email>
<your-domain>
: your desired domain, eg.gitlab.example.com
.<external-ip>
: the external IP pointing to your Kubernetes cluster.<email>
: email to register in Let’s Encrypt to retrieve TLS certificates.
Once you’ve deployed the GitLab instance, follow the instructions for the initial login.
If you’re following a process other than the one provided and experience authentication and/or deployment issues, let us know in our Troubleshooting forum and we’ll be happy to help.
Deploy Mattermost Team Edition Helm Chart with GitLab Helm Chart#
When you’ve successfully authenticated and connected to your GitLab instance, the next step is to integrate the two charts. The steps in this document presume in-chart Minio instance usage. For information about out-of-chart object storage configuration, review this document for GCS and S3 examples. Alternatively, visit your provider’s Help documentation for configuration settings.
Prerequisites:
Mattermost Team Edition Helm Chart Version: 3.8.2.
A running GitLab Helm Chart release.
The name of the secret that holds your PostgreSQL password
<gitlab>-postgresql-password
.(Optional) The name of the secret that holds your MinIO keys
<gitlab>-minio-secret
.The service name for your PostgreSQL,
<gitlab>-postgresql
, and the port. If you installed the GitLab Helm Chart indefault
namespace, then the port is5432
.(Optional) The service name for MinIO,
<gitlab>-minio-svc
, and the port. If you installed the GitLab Helm Chart indefault
namespace, then the port is9000
.The names of
kubernetes.io/ingress.class
,kubernetes.io/ingress.provider
, andcertmanager.k8s.io/issuer
.
To deploy Mattermost Team Edition with GitLab Helm Chart, disable the running MySql
chart and configure InitContainer
and Environment variables
in values.yaml
. The list below indicates the values that should be changed. Note that we assume the GitLab chart name is gitlab
.
<your-mattermost-domain>
: URL that users will use to access Mattermost, matching the Site URL field, e.g.mattermost.gitlab.example.com
.<name-of-your-tls-secret>
: A name to store the TLS certificate for your domains, e.g.mattermost-tls
.<ingress-class>
: The ingress class. In a basic GitLab deployment, this isgitlab-nginx
.<ingress-provider>
: The ingress provider. In a basic GitLab deployment, this isnginx
.<certmanager-issuer>
: The cert manager issuer. In a basic GitLab deployment, this isgitlab-issuer
.<gitlab-ap-secret>
: The Application secret, which you created in step Create an OAuth application with GitLab.<gitlab-app-id>
: The Application ID, which you created in step Create an OAuth application with GitLab.<your-gitlab-domain>
: The GitLab domain name, e.g.,gitlab.example.com
.<gitlab-postgres.username>
: The GitLab PostgreSQL username. Default isgitlab
.<gitlab-postgres.passwd-secret>
: Secret that holds your PostgreSQL password. Default isgitlab-postgresql-password
.<gitlab-postgres-host>
: Postgres host of your Kubernetes service. Default isgitlab-postgresql
.<gitlab-postgres-port>
: Postgres port of your Kubernetes service. Default is5432
.<mattermost-database-name>
: Mattermost database, e.g.,mattermost-db
.<gitlab-minio-host>
: MinIO host of your Kubernetes service. Default isgitlab-minio-svc
.<gitlab-minio-port>
: MinIO port of your Kubernetes service. Default is9000
.<gitlab-minio-secret>
: Secret that holds your MinIO keys. Default isgitlab-minio-secret
.<mattermost-minio-bucket-name>
: Mattermost MinIO bucket name, e.g.,mattermost-data
.
persistence:
data:
enabled: false
# Mattermost configuration:
configJSON:
ServiceSettings:
SiteUrl: "https://<your-mattermost-domain>"
TeamSettings:
SiteName: "Mattermost"
EmailSettings:
EnableSignUpWithEmail: false
ingress:
enabled: true
path: /
annotations:
kubernetes.io/ingress.class: <ingress-class>
kubernetes.io/ingress.provider: <ingress-provider>
certmanager.k8s.io/issuer: <certmanager-issuer>
hosts:
- <your-mattermost-domain>
tls:
- secretName: <name-of-your-tls-secret>
hosts:
- <your-mattermost-domain>
auth:
gitlab:
Enable: "true"
Secret: "<gitlab-app-secret>"
Id: "<gitlab-app-id>"
Scope: ""
AuthEndpoint: "https://<your-gitlab-domain>/oauth/authorize"
TokenEndpoint: "https://<your-gitlab-domain>/oauth/token"
UserApiEndpoint: "https://<your-gitlab-domain>/api/v4/user"
externalDB:
enabled: true
existingUser: <gitlab-postgres-username>
existingSecret: "<gitlab-postgres.passwd-secret>"
mysql:
enabled: false
## Additional env vars
extraEnvVars:
- name: POSTGRES_PASSWORD_GITLAB
valueFrom:
secretKeyRef:
name: <gitlab-postgres-passwd-secret>
key: postgres-password
- name: POSTGRES_USER_GITLAB
value: <gitlab-postgres-username>
- name: POSTGRES_HOST_GITLAB
value: <gitlab-postgres-host>
- name: POSTGRES_PORT_GITLAB
value: "<gitlab-postgres-port>"
- name: POSTGRES_DB_NAME_MATTERMOST
value: <mattermost-database-name>
- name: MM_SQLSETTINGS_DRIVERNAME
value: "postgres"
- name: MM_SQLSETTINGS_DATASOURCE
value: postgres://$(POSTGRES_USER_GITLAB):$(POSTGRES_PASSWORD_GITLAB)@$(POSTGRES_HOST_GITLAB):$(POSTGRES_PORT_GITLAB)/$(POSTGRES_DB_NAME_MATTERMOST)?sslmode=disable&connect_timeout=10
- name: MINIO_ENDPOINT
value: <gitlab-minio-host>
- name: MINIO_PORT
value: "<gitlab-minio-port>"
- name: MM_FILESETTINGS_DRIVERNAME
value: amazons3
- name: MM_FILESETTINGS_AMAZONS3ENDPOINT
value: $(MINIO_ENDPOINT):$(MINIO_PORT)
- name: MM_FILESETTINGS_AMAZONS3ACCESSKEYID
valueFrom:
secretKeyRef:
name: <gitlab-minio-secret>
key: accesskey
- name: MM_FILESETTINGS_AMAZONS3SECRETACCESSKEY
valueFrom:
secretKeyRef:
name: <gitlab-minio-secret>
key: secretkey
- name: MM_FILESETTINGS_AMAZONS3BUCKET
value: <mattermost-minio-bucket-name>
## Additional init containers
extraInitContainers:
- name: bootstrap-database
image: "postgres:9.6-alpine"
imagePullPolicy: IfNotPresent
env:
- name: POSTGRES_PASSWORD_GITLAB
valueFrom:
secretKeyRef:
name: <gitlab-postgres.-passwd-secret>
key: postgres-password
- name: POSTGRES_USER_GITLAB
value: <gitlab-postgres-username>
- name: POSTGRES_HOST_GITLAB
value:<gitlab-postgres-host>
- name: POSTGRES_PORT_GITLAB
value: "<gitlab-postgres-port>"
- name: POSTGRES_DB_NAME_MATTERMOST
value: <mattermost-database-name>
command:
- sh
- "-c"
- |
if PGPASSWORD=$POSTGRES_PASSWORD_GITLAB psql -h $POSTGRES_HOST_GITLAB -p $POSTGRES_PORT_GITLAB -U $POSTGRES_USER_GITLAB -lqt | cut -d \| -f 1 | grep -qw $POSTGRES_DB_NAME_MATTERMOST; then
echo "database already exist, exiting initContainer"
exit 0
else
echo "Database does not exist. creating...."
PGPASSWORD=$POSTGRES_PASSWORD_GITLAB createdb -h $POSTGRES_HOST_GITLAB -p $POSTGRES_PORT_GITLAB -U $POSTGRES_USER_GITLAB $POSTGRES_DB_NAME_MATTERMOST
echo "Done"
fi
- name: create-minio-bucket
image: "minio/mc:RELEASE.2018-07-13T00-53-22Z"
env:
- name: MINIO_ENDPOINT
value: <gitlab-minio-host>
- name: MINIO_PORT
value: "<gitlab-minio-port>"
- name: MINIO_ACCESS_KEY
valueFrom:
secretKeyRef:
name: <gitlab-minio-secret>
key: accesskey
- name: MINIO_SECRET_KEY
valueFrom:
secretKeyRef:
name: <gitlab-minio-secret>
key: secretkey
- name: MATTERMOST_BUCKET_NAME
value: <mattermost-minio-bucket-name>
command:
- sh
- "-c"
- |
echo "Connecting to Minio server: http://$MINIO_ENDPOINT:$MINIO_PORT"
mc config host add myminio http://$MINIO_ENDPOINT:$MINIO_PORT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
/usr/bin/mc ls myminio
echo $?
/usr/bin/mc ls myminio/$MATTERMOST_BUCKET_NAME > /dev/null 2>&1
if [ $? -eq 1 ] ; then
echo "Creating bucket '$MATTERMOST_BUCKET_NAME'"
/usr/bin/mc mb myminio/$MATTERMOST_BUCKET_NAME
else
echo "Bucket '$MATTERMOST_BUCKET_NAME' already exists."
exit 0
fi