Managing user sign-on on Kubernetes

A token is maintained by the Sametime server to control how often you sign in. The default value is 30 days. You can modify this value or turn off the feature by adding the JWT_REFRESH_DURATION_DAYS environment variable. You can specify any number of whole days to retain login credentials. To disable this feature, set the value to 0.

About this task

You can change settings temporarily or permanently. To temporarily change the setting, run the following command to change the setting in a deployed environment.
kubectl set env deploy/auth JWT_REFRESH_DURATION_DAYS=number_of_days

To permanently change the setting, complete the following steps:

Procedure

  1. Edit the deployment.yaml file, which contains the auth environment variables.
    You can find the file in the helm/charts/auth/templates directory.
  2. Add the JWT_REFRESH_DURATION_DAYS environment variable.
    Specify the duration in this format:
    name: JWT_REFRESH_DURATION_DAYS value: number_of_days
    

    The following example shows the auth section with the JWT_REFRESH_DURATION_DAYS environment variable set to 10 days.

    Sample yaml file with JWT_REFRESH_DURATION_DAYS variable with value of 10

  3. Save the changes.
  4. Perform a helm upgrade to deploy the updated chart.