Difference between revisions of "PEC-REP/Current/GIMPEGuide/DeployGSP"

From Genesys Documentation
Jump to: navigation, search
Line 5: Line 5:
 
|Section={{Section
 
|Section={{Section
 
|alignment=Vertical
 
|alignment=Vertical
|structuredtext={{NoteFormat|Make sure to review {{Link-SomewhereInThisVersion|topic=PlanningGSP}} for the full list of prerequisites required to deploy GSP, including provisioning S3-compatible storage (see {{Link-AnywhereElse|product=PEC-REP|version=Current|manual=GIMPEGuide|topic=PlanningGSP|anchor=GSP_Plan_CreateS3Storage}}).|}}
+
|structuredtext={{NoteFormat|Make sure to review {{Link-SomewhereInThisVersion|topic=PlanningGSP}} for the full list of prerequisites required to deploy GSP, including creation of the required S3-compatible storage (see {{Link-SomewhereInThisVersion|manual=GIMPEGuide|topic=PlanningGSP|anchor=S3|display text=Create object storage}}).}}
 
|Status=No
 
|Status=No
 
}}{{Section
 
}}{{Section
Line 11: Line 11:
 
|anchor=EnvSetup
 
|anchor=EnvSetup
 
|alignment=Vertical
 
|alignment=Vertical
|structuredtext=To prepare your environment for the deployment, complete the steps in this section. Use the instructions for your environment:
+
|structuredtext=To prepare your environment for the deployment, complete the steps in this section for:
  
*[[Draft:PEC-REP/Current/GIMPEGuide/DeployGSP#GSP Env OpenShift|OpenShift]]
+
*[[{{FULLPAGENAME}}#PrepOpenShift|OpenShift]]
*[[Draft:PEC-REP/Current/GIMPEGuide/DeployGSP#GSP Env GKE|GKE]]
+
*[[{{FULLPAGENAME}}#PrepGKE|GKE]]
*[[Draft:PEC-REP/Current/GIMPEGuide/DeployGSP#GSP Env AKS|AKS]]
 
  
{{AnchorDiv|GSP_Env_OpenShift}}
+
{{AnchorDiv|PrepOpenShift}}
===OpenShift environment setup===
+
===Environment setup for OpenShift===
  
#Using the CLI, log in to the OpenShift cluster on the host where you will run the deployment.
+
#Log in to the OpenShift cluster via CLI on the host where you will run the deployment:
 
#:<source lang="text">oc login --token <token> --server <URL of the API server></source>
 
#:<source lang="text">oc login --token <token> --server <URL of the API server></source>
#(Optional) Check the cluster version.
+
#(Optional) Check the cluster version:
 
#:<source lang="text">oc get clusterversion</source>
 
#:<source lang="text">oc get clusterversion</source>
#If the cluster administrator has not already done so, create the new project <code>gsp</code> for GSP:
+
#If the cluster administrator has not already done so, create a new project for GSP:
 
#:<source lang="text">oc new-project gsp</source>
 
#:<source lang="text">oc new-project gsp</source>
#Set the default project to <code>gsp</code>:
+
#Set the default project to gsp:
 
#:<source lang="text">oc project gsp</source>
 
#:<source lang="text">oc project gsp</source>
#Create the pull secret for the Genesys JFrog image registry.
+
#Create a secret for docker-registry in order to pull images from the Genesys JFrog repository:
#*The JFrog image registry is represented as <code>docker-registry</code> in the system.
 
#*Here, you define the credentials Kubernetes uses to pull images and Helm charts from the repository.
 
#*When you configure the GSP, you will reference the pull secret for the registry as a Helm chart override; see Configuring GSP.
 
 
#:<source lang="text">oc create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp</source>
 
#:<source lang="text">oc create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp</source>
#Create the Kafka secret.
+
<!--{{Editgrn_open}}<font color=red>'''Writer's note:''' This step is not in the PAT team instructions.</font>{{Editgrn_close}}-->
#*Kafka requires a seperate access credential.
+
#:Create a secret named <tt>kafka-secrets</tt> in order to access Kafka.
#*This credential is represented as <tt>kafka-secrets</tt> in the system.
+
#:When Kafka is deployed without authentication:
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp</source>
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp</source>
#:Note: Kafka can be deployed without authentication, using the following syntax:
+
#:When Kafka is deployed with authentication:
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp</source>
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp</source>
#:The following example reflects a Kafka deployment without authentication.
+
#:For example:
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp</source>
 
#:<source lang="text">oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp</source>
  
{{AnchorDiv|GSP_Env_GKE}}
+
{{AnchorDiv|PrepGKE}}
===GKE environment setup===
+
===Environment setup for GKE===
  
 
#Ensure that the gcloud CLI and required Helm version are installed on the host where you will run the deployment.
 
#Ensure that the gcloud CLI and required Helm version are installed on the host where you will run the deployment.
#Using the CLI, log in to the GKE cluster on the host where you will run the deployment.
+
#Log in to the GKE cluster from the host where you will run the deployment:
 
#:<source lang="text">gcloud container clusters get-credentials <cluster></source>
 
#:<source lang="text">gcloud container clusters get-credentials <cluster></source>
#If the cluster administrator has not already done so, create a new namespace <code>gsp</code> for GSP.
+
#If the cluster administrator has not already done so, create a new namespace for GSP:
#*Create a JSON file that specifies the namespace metadata. As an example, the file '''create-gsp-namespace.json.''' has the following JSON
+
##Create a .json file specifying the namespace metadata. For example, '''create-gsp-namespace.json''':
#:<source lang="bash">{
+
##:<source lang="bash">{
 
   "apiVersion": "v1",
 
   "apiVersion": "v1",
 
   "kind": "Namespace",
 
   "kind": "Namespace",
Line 60: Line 56:
 
   }
 
   }
 
}</source>
 
}</source>
#*Create the namespace. The following example applies the '''create-gsp-namespace.json''' file to create the <code>gsp</code> namespace.
+
##Execute the following command to create the namespace:
#:<source lang="text">kubectl apply -f create-gsp-namespace.json</source>
+
##:<source lang="text">kubectl apply -f create-gsp-namespace.json</source>
#*Confirm that the namespace was successfully created.
+
##Confirm namespace creation:
#:<source lang="text">kubectl describe namespace gsp</source>
+
##:<source lang="text">kubectl describe namespace gsp</source>
#Create the pull secret for the Genesys JFrog image registry.
+
#Create a secret for docker-registry in order to pull images from the Genesys JFrog repository:
#*The JFrog image registry is represented as <code>docker-registry</code> in the system.
 
#*Here, you define the credentials Kubernetes uses to pull images and Helm charts from the repository.
 
 
#:<source lang="text">kubectl create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp</source>
 
#:<source lang="text">kubectl create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp</source>
#Create the Kafka secret.
+
#Create a secret named <tt>kafka-secrets</tt> in order to access Kafka.
#*Kafka requires a separate access credential.
+
#:When Kafka is deployed without authentication:
#*This credential is represented as <code>kafka-secrets</code> in the system, as in the following syntax.
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp</source>
 
#:For example:
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp</source>
 
#:Note: Kafka can be deployed without authentication, as in the following example.
 
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp</source>
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp</source>
 
+
#:When Kafka is deployed with authentication:
{{AnchorDiv|GSP_Env_AKS}}
 
===AKS environment setup===
 
 
 
#Ensure that the Azure CLI and required Helm version are installed on the host where you will run the deployment.
 
#Using the CLI, log in to the cluster on the host where you will run the deployment.
 
#If the cluster administrator has not already done so, create a new namespace <code>gsp</code> for GSP.
 
#*Create a JSON file that specifies the namespace metadata. As an example, the file '''create-gsp-namespace.json.''' has the following JSON
 
#:<source lang="bash">{
 
  "apiVersion": "v1",
 
  "kind": "Namespace",
 
  "metadata": {
 
    "name": "gsp",
 
    "labels": {
 
      "name": "gsp"
 
    }
 
  }
 
}</source>
 
#*Create the namespace. The following example applies the '''create-gsp-namespace.json''' file to create the <code>gsp</code> namespace.
 
#:<source lang="text">kubectl apply -f create-gsp-namespace.json</source>
 
#*Confirm that the namespace was successfully created.
 
#:<source lang="text">kubectl describe namespace gsp</source>
 
#Create the pull secret for the Genesys JFrog image registry.
 
#*The JFrog image registry is represented as <code>docker-registry</code> in the system.
 
#*Here, you define the credentials Kubernetes uses to pull images and Helm charts from the repository.
 
#:<source lang="text">kubectl create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp</source>
 
#Create the Kafka secret.
 
#*Kafka requires a separate access credential.
 
#*This credential is represented as <code>kafka-secrets</code> in the system, as in the following syntax.
 
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp</source>
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp</source>
 
#:For example:
 
#:For example:
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp</source>
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp</source>
#:Note: Kafka can be deployed without authentication, as in the following example.
 
#:<source lang="text">kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp</source>
 
 
{{AnchorDiv|GSP_Env_AKS}}
 
 
|Status=No
 
|Status=No
 
}}{{Section
 
}}{{Section
|sectionHeading=Deploy the GSP
+
|sectionHeading=Deploy
|anchor=GSP_Deploy
 
 
|alignment=Vertical
 
|alignment=Vertical
|structuredtext=After the environment has been set up, deploying the GSP is a matter of executing the following command:
+
|structuredtext=Execute the following command:
 
<source lang="text">helm install gsp <gsp-helm-artifact> -f <gsp-values.yaml> -n gsp</source>
 
<source lang="text">helm install gsp <gsp-helm-artifact> -f <gsp-values.yaml> -n gsp</source>
 
|Status=No
 
|Status=No
Line 133: Line 89:
 
#Review the logs to verify no errors.
 
#Review the logs to verify no errors.
 
#Monitor the operations dashboard to verify that the services report their status as Ready, and pods are not continually restarting.
 
#Monitor the operations dashboard to verify that the services report their status as Ready, and pods are not continually restarting.
 +
<!--{{Editgrn_open}}<font color=red>'''Writer's note:''' To be extended to cover/link to troubleshooting tips like config resync.</font>{{Editgrn_close}}-->
 
|Status=No
 
|Status=No
 
}}
 
}}
 
|PEPageType=45d1441f-dc69-4a17-bd47-af5d811ce167
 
|PEPageType=45d1441f-dc69-4a17-bd47-af5d811ce167
 
}}
 
}}

Revision as of 16:46, September 2, 2022

This topic is part of the manual Genesys Info Mart Private Edition Guide for version Current of Reporting.

Learn how to deploy GIM Stream Processor (GSP) into a private edition environment.

Assumptions

  • The instructions on this page assume you are deploying the service in a service-specific namespace, named in accordance with the requirements on Creating namespaces. If you are using a single namespace for all private edition services, replace the namespace element in the commands on this page with the name of your single namespace or project.
  • Similarly, the configuration and environment setup instructions assume you need to create namespace-specific (in other words, service-specific) secrets. If you are using a single namespace for all private edition services, you might not need to create separate secrets for each service, depending on your credentials management requirements. However, if you do create service-specific secrets in a single namespace, be sure to avoid naming conflicts.
Important
Make sure to review Before you begin GSP deployment for the full list of prerequisites required to deploy GSP, including creation of the required S3-compatible storage (see Create object storage).

Set up your environment

To prepare your environment for the deployment, complete the steps in this section for:

Environment setup for OpenShift

  1. Log in to the OpenShift cluster via CLI on the host where you will run the deployment:
    oc login --token <token> --server <URL of the API server>
  2. (Optional) Check the cluster version:
    oc get clusterversion
  3. If the cluster administrator has not already done so, create a new project for GSP:
    oc new-project gsp
  4. Set the default project to gsp:
    oc project gsp
  5. Create a secret for docker-registry in order to pull images from the Genesys JFrog repository:
    oc create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp
    Create a secret named kafka-secrets in order to access Kafka.
    When Kafka is deployed without authentication:
    oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp
    When Kafka is deployed with authentication:
    oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp
    For example:
    oc create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp

Environment setup for GKE

  1. Ensure that the gcloud CLI and required Helm version are installed on the host where you will run the deployment.
  2. Log in to the GKE cluster from the host where you will run the deployment:
    gcloud container clusters get-credentials <cluster>
  3. If the cluster administrator has not already done so, create a new namespace for GSP:
    1. Create a .json file specifying the namespace metadata. For example, create-gsp-namespace.json:
      {
        "apiVersion": "v1",
        "kind": "Namespace",
        "metadata": {
          "name": "gsp",
          "labels": {
            "name": "gsp"
          }
        }
      }
    2. Execute the following command to create the namespace:
      kubectl apply -f create-gsp-namespace.json
    3. Confirm namespace creation:
      kubectl describe namespace gsp
  4. Create a secret for docker-registry in order to pull images from the Genesys JFrog repository:
    kubectl create secret docker-registry <repository secret name> --docker-server=<repository> --docker-username=<username> --docker-password=<password/API key> --docker-email=<email id> -n gsp
  5. Create a secret named kafka-secrets in order to access Kafka.
    When Kafka is deployed without authentication:
    kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\"} -n gsp
    When Kafka is deployed with authentication:
    kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"<kafka-bootstrap-url>\", \"username\":\"gsp\",\"password\":\"<password>\"} -n gsp
    For example:
    kubectl create secret generic kafka-secrets --from-literal=kafka-secrets={\"bootstrap\":\"infra-kafka-cp-kafka.infra.svc.cluster.local:9092\",\"username\":\"gsp\",\"password\":\"kafka-password\"} -n gsp

Deploy

Execute the following command:

helm install gsp <gsp-helm-artifact> -f <gsp-values.yaml> -n gsp

Validate the deployment

You can consider GSP deployment successful when the pod is running and in Ready state. Genesys Info Mart does not report the Ready state for pods until internal health checks are satisfied and the pods are operational. You can use standard kubectl commands like list and get to verify the successful deployment and readiness status of the Kubernetes objects.

However, from a functional point of view, you cannot validate GSP deployment unless GCA and GIM have been deployed as well. Do not expect consistent data until all three Genesys Info Mart services are up and running. When all three services have been deployed:

  1. Make a few test calls employing different routing strategies under different scenarios, and verify that all the calls are correctly captured in the Info Mart database. For example:
    • The calls appear in the interaction-related tables.
    • The calls have been correctly assigned to agents and queues.
  2. Review the logs to verify no errors.
  3. Monitor the operations dashboard to verify that the services report their status as Ready, and pods are not continually restarting.
Comments or questions about this documentation? Contact us for support!