Skip to content

Commit

Permalink
do the thing Zach said
Browse files Browse the repository at this point in the history
  • Loading branch information
Racer159 committed Mar 21, 2024
1 parent 01c42d4 commit 6a4320c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion chart/templates/mattermost-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: mattermost-config
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
type: Opaque
stringData:
MM_PLUGINSETTINGS_ENABLEUPLOADS: "{{ .Values.config.enablePluginUploads | toString }}"
2 changes: 1 addition & 1 deletion chart/templates/mattermost-gossip-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v1
kind: Service
metadata:
name: mattermost-gossip
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: mattermost-enterprise-edition
spec:
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/mattermost-object-store.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: mattermost-object-store
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
type: Opaque
stringData:
MM_FILESETTINGS_AMAZONS3SSL: "{{ .Values.objectStorage.secure | toString }}"
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/mattermost-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: mattermost-postgres
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
type: Opaque
stringData:
db_connection_string: "postgres://{{ .Values.postgres.username }}:{{ .Values.postgres.password }}@{{ .Values.postgres.host }}:{{ .Values.postgres.port }}/{{ .Values.postgres.dbName }}{{ .Values.postgres.connectionOptions }}"
2 changes: 1 addition & 1 deletion chart/templates/mattermost-sso.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: mattermost-sso
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
type: Opaque
stringData:
MM_GITLABSETTINGS_ENABLE: "{{ .Values.sso.enabled | toString }}"
Expand Down
4 changes: 2 additions & 2 deletions chart/templates/uds-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ apiVersion: uds.dev/v1alpha1
kind: Package
metadata:
name: mattermost
namespace: {{.Release.Namespace}}
namespace: {{ .Release.Namespace }}
spec:
network:
expose:
- service: mattermost-enterprise-edition
podLabels:
app.kubernetes.io/name: mattermost-enterprise-edition
gateway: tenant
host: {{.Values.subdomain}}
host: {{ .Values.subdomain }}
port: 8065
allow:
# Permit intra-namespace communication for job communications
Expand Down

0 comments on commit 6a4320c

Please sign in to comment.