DEV Community

Cover image for Getting Started with Litmus 2.0 in Google Kubernetes Engine
Neelanjan Manna for LitmusChaos

Posted on • Updated on

Getting Started with Litmus 2.0 in Google Kubernetes Engine

This is a quick tutorial on how to get started with Litmus 2.0 in Google Kubernetes Engine. We’ll first set up our basic GKE cluster throughout this blog, then install Litmus 2.0 in the cluster, and finally, execute a simple chaos workflow using Litmus.

But before we kick off the demonstration, let’s have a brief introduction to Litmus. Litmus is a toolset to perform cloud-native Chaos Engineering. It provides tools to orchestrate chaos on Kubernetes to help developers and SREs find weaknesses in their application deployments. Litmus can be used to run chaos experiments initially in the staging environment and eventually in production to find bugs, vulnerabilities. Fixing the weaknesses leads to increased resilience of the system. Litmus adopts a “Kubernetes-native” approach to define chaos intent in a declarative manner via custom resources, although Litmus is not limited to only Kubernetes targets while injecting chaos and is able to target a plethora of non-Kubernetes targets as well, such as bare-metal infrastructure, public cloud infrastructure, hybrid cloud infrastructure, containerized services, etc. to fulfill the chaos engineering needs of an entire business, and not just a specific application microservice.

Pre-Requisites

  1. A GCP project with sufficient permission for accessing GKE

Step-1: Setup the GKE Cluster

To set up the GKE cluster, we first need to enable the Kubernetes Engine API in our GCP project. To do that, we can access the APIs & Services Dashboard from the GCP console and search for the Kubernetes Engine API.

1_2r4jdrIuLGsTW_xo1Ze5kg

We can then enable the Kubernetes Engine API. Now we are all set to launch our GKE cluster. To do that, we will first go to the Kubernetes Engine dashboard in the GCP console and then choose to Create the cluster.

1_YKxtj85kPd6Xf7ew2j3ZFw

Go for a standard cluster and choose to Configure it.

1_ivIqlysLZ3rP_2zy_reBtA

Here you’d get all the options to configure your Kubernetes cluster. You can either choose to configure your own cluster as per your preference or you can simply go for My First Cluster option under the Cluster set-up Guide, which will set up a basic three-node cluster for you.

1_ER03wDAfQ9z4efTQ5s6g6g

It will take a while for your cluster resources to set up and undergo a health check, after which it would finally be ready.

1_xCiLOzED8t9nEA3Tu-8nXA

We can now connect to our cluster and proceed to install litmus. To do that, we need to choose our cluster and then choose the Connect option.

1_bVFVSZVfTMWMy2gaOnfi5A

Next, choose the Run In Cloud Shell option.

1_jq0Is2xIvn2eooe8oOZqrQ

This will open up a cloud shell terminal in your console. A cloud SDK command would be already there in your terminal which you need to execute. This command will configure the Kubectl to configure itself for the cluster we just created. If prompted, choose accept.

1_d-zbtP9wSV7VcyvtXhoajQ

Now we are all set to install Litmus.

STEP 2: Install Litmus

We’d follow the instructions given in the Litmus 2.0 documentation to install Litmus. Here we will be installing Litmus in namespace mode using Helm. To do that, the very first step is to add the litmus helm repository using the following command:

helm repo add litmuschaos https://litmuschaos.github.io/litmus-helm/
Enter fullscreen mode Exit fullscreen mode

This will add litmuschaos repository to the list of Helm chart repositories. We can verify the repository using the command:

helm repo list
Enter fullscreen mode Exit fullscreen mode

You should see litmuschaos repository listed here. Next, we will create the litmus namespace as all the litmus infra components will be placed in this namespace. We will do this using the command:

kubectl create ns litmus
Enter fullscreen mode Exit fullscreen mode

Once this is done, we can proceed to install the Litmus control plane using the following command:

helm install chaos litmuschaos/litmus-2-0-0-beta --namespace=litmus --devel --set portalScope=namespace
Enter fullscreen mode Exit fullscreen mode

You should get a similar message:

1_EMnOfsKCUcdTFwXEWjx_6Q

Next, we can proceed to install the Litmus CRDs. Cluster-Admin or an equivalent user with the right permissions are required to install them CRDs. We’d use the following command to apply the CRDs:

kubectl apply -f https://raw.githubusercontent.com/litmuschaos/litmus/master/litmus-portal/litmus-portal-crds.yml
Enter fullscreen mode Exit fullscreen mode

And we’re done with installing Litmus. Just one final step before we can access the Litmus portal. If we use the command kubectl get svc -n litmus, we’ll be able to list down all the services running in the litmus namespace. Here you should be able to see the litmusportal-frontend-service and the litmusportal-server-service, both of which should be NodePort services, and their corresponding TCP ports should be something like 9091:xxxxx/TCP where xxxxx is the node port of the respective service. To access the portal, we need to expose both the node ports of the frontend service and the server service by applying a firewall rule. For the litmusportal-server-service we can expose only the first NodePort as there are two of them. We can do that using the following two commands:

gcloud compute firewall-rules create frontend-service-rule --allow tcp:<NODE_PORT>

gcloud compute firewall-rules create server-service-rule --allow tcp:<NODE_PORT>
Enter fullscreen mode Exit fullscreen mode

Replace the <NODE_PORT> in the first command with your frontend service’s node port and similarly replace the <NODE_PORT> in the first command with your server service’s node port. Once done, we’re all set to access the Litmus portal. To do that, use the command kubectl get nodes -o wide to list all the pods in your cluster. You should see something like this:

1_DOT0E1kS-kJ_aWX8Aj5j-A

For any of the nodes, copy its external IP and paste it into your browser URL section, followed by a :xxxxx where xxxxx corresponds to your node port. You should then be directed to the Litmus home screen.

1_DKLkV01jnnjVilby6mtewA

Log in using the username admin and password litmus. Then you’d be asked to set up a password, which you’d use for any subsequent login. Once done, you’d be able to access the Litmus portal dashboard.

1_WCvu2RffIvxO9tWc6ukELQ

Step 3: Run a Chaos Workflow

For this demo, we’d see how do chaos workflows execute in Litmus with the help of a predefined chaos workflow template called podtato-head. It is a simple application deployed as a part of the Litmus installation in which we will try to inject pod-delete chaos.

Choose Schedule a Workflow. In the workflows dashboard, choose the self agent and then choose Next. Choose Create a Workflow from Pre-defined Templates and choose podtato-head.

1_bBmN0Fsmw5FamvJX7V7aTQ

Choose Next. Here we can define the experiment name, description, and namespace. Leave the default values and choose Next. Here we can tune the workflow by editing the experiment manifest and adding/removing or arranging the experiments in the workflow. The podtato-head template comes with its own defined workflow so simply choose Next.

1_PZ8AkosqNIHESenfR5QAgw

Now we can set a reliability score per chaos experiment in our workflow. Since this workflow has only pod-delete chaos experiment, we can set a score for that in between 1–10. Then choose Next.

1_c0NyrzqdjAbZsUuFPClNPw

Here we can schedule our workflows to be executed in a determined frequency or we can simply schedule it to execute right away. Choose Schedule now. Choose Next. Here we can review the workflow details and make changes if required before finally executing the workflow. Choose Finish. You have successfully started the Chaos Workflow.

1_1eiFUcOY1hnW84w5M_nnvw

Choose Go to Workflow and you’d see the running workflow:

1_-fSRwcYfywGwkiCu0Kxy8Q

Select the workflow and you’d be able to see the workflow execute in its various stages in the graphical chart:

1_Geyjf477RlNbAtDwxTs3lw

Wait for the workflow execution to complete, once completed the graph would appear as follows:

1_-Imn4mQYGRsHjHW__MLlLQ

We can analyze the Table View tab for every step as follows:

1_jQeLj-efOQ2oKn0Dy3Qfmw

Choose View Logs & Results to access the chaos result of the pod-delete experiment:

1_m3qvepJ0rmcSyHwjVLScFg

You can also observe the analytics of the workflow from the workflow dashboard page which shows a graphical analysis of the workflow run:

1_GHKxARyWigg7vDnAefIH3Q

In conclusion of this blog, we saw how to set up a Google Kubernetes Engine cluster, how to install Litmus 2.0, and finally how to execute a chaos workflow using the Litmus portal. Though this is only the tip of the iceberg, I really hope you learned something new today, which will be helpful for your further journey in chaos engineering.

Come join me at the Litmus community to contribute your bit in developing chaos engineering for everyone. To join the Litmus community:
Step 1: Join the Kubernetes slack using the following link: https://slack.k8s.io/
Step 2: Join the #litmus channel on the Kubernetes slack or use this link after joining the Kubernetes slack: https://slack.litmuschaos.io/

Show your ❤️ with a ⭐ on our Github. To learn more about Litmus, check out the Litmus documentation. Thank you! 🙏

Top comments (0)