Skip to content

Commit

Permalink
add support for envFrom on enterprise chart (#440)
Browse files Browse the repository at this point in the history
Signed-off-by: Micah Nagel <[email protected]>
  • Loading branch information
mjnagel authored Feb 5, 2024
1 parent d31c710 commit 3245526
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/mattermost-enterprise-edition/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
description: Mattermost Enterprise server with high availitibity.
name: mattermost-enterprise-edition
type: application
version: 2.6.44
version: 2.6.45
appVersion: 9.4.2
keywords:
- mattermost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ spec:
{{- with .Values.mattermostApp.extraEnv }}
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.mattermostApp.envFrom }}
envFrom:
{{- toYaml . | nindent 10 }}
{{- end }}
livenessProbe:
initialDelaySeconds: 90
timeoutSeconds: 5
Expand Down
2 changes: 2 additions & 0 deletions charts/mattermost-enterprise-edition/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ mattermostApp:
# value: "true"
# - name: MM_SERVICESETTINGS_ENABLECUSTOMEMOJI
# value: "true"
## Allows the specification of a configmap or secret to set all key-value pairs as environment variables for Mattermost
envFrom: []
## Additional pod annotations
extraPodAnnotations: {}
# MySQL HA Section. Use this to configure MySQL.
Expand Down

0 comments on commit 3245526

Please sign in to comment.