Walkthrough: Adding the DCRM connector module to Sitecore in Azure Kubernetes Service
You can add the Sitecore Connect for Microsoft Dynamics 365 for Sales (DCRM) connector in Azure Kubernetes Service (AKS).
This walkthrough describes how to:
-
Build the DCRM images and push them to Azure.
-
Prepare files and folders for deployment.
-
Deploy the containers using kubectl commands.
-
Update your Solr indexes.
Build images and push them to Azure
To build the images for DCRM and push them to Azure:
-
Build the images for DCRM as explained in Walkthrough: Preparing to install the DCRM connector in a container environment.
-
Open the Windows console, and use the
docker tagcommand to tag the images. For example:RequestResponsedocker tag sitecore-dcrm-xp1-cm:8.0.0-1497 $registry/experimental/sitecore-dcrm-xp1-cm:sc103 -
In the console, use the
docker pushcommand to push the images to your Azure registry. For example:RequestResponsedocker push $registry/sitecore-dcrm-xp1-cm:sc103
Prepare files and folders for deployment
To prepare files and folders in your installation for deployment:
-
Download the Sitecore DCRM container deployment package from the Sitecore download page and extract it to a folder on your local workstation.
-
Open the folder that you extracted the Sitecore DCRM container deployment package to.
-
Navigate to the
dcrm\k8s\<version>folder, for example,dcrm\k8s\ltsc2019. Copy theoverridessubfolder to the Sitecore Experience Platform (SXP) container deployment package folderk8s\<version>(on the same level as the xp1 folder). -
In the SXP container deployment package, in each of the
overrides\<topology>,overrides\<topology>\init, andoverrides\<topology>\secretsfolders, locate thekustomization.yamlfile. In each file, update thebasesparameter with the appropriate folder names for your installation, for example,../../xp1.NoteThe
basesparameter contains the placement of the original Sitecore container deployment files that thekustomization.yamlfiles override. -
In each of the
kustomization.yamlfiles, in theimages:section, update thenewNameandnewTagparameters with the values for the images you pushed to the Azure Registry, for example,mssql-init,cm,xdbcollection,xdbsearch, andxdbsearchworker.NoteTo find the values you need for, for example, the
mssql-initimage, go to the Azure Container Registry, search for yoursitecore-dcrm-xp1-mssql-initimage, and take the values from that image. -
In the
overrides\xp1\secretsfolder, in thesitecore-data-exchange-staging.txtandsitecore-dcrm.txtfiles , update the connection string details.NoteThe files contain an example of how the connection string must look.
Deploy the containers
Prepare the AKS cluster configuration and deploy the ingress controller. For information on how to do this, see the Installation Guide for Production Environment for Kubernetes which is available on the Sitecore download page.
To deploy the containers and the necessary Kubernetes components:
-
Open the Windows console, and navigate to the folder containing the
xp1andoverridesfolders. -
Deploy the secrets. Use this command:
RequestResponsekubectl apply -k ./overrides/<topology>/secrets/ -
Run the
externalfolder. Use this command:RequestResponsekubectl apply -k ./<topology>/external/ -
Wait for all containers to have the status Ok/Running. You can check the status with this command:
RequestResponsekubectl get pods -o wide -
Run the
initfolder. Use this command:RequestResponsekubectl apply -k ./overrides/<topology>/init/ -
Wait for all containers to have the status Completed. You can check the status with this command:
RequestResponsekubectl get pods -
To create persistent volumes, run this command:
RequestResponsekubectl apply -f ./xp1/volumes/azurefile -
Run the Sitecore containers with the DCRM changes. Use this command:
RequestResponsekubectl apply -k ./overrides/<topology>/ -
Wait for all containers to have the status Ok/Running. You can check the status with the
kubectl get podscommand. -
Update the local host file. For information on how to do this, see the Installation Guide for Production Environment for Kubernetes, which is available on the Sitecore download page.
When the containers have been deployed, rebuild your search indexes.