Develop a New Chaos
After preparing the development environment, let’s develop a new type of chaos, HelloWorldChaos, which only prints a “Hello World!” message to the log. Generally, to add a new chaos type for Chaos Mesh, you need to take the following steps:
- Define the schema type
- Register the CRD
- Register the handler for this chaos object
- Make the Docker image
- Run chaos
Define the schema type
To define the schema type for the new chaos object, add helloworldchaos_types.go
in the api directory api/v1alpha1
and fill it with the following content:
package v1alpha1
import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// +kubebuilder:object:root=true
// +chaos-mesh:base
// HelloWorldChaos is the Schema for the helloworldchaos API
type HelloWorldChaos struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec HelloWorldChaosSpec `json:"spec"`
Status HelloWorldChaosStatus `json:"status,omitempty"`
}
// HelloWorldChaosSpec is the content of the specification for a HelloWorldChaos
type HelloWorldChaosSpec struct {
// Duration represents the duration of the chaos action
// +optional
Duration *string `json:"duration,omitempty"`
// Scheduler defines some schedule rules to control the running time of the chaos experiment about time.
// +optional
Scheduler *SchedulerSpec `json:"scheduler,omitempty"`
}
// HelloWorldChaosStatus represents the status of a HelloWorldChaos
type HelloWorldChaosStatus struct {
ChaosStatus `json:",inline"`
}
With this file added, the HelloWorldChaos schema type is defined. The structure of it can be described as the YAML file below:
apiVersion: chaos-mesh.org/v1alpha1
kind: HelloWorldChaos
metadata:
name: <name-of-this-resource>
namespace: <ns-of-this-resource>
spec:
duration: <duration-of-every-action>
scheduler:
cron: <the-cron-job-definition-of-this-chaos>
status:
phase: <phase-of-this-resource>
...
make generate
will generate boilerplate functions for it, which is needed to integrate the resource in the Chaos Mesh.
Register the CRD
The HelloWorldChaos object is a custom resource object in Kubernetes. This means you need to register the corresponding CRD in the Kubernetes API. Run make yaml
, then the CRD will be generated in config/crd/bases/chaos-mesh.org_helloworldchaos.yaml
. In order to combine all these YAML file into manifests/crd.yaml
, modify kustomization.yaml
by adding the corresponding line as shown below:
resources:
- bases/chaos-mesh.org_podchaos.yaml
- bases/chaos-mesh.org_networkchaos.yaml
- bases/chaos-mesh.org_iochaos.yaml
- bases/chaos-mesh.org_helloworldchaos.yaml # this is the new line
Run make yaml
again, and the definition of HelloWorldChaos will show in manifests/crd.yaml
. You can check it through git diff
Register the handler for this chaos object
Create file controllers/helloworldchaos/types.go
and fill it with following codes:
package helloworldchaos
import (
"context"
"k8s.io/apimachinery/pkg/runtime"
ctrl "sigs.k8s.io/controller-runtime"
"github.com/chaos-mesh/chaos-mesh/api/v1alpha1"
"github.com/chaos-mesh/chaos-mesh/pkg/router"
ctx "github.com/chaos-mesh/chaos-mesh/pkg/router/context"
end "github.com/chaos-mesh/chaos-mesh/pkg/router/endpoint"
)
type endpoint struct {
ctx.Context
}
func (e *endpoint) Apply(ctx context.Context, req ctrl.Request, chaos v1alpha1.InnerObject) error {
e.Log.Info("Hello World!")
return nil
}
func (e *endpoint) Recover(ctx context.Context, req ctrl.Request, chaos v1alpha1.InnerObject) error {
return nil
}
func (e *endpoint) Object() v1alpha1.InnerObject {
return &v1alpha1.HelloWorldChaos{}
}
func init() {
router.Register("helloworldchaos", &v1alpha1.HelloWorldChaos{}, func(obj runtime.Object) bool {
return true
}, func(ctx ctx.Context) end.Endpoint {
return &endpoint{
Context: ctx,
}
})
}
We should also import github.com/chaos-mesh/chaos-mesh/controllers/helloworldchaos
in the cmd/controller-manager/main.go
, then it will register on the route table when the controller starts up.
Make the Docker image
Having the object successfully added, you can make a Docker image:
make
Then push it to your registry:
make docker-push
If your Kubernetes cluster is deployed by Kind, you need to load images to Kind:
kind load docker-image localhost:5000/pingcap/chaos-mesh:latest
kind load docker-image localhost:5000/pingcap/chaos-daemon:latest
kind load docker-image localhost:5000/pingcap/chaos-dashboard:latest
Run chaos
You are almost there. In this step, you will pull the image and apply it for testing.
Before you pull any image for Chaos Mesh (using helm install
or helm upgrade
), modify values.yaml
of the helm template to replace the default image with what you just pushed to your local registry.
In this case, the template uses pingcap/chaos-mesh:latest
as the default target registry, so you need to replace it with the environment variable DOCKER_REGISTRY
‘s value(default localhost:5000
), as shown below:
clusterScoped: true
# Also see clusterScoped and controllerManager.serviceAccount
rbac:
create: true
controllerManager:
serviceAccount: chaos-controller-manager
...
image: localhost:5000/pingcap/chaos-mesh:latest
...
chaosDaemon:
image: localhost:5000/pingcap/chaos-daemon:latest
...
dashboard:
image: localhost:5000/pingcap/chaos-dashboard:latest
...
Now take the following steps to run chaos:
Create namespace
chaos-testing
kubectl create namespace chaos-testing
Get the related custom resource type for Chaos Mesh:
kubectl apply -f manifests/
You can see CRD `helloworldchaos` is created:
```
customresourcedefinition.apiextensions.k8s.io/helloworldchaos.chaos-mesh.org created
```
Now you can get the CRD using the command below:
```
kubectl get crd helloworldchaos.chaos-mesh.org
```
Install Chaos Mesh:
For helm 3.X
helm install chaos-mesh helm/chaos-mesh --namespace=chaos-testing --set chaosDaemon.runtime=containerd --set chaosDaemon.socketPath=/run/containerd/containerd.sock
- For helm 2.X
```
helm install helm/chaos-mesh --name=chaos-mesh --namespace=chaos-testing --set chaosDaemon.runtime=containerd --set chaosDaemon.socketPath=/run/containerd/containerd.sock
```
To verify your installation, get pods from the `chaos-testing` namespace:
```
kubectl get pods --namespace chaos-testing -l app.kubernetes.io/instance=chaos-mesh
```
> **Note:**
>
> Arguments `--set chaosDaemon.runtime=containerd --set chaosDaemon.socketPath=/run/containerd/containerd.sock` are used to to support network chaos on kind.
Create
chaos.yaml
in any location with the lines below:apiVersion: chaos-mesh.org/v1alpha1
kind: HelloWorldChaos
metadata:
name: hello-world
namespace: chaos-testing
spec: {}
Apply the chaos:
kubectl apply -f /path/to/chaos.yaml
```
kubectl get HelloWorldChaos -n chaos-testing
```
Now you should be able to check the `Hello World!` result in the log of of `chaos-controller-manager`:
```
kubectl logs chaos-controller-manager-{pod-post-fix} -n chaos-testing
```
The log is as follows:
```
2020-09-07T09:21:29.301Z INFO controllers.HelloWorldChaos Hello World! {"reconciler": "helloworldchaos"}
2020-09-07T09:21:29.308Z DEBUG controller-runtime.controller Successfully Reconciled {"controller": "helloworldchaos", "request": "chaos-testing/hello-world"}
```
> **Note:**
>
> `{pod-post-fix}` is a random string generated by Kubernetes. You can check it by executing `kubectl get pod -n chaos-testing`.
Next steps
Congratulations! You have just added a chaos type for Chaos Mesh successfully. Let us know if you run into any issues during the process. If you feel like doing other types of contributions, refer to Add facilities to chaos daemon.