Last active
June 4, 2020 16:05
-
-
Save dimzak/32794bbb8e5adbda22298ab274fdd97b to your computer and use it in GitHub Desktop.
Sample chaostoolkit experiment
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
{ | |
"version": "1.0", | |
"title": "Experiment evaluating serviceA operability without its database", | |
"description": "If serviceA database is down, serviceA continues to operate as usual", | |
"configuration": {}, | |
"steady-state-hypothesis": { | |
"probes": [ | |
{ | |
"type": "probe", | |
"name": "Perform some read and writes to database through serviceA" | |
} | |
] | |
}, | |
"method": [ | |
{ | |
"type": "action", | |
"name": "Drop serviceA database" | |
} | |
], | |
"rollbacks": [ | |
{ | |
"type": "action", | |
"name": "Attempt to rollback by recreating serviceA database" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment