-
Notifications
You must be signed in to change notification settings - Fork 149
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
configJSON is not working as per readme #238
Comments
I second that. Still trying to figure out the issue. It's not only SiteURL that doesn't work, other properties such as SiteName won't work either. The |
thanks for the catch. Are you willing to open a PR and make this change? thanks! |
Sure, I just would like to confirm that one should define
|
@mike-code this is the pattern to have environment variables for the config, this looks correct this is injected in the Pod when it started |
@cpanato Do I understand correctly that using environment variables is now the only way to set anything that was previously configured like this
And that the mattermost/config folder inside the pod is now supposed to be empty? |
This format does not work for booleans with the helm template. config: The issue is that the /templates/secret-config.yaml cycles through all the values under config: and tries to convert the values to base64 encode. Which means you can't use boolean values. But if you use a string like "true" then mattermost balks on boot as it is expecting a boolean rather than a string. |
Trying to set the siteurl as per readme doesn't work:
The work around is to set it via extraEnvVars MM_SERVICESETTINGS_SITEURL.
The text was updated successfully, but these errors were encountered: