Created
September 10, 2015 21:45
-
-
Save spacejam/98f8d148090f3d65d308 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"commands": [ | |
{ | |
"name": "pause container", | |
"start": "docker pause {{ target.id }}", | |
"stop": "docker unpause {{ target.id }}" | |
}, | |
{ | |
"name": "restart container", | |
"start": "docker restart {{ target.id }}", | |
"stop": "" | |
}, | |
{ | |
"name": "flaky container", | |
"start": "tc qdisc replace dev {{ target.veth }} root netem loss 0.3% 25%", | |
"stop": "tc qdisc del dev {{ target.veth }} root" | |
}, | |
{ | |
"name": "slow container", | |
"start": "tc qdisc replace dev {{ target.veth }} root netem delay 100ms 20ms distribution normal", | |
"stop": "tc qdisc del dev {{ target.veth }} root" | |
}, | |
{ | |
"name": "partition container", | |
"start": "tc qdisc replace dev {{ target.veth }} root netem loss 100%", | |
"stop": "tc qdisc del dev {{ target.veth }} root" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment