No description
| .forgejo/workflows | ||
| charts | ||
| templates | ||
| Chart.yaml | ||
| NOTES.txt | ||
| README.md | ||
| values.yaml | ||
Helm Chart for Meetling Conferencing Application
This Helm Chart will install the Meetling Application on a Kubernetes Cluster.
helm pull oci://reg.h2-invent.com/charts/meetling
helm install oci://reg.h2-invent.com/charts/meetling
Values
https://git.h2-invent.com/Helm-Chart/meetling/src/branch/master/values.yaml
Services
- Application
- Websocket
- Cron Reminder
- Cronjob
- Messenger
- Notes
- Whiteboard
Depends on
- MySQL Database (https://git.h2-invent.com/Helm-Chart/mariadb)
- Keycloak IDP (https://git.h2-invent.com/Helm-Chart/Keycloak)
- Load Balancer (NIGNX or Caddy)
RSA for Rabbit-MQ
Before enabling gov-operator in the helm chart
meetling-rsa:
enabled: false
secretName: gov-operator-keys
Create Operator key
openssl genpkey -algorithm RSA -out private_key.pem -pkeyopt rsa_keygen_bits:4096
openssl rsa -pubout -in private_key.pem -out public_key.pem
kubectl create secret generic gov-operator-keys \
--namespace meetling \
--from-file=public_key.pem=./public_key.pem \
--from-file=private_key.pem=./private_key.pem