In this blog, I will talk about the generation of custom/new chaos experiment with the help of Litmus SDK . Before jumping in, let's do a quick recap on Litmus. Litmus is a framework for practicing Chaos Engineering in cloud-native environments. Litmus provides a chaos-operator, a large set of chaos experiments in its HUB, detailed documentaion, quick demo, and a friendly community.
What is Litmus SDK?
The Litmus SDK provides a simple way to bootstrap your experiment and helps create the aforementioned artifacts in the appropriate directory (i.e., as per the chaos-category) based on an attributes file provided as input by the chart-developer. The scaffolded files consist of placeholders which can then be filled as desired.
It generates the custom chaos experiments with some default Pre & Post Chaos Checks (AUT & Auxiliary Applications status checks). It can use the existing chaoslib (present inside /chaoslib directory), if available else It will create a new chaoslib inside the corresponding directory.
Life Cycle of a Chaos Experiment
Each Chaos Experiment is divided into six main sections:
Prepare: Prepare section contains the initialization steps (get ENVs), Updation of chaos result to marked the beginning of the chaos experiment.
PreChaosCheck: PreChaosCheck contains some default checks (AUT & Auxiliary Application status check) and custom checks, which may vary on the basis of experiment i.e, liveness check, data persistence check, etc.
ChaosInject: ChaosInject invoke the actual chaos, It contain the main business logic.
CleanUp: CleanUp contains the steps to remove the helper/external pod, if any
PostChaosCheck: PostChaosCheck contains the similar steps as the PreCheckCheck section have. It used to ensure the resiliency after chaos injection.
Summary Summary updates the verdict(Pass/Fail) inside the chaos result and FailStep if the experiment fails.
Pre-requisites
Go Experiments
go should be is available & the GOPATH env is configured appropriately
Ansible Experiments
python3 is available (sudo apt-get install python3.6)
jinja2 & pyYaml python packages are available (sudo apt-get install python3-pip, pip install jinja2, pip install pyYaml)
Steps to Generate Experiment via Litmus SDK
Clone the litmus-go repository for go experiments and litmus-ansible for the ansible experiments and navigate to the contribute/developer-guide folder.
## for litmus-go$ git clone https://github.com/litmuschaos/litmus-go.git$ cd litmus-go/contribute/developer-guide
## for litmus-ansible$ git clone https://github.com/litmuschaos/litmus-ansible.git$ cd litmus-ansible/contribute/developer_guide
Populate the attributes.yaml with details of the chaos experiment (or chart). Use the attributes.yaml.sample as reference.
As an example, let us consider an experiment to kill one of the replicas of an Nginx deployment. The attributes.yaml can be constructed like this:
Note: In the --generate_type flag, select the appropriate type of manifests to be generated, where,
chart: Just the chaos-chart metadata, i.e, chartserviceversion yaml
experiment: Chaos experiment artifacts belonging to an existing or new chart.
provide the path of the attribute.yaml manifest in the --attributes_file flag.
Verify the Generated Files
$ cd /experiments$ ls -ltrtotal 8drwxr-xr-x 3 shubham shubham 4096 May 15 12:02 generic/drwxr-xr-x 3 shubham shubham 4096 May 15 13:26 sample-category/$ ls -ltr sample-category/total 12-rw-r--r-- 1 shubham shubham 41 May 15 13:26 sample-category.package.yaml-rw-r--r-- 1 shubham shubham 734 May 15 13:26 sample-category.chartserviceversion.yamldrwxr-xr-x 2 shubham shubham 4096 May 15 13:26 sample-pod-delete/$ ls -ltr sample-category/sample-pod-deletetotal 28-rw-r--r-- 1 shubham shubham 791 May 15 13:26 rbac.yaml-rw-r--r-- 1 shubham shubham 734 May 15 13:26 sample-pod-delete.chartserviceversion.yaml-rw-r--r-- 1 shubham shubham 792 May 15 13:26 experiment.yaml-rw-r--r-- 1 shubham shubham 813 May 15 13:26 engine.yaml## this file will be created in case of litmus-go--rw-r--r-- 1 shubham shubham 4096 May 15 13:26 test-rw-r--r-- 1 shubham shubham 4533 May 15 13:26 sample-pod-delete.go## this file will be created in case of litmus-ansible-rw-r--r-- 1 shubham shubham 1777 May 15 13:26 pod-delete-k8s-job.yml-rw-r--r-- 1 shubham shubham 4533 May 15 13:26 pod-delete-ansible-logic.yml$ ls -ltr sample-category/sample-pod-delete/testtotal 4-rw-r--r-- 1 shubham shubham 1039 May 15 13:26 test.yaml
Proceed with construction of business logic inside the pod-delete.go file in litmus-go or pod-delete-ansible-logic.yml in litmus-ansible, by making the appropriate modifications listed below to achieve the desired effect:
variables
entry & exit criteria checks for the experiment
helper utils in either pkg or new base chaos libraries
Update the experiment.yaml with the right chaos params in the spec.definition.env with their default values.
Update the chaoslib/litmus/sample-pod-delete/lib/pod-delete.go chaoslib to achieve the desired effect or reuse the existing chaoslib.
Create an experiment README explaining, briefly, the what, why & how of the experiment to aid users of this experiment.
Steps to Include the Chaos Charts/Experiments into the ChartHub
Send a PR to the litmus-go/litmus-go repo with the modified experiment files i.e, pod-memory-hog
Send a PR to the chaos-charts repo with the modified experiment CR, experiment chartserviceversion, chaos chart (category-level) chartserviceversion & package (if applicable) YAMLs i.e, kubelet service kill
Conclusion
Litmus SDK will help developers & SREs to create their custom chaos experiment on demand. It will generate the templates, pre/post chaos checks, chaoslib (which can be modified according to use-case).
Are you an SRE or a Kubernetes enthusiast? Does Chaos Engineering excite you? Join Our Community #litmus channel in Kubernetes Slack
Contribute to LitmusChaos and share your feedback on Github
If you like LitmusChaos, become one of the many stargazers here
Litmus helps SREs and developers practice chaos engineering in a Cloud-native way. Chaos experiments are published at the ChaosHub (https://hub.litmuschaos.io). Community notes is at https://hackmd.io/a4Zu_sH4TZGeih-xCimi3Q
LitmusChaos is an open source Chaos Engineering platform that enables teams to identify weaknesses & potential outages in infrastructures by
inducing chaos tests in a controlled way. Developers & SREs can practice Chaos Engineering with LitmusChaos as it is easy to use, based on modern
Chaos Engineering principles & community collaborated. It is 100% open source & a CNCF project.
LitmusChaos takes a cloud-native approach to create, manage and monitor chaos. The platform itself runs as a set of microservices and uses Kubernetes
custom resources (CRs) to define the chaos intent, as well as the steady state hypothesis.
At a high-level, Litmus comprises of:
Chaos Control Plane: A centralized chaos management tool called chaos-center, which helps construct, schedule and visualize Litmus chaos workflows