Configuring LTPA in Kubernetes
If you did not enable LTPA authentication during the installation of Sametime, you can enable it manually.
You must have already obtain the LTPA keys before you can compete this task. For more information on using WebSphere Liberty to generate LTPA keys, see Generating LTPA keys.
The changes in this task affect the following pods:
- community
Determine values to use for the configuration
-
Obtain the base64 encoded value for your LTPA key file. The LTPA key file can be named anything and might have a file extension. For example if your LTPA key file name is
ltpa.keys
. Enter the following command to base64 encode the file:Copy the base64 encoded output on the screen to be used in the configuration. Note: It is a continuous line with no line breaks.cat ltpa.keys | base64 -w 0
-
For managed charts: ltpaKeysBase64: value
-
For traditional charts: ltpa.keys: value
-
Obtain the base64 encoded password to the LTPA Key file. For example, if the password is
ltpapassword
, enter the following command:Create a new parameter, and set the value of the parameter to the encoded output.echo -n ‘ltpapassword’ | base64
ltpaKeysPasswordBase64: value
-
Determine the SSO token expiration time, which must be the same for all participating servers. To find the value in Connections see Integrating with HCL Connections. To find the value in Domino, see Creating a Web SSO configuration.
Now that you know the number of minutes until the token expires, create a new parameter and set it to the number of minutes. For example if the number of minutes is 120, then the parameter is:
ltpaDurationMinutes: "120"
- If integrating with HCL Connections, determine the realm name. Use the cat command to view the content of the
ltpa.key
file and find the name of the WebSphere realm.
cat ltpa.key
Look for the com.ibm.websphere.ltpa.Realm=defaultWIMFileBasedRealm
parameter.
Create a new parameter with the value, for example:
ltpa.realm: defaultWIMFileBasedRealm
Procedure for managed charts
If you are using the managed charts, use the following steps. If you are using traditional charts, scroll down to the next section for traditional charts.
- Open your custom
values.yaml
file for editing. -
In the
global
section, add the parameters determined from above. Each line is indented with two spaces.ltpaKeysBase64: value ltpaKeysPasswordBase64: value ltpaDurationMinutes: "value" ltpa.realm: value (for Connections only)
-
Add the following parameter to enable LTPA.
enableLtpa: true
-
Save and close your custom
values.yaml
file. -
For these changes to take effect, you must uninstall Sametime, then re-install referencing your custom
values.yaml
file.
Procedure for traditional helm charts
If you are enabling LTPA using traditional helm charts instead of using the managed charts, complete the following steps.
-
Open the
values.yaml
file in the helm directory for editing. -
Locate the following line and change the value from false to true.
enableLtpa
-
Add the parameters:
ltpaDurationMinutes: “value” ltpa.ream: value (for Connections only) ltpaKeysPasswordBase64: value
-
Save and close the
values.yaml
file. -
Change directories to
helm/templates
. -
Open the
auth-config-secrets.yaml
file for editing. -
In the
ltpa.keys
field, remove the text that is there, and add the base64 encoded value from step 1. -
Save and close the auth-config-secrets.yaml file.
-
For these changes to take effect, complete the steps in Applying Changes.
What to do next
If you are integrating with HCL Connections or HCL Verse, it might be beneficial to add a content security policy that includes the DNS suffix of the servers participating in the LTPA Single Sign On. For information, see Enabling content security headers on Kubernetes.