89e052db1a
- Add docker-compose as well as instructions to run it locally with exposed ports 8080 & 8443 (with required nginx.conf additions) - Add helm chart; it's pretty default and contains one template extension: we should be able to mount public/config.json from values.yaml (untested)
32 lines
828 B
YAML
32 lines
828 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: ungleich-matrix-element-call
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
destination:
|
|
namespace: ungleich
|
|
server: 'https://kubernetes.default.svc'
|
|
source:
|
|
path: apps/prod/element-call
|
|
repoURL: 'https://code.ungleich.ch/ungleich-intern/k8s-config.git'
|
|
targetRevision: HEAD
|
|
helm:
|
|
parameters:
|
|
- name: storage.letsencrypt.storageClass
|
|
value: rook-ceph-block-hdd
|
|
- name: storage.letsencrypt.size
|
|
value: 60Mi
|
|
- name: letsencryptStaging
|
|
value: 'no'
|
|
- name: fqdn
|
|
value: 'call.ungleich.ch'
|
|
project: default
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|