Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
ujwaliyer
Advisor
Advisor

Introduction:


This is Part-2 of a 3-part blog post series on detailed a step-by-step installation of SAP Data Intelligence on-premise v3.0/3.1 on Microsoft Azure. This blog post series has been co-authored by my colleague skugan.venkatesan .This post will cover the preparations on the Kubernetes cluster and the SLCB tool(Software Lifecycle Container Bridge).

The Part-1 blog post covers the system setup required to start with SAP Data Intelligence installation.

The Part-3 blog post explains the steps needed to expose SAP Data Intelligence for end user access.

 

Prepare Kubernetes Cluster For Installation


The az aks get-credentials command accesses credentials for an AKS cluster and merges them into the kubeconfig file. You can use Azure role-based access control (Azure Role Based Access Control or RBAC) to control access to these credentials. These Azure RBAC roles let you define who can retrieve the kubeconfig file, and what permissions they then have within the cluster. (Courtesy – Microsoft)
az aks get-credentials --resource-group <Resource Group Name> --name <AKS Cluster Name> 

az aks get-credentials --resource-group aksdifinal --name aksdifinal


You can verify the connection by displaying active services:
kubectl get services


 

Helm and Tiller setup:


Let’s install helm and tiller in our Jumpbox.

Helm is a package manager for Kubernetes that allows developers and operators to more easily package, configure, and deploy applications and services on Kubernetes clusters.

Tiller is a server component that listens for commands from helm, and handles the configuration and deployment of software releases on the Kubernetes cluster.

Let us first add a service account to the tiller. As a prerequisite, we will have to create a role binding which specifies a role and a service account name that have been set up in advance. We need to perform the following steps

  • Create an helm-rbac.yaml file with following content:


Vim helm-rbac.yaml

The vim command shall open the YAML file in edit mode, please enter the below content.
apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tiller
namespace: kube-system

Exit the editor, and for confirmation, view the file with cat command.


 

Here Tiller is given admin access to the entire cluster. Giving admin access is optional- Instead of specifying a ClusterRole or a ClusterRoleBinding, you can also specify a Role and RoleBinding to limit Tiller’s scope to a namespace.

Now let’s apply this configuration file to the required resource using the below mentioned command
kubectl apply -f <filename>

kubectl apply -f helm-rbac.yaml


 

Once pre-requisites are satisfied, and have a service account with the correct permissions, let's initiate helm with the below command:
helm init --service-account tiller

To verify that everything went well you can execute the “helm ls” command and check- it should not return any error message.
helm ls


You can also display the deployed pods in the kube-system namespace:
kubectl get pods -n kube-system


 

Attach the Azure container registry to the Kubernetes cluster:


When you're using Azure Container Registry (ACR) with Azure Kubernetes Service (AKS), an authentication mechanism needs to be established. You can set up the AKS to ACR integration in a few simple commands with the Azure CLI. Setting up the Azure CLI on the jumpbox is covered in part-1 of this blog post series. This integration assigns the AcrPull role to the service principal associated to the AKS Cluster. (Courtesy - Microsoft)

 
az aks update -n <AKS Cluster Name> -g <Resource Group Name> --attach-acr <ACR Name> 

az aks update -n aksdifinal -g aksdifinal-agl --attach-acr dataintelligencefinal


 

Software LifeCycle Container Bridge Tool:


Now that the jumpbox is ready, let’s proceed with the Software LifeCycle Container Bridge (SLCB) Installation.

Software Lifecycle Container Bridge 1.0 is a tool for installing, upgrading, and uninstalling container-based applications. SAP Data Intelligence introduces an additional option to install the images on the Hyperscaler, i.e. Azure AKS with an own Installation Pod now.
The Setup of the SAP Hostagent is not necessary anymore, and the images will be written from the SAP Repository directly into the Container Registry of the connected AKS Cluster. For in-depth details, please refer to the help guide here

Unlike other SAP installers, you will not find SLCB Installer in the Service Market Place. Latest SLCB Plugins (Installer) can be downloaded from SAP Note 2589449

Let's do a pre-requisite check to check whether all the criteria have been met before starting with the SLCB installation

SLCB Prerequisites:



  • Kubernetes cluster Minimum is 1.14v

  • A private Docker container registry for mirroring images – Azure Container Registry has been created

  • A workstation (Linux or Windows) with following components installed:

    • kubectl v1.14 or higher – Kubectl is installed in the jump box with version 1.14 and above

    • helm to deploy nginx ingress controller after completing the installation (Optional) – Helm and tiller already deployed




For a complete list of prerequisites please refer to the official SAP Data Intelligence Installation Guide

Downloading SLCB


Sometimes we have access to web browsers on Linux machines. But in case if we are connecting to the machines via PUTTY/SSH and do not have GUI access, then you can perform the following steps to move your SLCB installer to your Linux based machines

  1. Download the SLCB installer to your local machine (Download from the SAP Note mentioned previously)

  2. Install any file transfer tool like winscp or filezilla

  3. Open winscp and give the required details



Hostname: IP address or FQDN of your Linux Machine. Username & Password: Appropriate username and password. Port number: Typical SSH port is 22.

  1. Once you log on- you can easily drag and drop the installer from the LEFT PANE to the RIGHT PANE. Your LEFT PANE is your local machine and RIGHT PANE is the Linux Machine. Just drag and drop the installer to the required directory (For ex: /root)


SLCB Installer configuration



  1. Navigate to the directory where SLCB installer is available (For ex: /slcb)

  2. Execute the following commands

    • To move installer to SLCB directory:


    • mv SLCB01_45-70003322.exe slcb​

      Give appropriate permissions to the SLCB executable


    • chmod a+x slcb 







 

  1. Now let's initialize or start the installer


  2. ./slcb init



  3. If everything has been setup correctly then you will be asked for Container registry input. If any issue occurs, please check appropriate permissions (chmod a+x slcb) for executing the installer.

  4. Give the appropriate registry name. In our case, we have created an azure container registry. Creating azure container registry is an easy process. Please follow the link on how to create an azure container registry.

  5. Now the next step is to enter the username and access key for the registry. Now, since we have admin access, we are directly getting inside the Azure Containter Registry and enabling admin user and access key is already available. As next step, enter the username and access key in the SLCB installation which asks for username and password.



 

In another scenario wherein admin access is not provided, please ask the respective admin or the appropriate user for Service Principal ID and key which would have been created on behalf of you for accessing the registry. Please enter the service principal name and key which can be used to access the registry. Concepts of Azure service principal are covered in part 1 of this blog post series.

 

  1. Once the credentials are validated, Initial images required to install SLCB will be copied to Azure container registry from SAP Repository. Once the images are copied, you can also log on to the azure container registry and check the images which had been copied.

  2. SLCB will perform the pre-requisite checks (Such as checking Kubernetes version, and kubeconfig file). Let us go with the default values.

    • Path to kubeconfig file: <Default Value> (unless you explicitly specified a different path)








  1. Now that the pre-requisites have passed, let’s proceed with the SLCB installation. Here we have 2 installation modes, typical and expert. As of now, at the time of writing this blog, we do not have any difference between both the modes but in the future, there might be some additional parameters included in the expert mode. We choose TYPICAL Mode for our installation. Select the value 1

  2. Enter the Kubernetes namespace for SLCB Bridge: we have given sap-slcbridge. Namespaces are a way to divide cluster resources via resource quota


 


 

  1. Please note down the username. By default, the username is always admin (in typical mode). You will be able to change it in case if you are using Expert mode

  2. Now for the service type, you can choose “LoadBalancer”. Usually for all public deployments (AWS, Azure, GCP etc.,) we can go with the type “LoadBalancer”. For other platforms such as- RedHat Open Shift Container Platform we have to choose NodePort.





    • Choosing LoadBalancer will create an external loadbalancer in your Cloud environment(Azure for this case). For example: You can navigate to Azure Portal -> Load balancer: you will be able to see the Loadbalancer created and this is for the SLCB.

    • NodePort Service Type is exposing one of your Kubernetes Nodes IP address for communication. The Kubernetes control plane allocates a port from a range specified by --service-node-port-range flag (default: 30000-32767)





  1. By default, the SLCB service Port is 9000

  2. Type ‘n’ and proceed with the next step.





  1. Now the installation would be successful.

    1. Please note the SLCB URL that has been generated as depicted in the screenshot below. You will be accessing this URL to install SAP Data Intelligence. This URL can also be obtained by navigating through Azure Portal -> Load balancer. And select the SLCB load balancer. The IP address of the Load Balancer will be displayed. Please note this URL down.







  1. In case of any installation based feedback, you can fill out the questionnaire and send it to SAP or else select 3: for No feedback and close the installation. Remember t



Go to the browser and open the URL displayed in point #15.


 

  1. SLC bridge has been setup successfully.


  2. If you are able to view the above screen, then your SLCB installation is successful. Now let's prepare for the next phase of SAP Data Intelligence Installation.


SAP Maintenance Planner Setup


The SAP Maintenance planner is used to deploy the selected SAP Data Intelligence Container based stack on the Azure Kubernetes Services.

  1. Log on to SAP Maintenance Planner

  2. Select “Plan a new system” as we are planning to install a new SAP Data Intelligence system.



SAP Maintenance Planner


 

  1. Select “Plan”



 

  1. On the left menu, select “Container Based” -> “SAP Data Intelligence 3” -> 3.0 (03/2020), or the recently released 3.1(11/2020)


  2. SAP Data Intelligence offers 3 installation stacks. Select any one of the Installation Pack and hit “Confirm Selection” button. Please see the latest latest guidance from SAP as to what functionalities each installation pack offers.

    • Platform Stack

    • Platform extended

    • Platform Full






 

  1. Select “linux on X86_64 64 bit” as SLCB is installed on a Linux Jumphost. In case if it had been a windows Jumphost, you need to download Windows SLCB Installer.





  1. Select the SLCB Version that was installed in the Jumpbox and hit “next” and hit “execute plan” directly.





  1. Please note, you will also be able to download the stack.xml file and keep it later for future reference. In case if you have any trouble during the deployment of XML file and you want to do it again, you simply upload the downloaded XML file and redeploy it again without having to start from scratch again.





  1. Before proceeding, it is mandatory to log on to the SLCB tool in other to obtain an authentication token. Without this the SAP Maintenance Planner will not be able to upload the stack.xml file. Go to the below link to complete authentication:


https://<SLCB IP address>:<Port>/docs/index.html




  1. Verify the hostname (SLCB IP Address) before deployment. Also, please ensure you have opened the SLCB URL in another browser or so for token authentication. Click on “Deploy”. In our scenario, we are NOT explicitly uploading the stack.xml.




 

SAP Data Intelligence Installation



  1. Go to the SLC Bridge URL. You will be able to see the stack.xml file uploaded message which indicates the deployment is successful. Please click on “OK”.





  1. Enter appropriate S-USERNAME and PASSWORD. For internal users (SAP Users), you can enter your internal username and password. This is required to access the SAP Data Intelligence images from SAP Repository. (repositories.sap.ondemand.com




  2. Once username and password is entered, the system will check for authorizations and if everything is OK it shall start checking the images available in the SAP Image repositories.




  3. Now based on the stack.xml (the installation stack that was chosen chose in Maintenance planner) the selected stack will be displayed. Since, in our scenario we have selected DI platform stack, the DI platform is displayed. Select the “DI Platform” stack and click on “Next".




  4. Pre-checks will happen. Please wait for it to get completed. Only if the pre-checks are successful, you will be able to proceed further. The pre-checks will be done to confirm the supported OS, Kubernetes version and the Shell. If either of this is not supported, then you must rectify it and then come back again and proceed with the steps. For Example: if the Kubernetes version is not supported then, you must redeploy the Kubernetes correct version and then upload the same stack.xml and do a pre-check again to proceed further.



    • Give the required Kubernetes namespace (Any name can be given). Namespaces are a logical partitioning capability that enable one Kubernetes cluster to be used by multiple users, teams of users, or a single user without concern for undesired interaction. Each user, team of users, or application may exist within its Namespace, isolated from every other user of the cluster and operating as if it were the sole user of the cluster. (Furthermore, Resource Quotas provide the ability to allocate a subset of a Kubernetes cluster’s resources to a Namespace.) For more information on Kubernetes namespaces please refer to this link




  5. Please note the Kubernetes namespace that you are providing here, as this will be later used in the NGINX Ingress controller setup.

  6. Typically for SAP Data Intelligence Installation on Public Cloud (Like AKS, EKS , GCP etc.,), basic installation will suffice.




  7. Please give the container registry address here. Few important points to be noted

    • If you want to use the same registry that was used for SLCB, you can give the same registry address here.

    • If you want your DI images to be stored in different registry, then please give that registry address here and ensure that Kubernetes has access to that registry to access the images

    • In our scenario, since we have already created an azure container registry, we will use the same registry here. This is the registry that was used for SLCB as well. Please note that there is NO impact even if you use the same/different registry for both SLCB and DI. It is just for segregation depending on the requirement.




  8. Once again you can provide your S/I-USER credentials for authenticating access to the SAP repository and click on “next”. This will take some time to load. So Please wait for some time.





  9. Please enter the SYSTEM tenant password. Please note: the credentials here are for SYSTEM tenant. TENANT: System, username: SYSTEM, Password: <Custom password>




  10. Please provide the required DEFAULT Tenant username. We have provided the username as dataintelligence for the “default” tenant




  11. Set the password for “Default” tenant.




  12. Now, the credentials will look like this. You can either of the below to log on to the SAP Data Intelligence installation:

    • Tenant: System, Username: System, Password: <Custom>

    • Tenant: default, Username: Dataintelligence, Password: <custom>



  13. Please enter the S-USERNAME and password again




  14. Please validate all the data before starting with the copying of images from SAP repository to the container registry and deploy it on Kubernetes.




  15. If everything is OK, please click on OK and start the process. Depending on the compute power (Kubernetes Nodes) this will take some time to complete.




  16. All the docker images are pulled from the SAP repositories and pushed to Azure Container Registry. Once the Installation is started, the images are copied directly to the selected Container Registry without storing them to the Installation host.





  17. Now you can see our DI installation is successful.


You might encounter some common issues while installation, please follow the below recommendations to resolve the same.


Troubleshooting:



  1. Check the memory capacity of the Kubernetes nodes. Please refer to the sizing guide for minimum recommendations. Here are some example scenarios:

    • Issue #1- Due to insufficient Memory

      • Run the following command to check for memory issues. Here you can see that the pod scheduling fails due to insufficient memory.


      • # kubectl describe pod hana-0 --namespace <your_namespace>
        kubectl describe pod hana-0 --namespace dik8s



      • Action taken is to resize the kubernetes cluster and proceed with reinstallation.





  2. If any other pod fails to start, please refer to the respective log files to dig deeper into the issue at hand.


Thank you for coming this far! In the next and final part-3 of the blog, you will learn how to expose SAP Data Intelligence to the internet for user access.

Questions? Post as comment.

Useful? Give a like and share on social media. Thanks!
21 Comments