Do you know how DevOps fits in with Scrum?

Last updated by Tiago Araújo [SSW] about 1 year ago.See history

DevOps and Scrum compliment each other very well. Scrum is about inspecting and adapting with the help of the Scrum ceremonies (Standup, Review, Planning and Retro). With DevOps it's all about Building, Measuring and Improving with the help of tools and automation.

2016 06 08 14 33 24
Figure: Traditional Scrum process

2016 06 08 14 30 33
Figure: Scrum with DevOps

With DevOps, we add tools to help us automate slow process like build and deployment then add metrics to give us numbers to help quantify our processes. Then we gather the metrics and figure out what can be done to improve.

For example with Exception Handling, you may be using a tool like Raygun.io or Elmah and have 100s of errors logged in them. So what do you do with these errors? You can:

  1. Add each one to your backlog
  2. Add a task to each Sprint to "Get exceptions to 0"

The problem with the above is that not all exceptions are equal, and most of the time they are not more important than the planned PBIs being worked on. No developers like working a whole Sprint just looking at exceptions. What should happen is:

  1. Have the exceptions visible in your development process (i.e. using Slack, adding as something to check before Sprint Planning)
  2. Triage the exceptions, either add them to the backlog if they are urgent and important
  3. Add ignore filters to the exception logging tool to ignore errors you don't care about (e.g. 404s)
  4. Prioritize the exceptions on the backlog

The goal here is to make sure you're not missing important and to reduce the noise. You want these tools to help support your efforts and make your more productive and not just be another time sink.

We open source. Powered by GitHub