chaos-mesh
Configures Chaos Mesh for Kubernetes-native chaos engineering - picks fault types (PodChaos, NetworkChaos, StressChaos, IOChaos, TimeChaos, DNSChaos, KernelChaos, HTTPChaos), targets via label selectors, controls blast radius via namespace whitelists + selector filters, schedules via CronJobs, observes via dashboard. Distinct from Litmus by architecture (Chaos Mesh has its own dashboard + workflow orchestration; Litmus uses ChaosCenter UI). Use when the target system runs on Kubernetes and fault experiments should be declared as CRDs in the cluster alongside the workloads they target.
Install with skills.sh (any agent)
npx skills add testland/qa --skill chaos-meshchaos-mesh
Overview
Per chaos-mesh-home (opens in new window):
"Chaos Mesh is a platform that 'brings various types of fault simulation to Kubernetes and has an enormous capability to orchestrate fault scenarios.'"
Per chaos-mesh-home (opens in new window), Chaos Mesh leverages "Kubernetes CustomResourceDefinitions (CRDs) for seamless integration with the Kubernetes ecosystem."
When to use
If LitmusChaos is already deployed, evaluate stack-fit before adding Chaos Mesh - both serve similar use cases with different ergonomics.
Step 1 - Install
curl -sSL https://mirrors.chaos-mesh.org/v2.6.3/install.sh | bash
# Or via Helm:
helm repo add chaos-mesh https://charts.chaos-mesh.org
helm install chaos-mesh chaos-mesh/chaos-mesh -n chaos-mesh --create-namespacePer chaos-mesh-home (opens in new window), "no special dependencies required - Chaos Mesh deploys directly on Kubernetes clusters, including minikube and kind."
Step 2 - Fault types
Per chaos-mesh-home (opens in new window):
| CRD | Effect |
|---|---|
PodChaos | Pod kill, container kill, pod failure |
NetworkChaos | Latency, packet loss, partition, bandwidth, corruption |
StressChaos | CPU stress, memory stress |
IOChaos | Disk read/write delay, errors |
TimeChaos | Clock skew |
DNSChaos | DNS lookup failures |
KernelChaos | Kernel-level fault injection |
HTTPChaos | HTTP request fault injection |
JVMChaos | JVM-level (exception, GC pause, method delay) |
Plus Schedule for cron-style + Workflow for orchestration.
Step 3 - Author a NetworkChaos
apiVersion: chaos-mesh.org/v1alpha1
kind: NetworkChaos
metadata:
name: checkout-network-latency
namespace: app
spec:
action: delay
mode: one # or 'all', 'fixed', 'fixed-percent', 'random-max-percent'
selector:
namespaces:
- app
labelSelectors:
app: checkout
delay:
latency: '500ms'
correlation: '50'
jitter: '50ms'
duration: '5m'Per chaos-mesh-home (opens in new window), Chaos Mesh provides "selector-based filtering using labels, annotations, and namespace whitelists to control 'blast radius' and target specific resources."
Step 4 - Author a PodChaos
apiVersion: chaos-mesh.org/v1alpha1
kind: PodChaos
metadata:
name: checkout-pod-kill
namespace: app
spec:
action: pod-kill
mode: fixed-percent
value: '50'
selector:
namespaces:
- app
labelSelectors:
app: checkout
duration: '60s'mode: fixed-percent + value: '50' kills 50% of matching pods.
Step 5 - Workflow orchestration
Per chaos-mesh-home (opens in new window): "Workflow Orchestration: Users can combine serial and parallel experiments to simulate complex, realistic failure scenarios matching actual system architecture."
apiVersion: chaos-mesh.org/v1alpha1
kind: Workflow
metadata:
name: checkout-resilience-test
namespace: app
spec:
entry: combined-chaos
templates:
- name: combined-chaos
templateType: Serial
deadline: 30m
children:
- network-latency-step
- then-pod-kill-step
- then-stress-step
- name: network-latency-step
templateType: NetworkChaos
networkChaos:
action: delay
mode: all
selector: { ... }
delay: { latency: 200ms }
duration: 5m
- name: then-pod-kill-step
templateType: PodChaos
podChaos:
action: pod-kill
mode: one
selector: { ... }
- name: then-stress-step
templateType: StressChaos
stressChaos:
mode: all
selector: { ... }
stressors:
cpu: { workers: 4, load: 80 }
duration: 3mStep 6 - Dashboard
Per chaos-mesh-home (opens in new window), Chaos Mesh ships a dashboard with RBAC.
kubectl port-forward -n chaos-mesh svc/chaos-dashboard 2333:2333
# Open http://localhost:2333The dashboard provides authoring (visual experiment construction), running, observability, and replay.
Step 7 - Run + verdict
kubectl apply -f checkout-network-latency.yaml
# Watch state
kubectl get networkchaos checkout-network-latency -w
# Status / events
kubectl describe networkchaos checkout-network-latencyThe chaos resource lifecycle is Created → Running → Stopped. Pair with external monitoring (Datadog / Prometheus / Grafana) to verify the steady-state hypothesis held.
Step 8 - Physical machine support
Per chaos-mesh-home (opens in new window): "Physical Machine Support: Chaosd (experimental) extends chaos testing to non-Kubernetes environments through PhysicalMachineChaos resources."
For VM / bare-metal targets:
apiVersion: chaos-mesh.org/v1alpha1
kind: PhysicalMachineChaos
metadata:
name: vm-cpu-stress
spec:
action: stress-cpu
address:
- 'http://10.0.0.5:31767'
duration: 5m
stress-cpu:
load: 80
workers: 4The Chaosd agent runs on the target VM; the K8s CRD remotely triggers it.
Step 9 - CI integration
- name: Trigger chaos experiment
run: |
kubectl apply -f experiments/checkout-network-latency.yaml
sleep 320 # 5min duration + buffer
kubectl delete -f experiments/checkout-network-latency.yaml
- name: Check steady-state from Datadog
run: ./scripts/datadog-verdict.shAnti-patterns
| Anti-pattern | Why it fails | Fix |
|---|---|---|
mode: all without scope | All matching pods affected; blast radius too wide. | Start with mode: one or fixed-percent: 25. |
No duration | Chaos persists until manual cleanup; risky. | Always set duration (Step 3 example). |
Targeting chaos-mesh namespace | Crashes the chaos infrastructure itself. | Whitelist app namespace; deny-list chaos-mesh. |
| Disable RBAC on dashboard | Anyone with cluster access can trigger chaos. | Per chaos-mesh-home (opens in new window): RBAC is on by default - keep it on. |
| Skipping observability integration | Chaos runs but verdict invisible. | Wire dashboard + external monitoring. |
Limitations
References
Related skills
chaos-drill-protocol
Run protocol and run workflow for a chaos experiment that has already been designed: the four pre-flight gates (non-production target, measured healthy baseline, live observability, a rollback that has actually been exercised), how to pick a conservative blast-radius bound, the sampling cadence and abort criteria fixed in writing before injection, the per-runner inject and abort commands (Chaos Mesh / Litmus / Gremlin / Toxiproxy), the refuse-to-start rules (no blast-radius bound, production context, degraded baseline, offline observability, unexercised rollback), and the recovery-validation step with its tolerance and timeout. Owns execution safety only, not experiment design: the steady-state hypothesis, the fault to inject, and the experiment file come from chaos-experiment-author. Use when an experiment definition exists and a fault is about to be injected into a running system, and the go/no-go gates, abort thresholds, and recovery check still need to be agreed and written down before the fault starts.
chaos-experiment-author
Build-an-X workflow for a chaos experiment per the Principles of Chaos Engineering - defines steady-state hypothesis, picks the variables (real-world events: network latency, node failure, region outage), sets the blast radius (which percentage / namespace / user cohort), automates execution, and emits the verdict (steady-state held / didn't hold). Includes the five-check pre-flight validation of the steady-state hypothesis (measurable, baselined, SLI-backed tolerance, defined measurement window, metric moves under the fault) with hard-reject rules, and routes the tool choice: Chaos Mesh has its own standalone skill, while LitmusChaos and Gremlin setup live in this skill's references. Use to scope and pre-flight-validate a chaos experiment before running it via Chaos Mesh / Litmus / Gremlin / Toxiproxy.
dr-drill-runner
The full DR-drill discipline for one service: author the runbook (per-tier RTO + RPO), pre-drill checklist (data sync state, alert silencing, customer comms), drill workflow (announce, fail-over, verify, fail-back) with timestamps, the supervised run protocol (refuse without declared RTO/RPO or against production, RTO/RPO monitoring cadence, abort-on-breach), and an auditor-ready post-drill report. Backup-integrity verification (SHA-256 + signature, restore spot checks, cross-region replication, retention, key recovery) and restore-time / RTO measurement (TTF segments, PITR latency, parallel-restore tuning, trend tracking) are worked in references. Per Google Cloud DR planning guide; covers cold / warm / hot standby tier-specific patterns. Use when a scheduled or post-incident failover drill for one service is being planned, executed, or written up, or when a new tier-1 service ships without a drill defined.
error-budget-tests
Build error-budget gate tests - SLO + error-budget calculation per Google SRE workbook ("difference between target uptime and actual uptime"); burn-rate alerting; monthly-budget exhaustion test; freeze-trigger when budget consumed. Per sre.google embracing-risk reference. Includes the incident-metrics reference for MTTR / MTBF / MTTD / MTTA - per-incident record schema, calculation formulae, exclusion rules, dashboards-as-code, and target-vs-actual alerting. Use when an SLO and error budget are written down but nothing verifies that burn-rate alerts fire or that the release freeze engages when the budget runs out, or when MTTR / MTBF dashboards report numbers nobody can reproduce.
failure-injection-test-author
Orchestrates WireMock fault stubs (HTTP-level fault: 500s, malformed JSON, slow responses) with Toxiproxy (TCP-level: latency, packet loss, reset) into a single resilience test scenario - the test starts both, applies fault per scenario, runs the SUT against the impaired endpoints, verifies the SUT's resilience patterns. Use when one test must reproduce a combined network + HTTP failure - a cross-layer failure mode from an incident postmortem that neither pure HTTP fault stubs nor pure TCP chaos can cover alone, because most real failures span both layers.
toxiproxy-chaos
Configures Toxiproxy for TCP-level fault injection - runs as a sidecar / proxy between client and upstream, applies toxics (latency, bandwidth, slow_close, timeout, slicer, limit_data, reset_peer) via control API. Focused on the proxy itself rather than an API-level chaos runner, including non-test usage (chaos in dev environments, integration tests, pre-prod simulation). Use when the team needs TCP-precise fault injection in development / integration environments without K8s or commercial tooling.