Deployment & Configuration Guide
Requirements
- Kubernetes. Deployment Planning
- Storage Solution Storage Solution - Getting Started
- CX Deployement https://expertflow-docs.atlassian.net/wiki/x/r5Qm
Deployment
Add the Expertflow Helm charts repository.
helm repo add expertflow https://expertflow.github.io/charts
Update the charts repository
helm repo update expertflow
Clone QM Backend Repository
git clone -b CX-4.7_f-CIM-27324 https://efcx:RecRpsuH34yqp56YRFUb@gitlab.expertflow.com/cim/cim-solution.git CX-4.7-helm
cd CX-4.7-helm/kubernetes
Creating QM Database
Follow the steps below to create a database with name qm_backend
in Postgres.
Exec into the ef-postgresql-0
pod in the ef-external
namespace
kubectl -n ef-external exec -it ef-postgresql-0 -- bash
execute the environment setup for postgresql-client ( Only needed when the postgresql is running in non-HA mode , like no pgpool and multiple replicas of postgresql are running )
/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash
Log into Postgres using the following command. Use the password configured during deployment of EF CX.
The default password for the user 'sa' in PostgreSQL, set up during the EF CX deployment, is Expertflow123
psql --host ef-postgresql -U sa postgres -p 5432
Create db and extensions using the following commands:-
CREATE DATABASE qm_db;
\c qm_db;
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
\c postgres;
Open the file qm-backend/values.yaml and edit it according to the below given information which is necessary for the qm-backend to work properly.
Value | Updated Value |
---|---|
ingressRouter | FQDN of the host |
Finally, deploy the qm-backend using the following command:-
helm upgrade --install --namespace=expertflow --set global.efCxReleaseName="ef-cx" qm-backend --debug --values=qm-backend/values.yaml qm-backend
Keycloak Configuration:
Quality Management has introduced two new roles:
Quality Manager
Evaluator
Following are the quality-manager-realm and quality-manager-authz files. First partial import realm to get the relevant Quality Management roles then import the permissions file to get all the quality-management related permissions.
4.7-quality-management-realm.json
4.7-quality-management-authz.json
Step by step process:
Step 1: Login to Keycloak
Access the Keycloak Administration console by opening this URL in your browser: https://<FQDN>/auth. and click on Administration Console.
Default username and password is “admin” and “admin” respectively.

Step 2: Open the Realm settings tab
In the ExpertFlow realm, select Realm Settings from the left navigation bar, then click on the Actions on top left. A pop up will open.
If the ExpertFlow realm is not present. Refer to this documentation to import the ExpertFlow realm and additional configuration

Step 3: Import the file with following settings:

Choose all the resources and select skip for last dropdown in case of resource already exists. And click import. A successful import message will appear.
Step 4: Now go to Clients on side navigation bar and click on cim from client list.
Now click on Authorization tab like following and click on import.


Now, all is done for importing realms and roles/permissions in Keycloak for Quality Management. In next section, you will see how to create users in keycloak and assign Quality Manager and Evaluator roles to them with groups.
Assigning role and group to user in Keycloak:
Step 1: Create a user in keycloak
Click on users on left sidebar navigation and click on Add user.

Step 2: Fill the following form:
Fill the form. Username is compulsory here and click on Create button below.

Step 3: Setting the Password
After creating the user, you will be taken to next screen. Click on Credentials tab, you will meet following screen.

Click on Set Password. You will see following popup.

Fill out the password and confirm password fields and make sure to toggle off Temporary otherwise you user will be deleted after certain time as it will be temporary user. After that click and Save. You will again asked for confirmation, click on Save Password.
Step 4: Assigning Roles to user:
Click on Role Mapping tab. You will see following screen. Click on Assign Role button in blue color.

You will meet following screen.

Now select the roles to want user to have. These roles will give permission to user to login and access Quality Management screens according to role like evaluator can only access Reviews List screen while Quality Manager can access Reviews List as well as Schedules and Conversation List.
Following role is compulsory:
agent
Other than this, you have quality-manager and evaluator role, also check which one you want user to have and click on Assign.
Step 4: Assigning Group to user:
Click on Groups tab. You will see following screen. Click on Join Group button in blue color.
Groups can also be assigned from Step 2 screen using Join Groups.

You will meet following screen.

Check one of the following and click Join:
agents_permission
senior_agents_permission
You have successfully created user with required roles, group and configuration.
For logging in to Unified Admin, your user must have role of agent with group assigned and part of a team otherwise you won’t be able to login.
Follow the following section to add agent to team using admin.
Assigning team to Keyclock User:
https://<FQDN>. Enter admin and admin for username and password respectively.
Step 1: Login to
Click on Teams from left sidebar navigation and then click on + New Team button on left top with search box.

Step 2: Creating team with agent:
On clicking New Team button, a popup will appear. Fill it accordingly and click on Add. Add team name and add agent from dropdown. Your created user will be available here. Also, only user which have agent role will be available. So make sure you have assigned roles correctly.

Now user will be able to login into EFCX. Logout from top left by clicking on more button and select Logout. Try to login your user with username and password. You will be successfully able to login to EFCX.
LIMITATIONS:
If a wrap-up code is not found in the search, it must be added manually to retrieve the specific result.
Cisco wrap-up codes must exist in Unified-Admin wrap-up codes to enable schedule creation and apply conversation list filters.
Conference calls are not available for both inbound and outbound calls. Similarly, consult calls are also not available for outbound calls.
When a consulted call is transferred to the next agent, it currently does not create a conversation, leading to potential call loss. A conversation should be created to prevent this issue.
There are some limitations on agent-team part regarding agent deletion from keycloak. Please go through Agent Team Document limitation part for better guidance.