mattermost-helm
mattermost-helm copied to clipboard
Mattermost Helm charts for Kubernetes
#### Summary `imagePullSecrets` needs in `mattermost-enterprise-edition` helm chart for more convenience as below. ```yaml spec: container: ... {{- with .Values.mattermostApp.image.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{-...
Hey, we want to use the Mattermost Team Edition by using the helm chart. Our cluster runs in an air-gapped environment so we have to use out own docker image...
We need to define for `imagePullSecrets` at `mattermost-enterprise-edition` helm as below. ```yaml spec: {{- with .Values.mattermostApp.image.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} ```
This PR allows to disable the creation of the secret with the ConnectionString for a external Database. Why: We are using the Postgres Operator from Zalando and want to use...
#### Summary Previously , saml settings were not configured to be overridden , it would enable saml settings to be overridden. #### Ticket Link Fixes https://github.com/mattermost/mattermost-server/issues/382
I patched this but obv. this could be done more elegantly ``` apiVersion: v1 kind: Service metadata: name: mattermost-udp-service namespace: {{.Release.Namespace}} spec: ports: - protocol: UDP name: udp-calls port: 8443...
Changed the helm link to fix the 404, I got while walking through this. #### Summary #### Ticket Link
SamlSettings is disabled in config.tpl , `"Enable": false,` I want to configure my SAML settings in values.yaml .
#### Summary This make it possible to pull from a private registry by adding the value of `ImagePullSecrets`. This requires: https://github.com/mattermost/mattermost-helm/pull/377 to be merged first. Or I need to rebase...
#### Summary This adds the ability to add multiple Private registry secrets when needed. The old way of adding secrets was limited to just one. #### Ticket Link