No description
Find a file
holzi1005 0ef746f1f2
All checks were successful
Release Helm Charts / release (push) Successful in 1m16s
Release Helm Charts / helm (push) Successful in 8s
add restricted sa
2026-06-17 08:44:40 +02:00
.forgejo/workflows (MAJOR) Cleanup 2025-11-05 15:24:28 +01:00
charts mnove to new org 2025-11-05 15:18:44 +01:00
templates add restricted sa 2026-06-17 08:44:40 +02:00
Chart.yaml update to more customization and ingress 2026-03-15 11:10:21 +01:00
NOTES.txt add notes and whiteboard 2026-03-15 11:20:41 +01:00
README.md add meetling-rsa 2026-06-06 11:41:13 +02:00
values.yaml fix values 2026-06-14 19:03:30 +02:00

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

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