Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating config options as ENVs in README, updating a few other links #371

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions charts/mattermost-team-edition/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The following table lists the configurable parameters of the Mattermost Team Edi

Parameter | Description | Default
--- | --- | ---
`configJSON` | The `config.json` configuration to be used by the mattermost server. The values you provide will by using Helm's merging behavior override individual default values only. See the [example configuration](#example-configuration) and the [Mattermost documentation](https://docs.mattermost.com/administration/config-settings.html) for details. | See `configJSON` in [values.yaml](https://github.com/helm/charts/blob/master/stable/mattermost-team-edition/values.yaml)
`configJSON` | The `config.json` configuration to be used by the mattermost server. The values you provide will by using Helm's merging behavior override individual default values only. See the [example configuration](#example-configuration) and the [Mattermost documentation](https://docs.mattermost.com/configure/configuration-settings.html) for details. | See `configJSON` in [values.yaml](https://github.com/helm/charts/blob/master/stable/mattermost-team-edition/values.yaml)
`image.repository` | Container image repository | `mattermost/mattermost-team-edition`
`image.tag` | Container image tag | `5.39.0`
`image.imagePullPolicy` | Container image pull policy | `IfNotPresent`
Expand Down Expand Up @@ -180,11 +180,9 @@ ingress:
hosts:
- mattermost.example.com

configJSON:
ServiceSettings:
SiteURL: "https://mattermost.example.com"
TeamSettings:
SiteName: "Mattermost on Example.com"
config:
MM_SERVICESETTINGS_SITEURL: "https://mattermost.example.com"
MM_TEAMSETTINGS_SITENAME: "Mattermost on Example.com"
```

### External Databases
Expand Down
2 changes: 1 addition & 1 deletion charts/mattermost-team-edition/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ serviceAccount:

## Configuration
## The config here will be injected as environment variables in the deployment
## Please refer to https://docs.mattermost.com/administration/config-settings.html#configuration-in-database for more information
## Please refer to https://docs.mattermost.com/configure/configuration-settings.html#configuration-in-database for more information
## You can add any config here, but need to respect the format: MM_<GROUPSECTION>_<SETTING>. ie: MM_SERVICESETTINGS_ENABLECOMMANDS: false
config:
MM_PLUGINSETTINGS_CLIENTDIRECTORY: "./client/plugins"