def dev_learn_ops(engineer, blog):
""" a blog for engineers made by engineers """
articles = blog.articles
devops_engineer = engineer.deepcopy()
while articles.has_more():
devops_engineer.learn(
articles.next()
)
devops_engineer.sleep(8 * 3600)
devops_engineer.drink(☕️).eat(🌮)
return devops_engineer
Recent Posts
-
How to Implement Safeguards and Run Chaos Experiments Safely
Experimenting in production has the potential to cause unnecessary customer pain. In this article, we’ll learn how to use safeguards in Chaos Toolkit to immediately interrupt an experiment execution before it seriously affects the target system. -
Upload All Chaos Toolkit Journals To S3 Using Global Controls
In this article, we learn how to apply Chaos Toolkit controls globally for all our experiments using config files and upload execution journals to an S3 bucket. -
Mastering ChaosToolkit Experiment Configuration: A Comprehensive Guide