Specifying a cipher for Sametime to connect to Domino LDAP on Kubernetes

This task involves defining the required cipher for Sametime to connect to Domino 12 LDAP servers.

Before you begin

By default, Domino 12.0.x LDAP servers must be configured to support a certain cipher used by Sametime. For more information, see Sametime 12.0 TLS required ciphers to connect to Domino 12.0.2 LDAP.

About this task

To support Domino 12.0.2 LDAP connections, follow these steps.

Procedure

  1. Place the values.yaml file in edit mode.
  2. Locate the sametimeIni: setting in the file, and then add the new line, indented with four spaces:
        STI__Config__STLDAP_TLS_CIPHER_SUITES=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
    For more information on how to configure the sametime.ini file, refer to Configuring the sametime.ini file on Kubernetes.
  3. Save and close the file.
  4. Apply your changes to the environment.
    Verify that you are in the helm directory and run the following command to apply changes. Specify the Sametime deployment name for your environment. The default for Sametime Premium version 12 is sametime.
    helm upgrade sametime_deployment_name .
    Note: Be sure to include the dot at the end. It is part of the command.
    If you are unsure of your deployment name, issue the helm list command to find the name. If you upgraded from an earlier Sametime release, the default name is sametime-meetings.
  5. Restart the pods with the changes. Use the kubectl scale command to scale the pods to zero and then to one that have been changed. You must run the commands for each pod that the change affects.
    1. Run the following command to scale the pod to zero.
      Scale the pod to zero, where pod_deployment_name is the pod name.
      
      kubectl scale deploy pod_deployment_name --replicas=0
      
    2. Run the following command to scale the pod to one.
      
      kubectl scale deploy pod_deployment_name --replicas=1