Disabling WalkMe on QRadar Suite Software

In IBM Security QRadar® Suite Software version 1.10.3, WalkMe is enabled by default. The WalkMe tool is enabled to provide guided tours to new users. To disable or re-enable WalkMe in your IBM Security QRadar Suite Software cluster, use a CP4SConfiguration CR .yaml file.

Procedure

  1. Log in to your Red Hat® OpenShift® Container Platform cluster by typing either of the following commands, where <openshift_url> is the URL for your Red Hat OpenShift Container Platform environment.
    • Using a username and password.
      oc login <openshift_url> -u <username> -p <password>
    • Using a token.
      oc login --token=<token> --server=<openshift_url>
  2. Create a CP4SConfiguration CR .yaml file with the following content.
    apiVersion: isc.ibm.com/v1
    kind: CP4SConfiguration
    metadata:
        name: walkme
    spec:
        values:
        - clxui.walkme=""
  3. Apply the CP4SConfiguration CR file that you created in step 1 by entering the following command, where <file_name> is the name of the .yaml file.
    oc apply -f <file_name>
  4. Verify that WalkMe is not appearing in your QRadar Suite Software UI getting started support menu.

What to do next

To re-enable WalkMe, complete the following steps.
  1. Create a CP4SConfiguration CR .yaml file with the following content.
    apiVersion: isc.ibm.com/v1
    kind: CP4SConfiguration
    metadata:
        name: walkme
    spec:
        values: 
        - clxui.walkme="https://cdn.walkme.com/users/f7a819249c0546beaf9d1b519b4472ac/walkme_f7a819249c0546beaf9d1b519b4472ac_https.js"
    
  2. Apply the CP4SConfiguration CR file that you created in step 1 by typing the following command, where <file_name> is the name of the .yaml file.
    oc apply -f <file_name>
  3. Verify that WalkMe is appearing in your QRadar Suite Software UI getting started support menu.