Configuring the TURN server for Kubernetes

About this task

You can configure the Sametime server to enable a TURN server on port 443 for Kubernetes.
Note: Running the script to prepare deployment prompts for TURN server configuration. The following process is to enable TURN post deployment. For more information, refer to Preparing the deployment.

Procedure

  1. Update the values.yaml file with the following values. Ensure that the syntax for the YAML file is followed.
    turnEnable: true
    globalModules: turncredentials
    turnHost:<turn host name>
    turnPort: 443
    turnTransport: tcp
    jvbTcpHarvesterDisabled: true
  2. Update the helm/templates/sametime-secrets.yaml file.
    Locate the TurnSecret variable and set the value to the base64 encoded secret as set in the TURN configuration.
    TurnSecret: <base64encoded secret as set in TURN configuration>
    Note: If you need to generate a base64 encoded secret, use the following command. Use the unencoded value provided in your TURN configuration.
    /bin/echo -n $(openssl rand -hex 32) | base64
  3. Run the helm update command to enable the configuration changes.