Enabling Meeting Configuration Changes
About this task
Docker
- custom.env
- .env
- docker-compose.yml
Kubernetes
- helm/values.yaml
Note: These values are case sensitive and must be entered in lower
case.
Procedure
- Shut down the Meeting
server.Docker:
docker-compose down
Kubernetes:helm uninstall sametime-meetings .
Note: In helm, the term uninstall is terminating the deployment. Additionally, the command assumes you are in the helm directory. The . represents current directory. - Save changes to the configuration file(s).
- Required step on Docker only: Delete the jitsi-conifg
directory.
rm -rf jitsi-config/
Note: r=recursive and f=forceThe jitsi-config directory on Docker will rebuild on startup with the new configuration values.
- Start the Meeting server.
Docker:
docker-compose up -d
Kubernetes:
helm install sametime-meetings .
Note: In helm, the term install is a deployment of the applications. Additionally, the command assumes you are in the helm directory. The . represents current directory.