forked from eddycharly/kind-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmattermost-team-edition.yaml
48 lines (48 loc) · 1.64 KB
/
mattermost-team-edition.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: mattermost-team-edition
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://helm.mattermost.com
chart: mattermost-team-edition
targetRevision: '*'
helm:
values: |
mysql:
mysqlUser: mattermost
mysqlPassword: mattermost
extraVolumes:
- name: opt-ca-certificates
hostPath:
path: /opt/ca-certificates/root-ca.pem
type: File
extraVolumeMounts:
- name: opt-ca-certificates
mountPath: /etc/ssl/certs/root-ca.pem
readOnly: true
config:
MM_SERVICESETTINGS_SITEURL: https://mattermost.kind.cluster
MM_TEAMSETTINGS_SITENAME: Mattermost on kind.cluster
MM_GITLABSETTINGS_ENABLE: 'true'
MM_GITLABSETTINGS_ID: mattermost
MM_GITLABSETTINGS_SECRET: mattermost-client-secret
MM_GITLABSETTINGS_AUTHENDPOINT: https://keycloak.kind.cluster/auth/realms/master/protocol/openid-connect/auth
MM_GITLABSETTINGS_TOKENENDPOINT: https://keycloak.kind.cluster/auth/realms/master/protocol/openid-connect/token
MM_GITLABSETTINGS_USERAPIENDPOINT: https://keycloak.kind.cluster/auth/realms/master/protocol/openid-connect/userinfo
destination:
server: https://kubernetes.default.svc
namespace: mattermost
revisionHistoryLimit: 3
syncPolicy:
syncOptions:
- ApplyOutOfSyncOnly=true
- CreateNamespace=true
- FailOnSharedResource=true
- PruneLast=true
automated:
prune: true
selfHeal: true