Intentional failure injection for system resilience testing. Use when: validating fault tolerance, testing SLOs under stress, or preparing for incidents.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Intentional failure injection for system resilience testing. Use when: validating fault tolerance, testing SLOs under stress, or preparing for incidents.
Chaos Engineering
Proactive resilience testing through controlled experiments.
Core Principle
"Break things in production to prove they won't break."
Chaos Experiments
1. Network Failure
# Inject latency
tc qdisc add dev eth0 root netem delay 100ms
# Packet loss
tc qdisc add dev eth0 root netem loss 5%
# Kill random pods
kubectl delete pod --all -n default --force
Experiment Template
experiment:name:"database-connection-failure"hypothesis:"API returns graceful error when DB is unavailable"method:-Inject:killdatabaseconnectionpool-Measure:errorresponsetime<500ms-Monitor:nodatacorruptionrollback:restoreconnectionpoolblast_radius:limitedto/api/usersendpoint