DevOps Explained for Product Managers

by

Transition from tragile to agile with strong devops cultures

So what exactly is Devops anyway?

You’ve probably heard the phrase ‘devops’ used by your engineering team but you may not be sure exactly what it means. Sure, you know that is has something to do with your infrastructure and that the people who work in devops tend to be obsessed with making things work better, but unless you randomly decide to dig a little deeper by asking specific questions one day, it’s unlikely that you’ll be directly exposed to the day to day intricacies of devops teams if you work in product management.

devops-disciplines

Devops is typically defined as a combination of 3 distinct disciplines: development, QA and operations. OK, so that explains the ‘dev’ and ‘ops’ bits but does that help you much beyond that? Probably not.

Devops is best thought of as a culture and not a single project.

It’s a culture which, when fostered and implemented effectively, can have a major impact not only on how your team works day to day but also on your users. More on that later.

The goals of devops

Broadly speaking, the primary goal of devops is to ensure that your processes and operations are streamlined effectively so that your development teams focus less on their tools and processes and more on building elegant solutions to important problems.

The goals of devops include:

  • Automating code testing
  • Automating workflows
  • Automating infrastructure
  • Automating everything

Developers shouldn’t be spending their time battling annoying infrastructural problems linked with deploying code. Devops engineers will help to resolve any potential infrastructural problems which free your developers from the burden of having to fix infrastructural problems when they go wrong.

The characteristics of a strong devops culture

When a team has a strong devops culture there are usually a few characteristics you’ll notice:

  1. Automated testing
  2. Continuous integration
  3. Continuous delivery
  4. Clear communication between team members

Automated testing

automated testing

Automated testing is the process of automatically running tests to ensure that new code which has been added to the codebase hasn’t broken anything. Commonly referred to as TDD, test driven development is a development approach where engineering teams will write tests alongside the feature they’re building which test the code in units. Think of units as frames of a movie; in isolation they can’t achieve much but combined with the rest of the units in a codebase they perform the core functionality of your product.

In a TDD environment, developers will write their own unit tests for a specific feature they’re working on and will run the tests to see them fail. Once the tests have ‘successfully failed’, work begins on developing the specific feature / functionality. The tests are then re-run to ensure the functionality built meets the test specifications.

code-coverage-testing

A strong devops culture will automate the process of testing your existing codebase and new functionality so that you can monitor when any new features / functionality may have broken the existing code base. There’s a few tools devops engineers will use to do this and we’ve included a link to some of the most popular at the end.


Continuous integration and delivery

continuous integration and delivery

Continuous integration describes the process continuously integrating new code into your main codebase and often works alongside another characteristic of devops culture – continuous delivery.

Have you ever worked in an organisation where releases only happen every few months? It’s rather painful. To coin a phrase from Twitter Product Superstar John Cutler, this is a classic case of #tragile (a tragic form of agile).

There is no greater symptom of poor devops process than a company which ships software every 6 months. There’s usually a good reason for it and the folks involved generally feel impotent to do anything about it; the technology is outdated, there’s legacy code is all over the place and most of the engineering team don’t communicate with each other or if they do, it’s either by loud, aggressive rants or quiet, Slack-based passive aggression.

Continuous delivery describes the process of releasing – or delivering – code frequently. Ideally not every 6 months but on a daily basis if possible. This is often much easier in startups where the infrastructure has been built from scratch and you can start with a clean slate.

The benefits of continuous delivery

  • Increases responsiveness – you could be sat in a meeting minding your own business and your latest feature has just been deployed to production, without much fanfare. Continuous delivery helps you solve problems quickly, fix bugs and keep on top of customer’s needs.
  • Reduces waste and risk – PM’s will say – ‘oh we missed the June release window so that work will get released in December instead now’. If your product is not being used by humans, you are not getting feedback and you’re probably not doing your job.
  • Increases sanity and calm – without continuous delivery, release day can descend into a manic state of panic with engineers, PMs, devops and the entire business on the verge of a mild nervous breakdown. Things inevitably go wrong after big releases – which is precisely why smaller releases are better; they lead to sane, calmer happier teams. Get into the habit of releasing little and often and it takes the glamour away from releases; a release is just another part of the day.

A word of warning though – getting to continuous delivery is often difficult.

Dealing with legacy code, changing mindsets and overcoming organisational hurdles all play their role in making the journey towards continuous delivery more difficult. But it is possible, providing the right people are incentivised to make the changes and that the rest of the business clearly understands what the benefits are. This is difficult, but possible. Here’s how.


Transitioning from Tragile to Agile

If you’re looking to shift from archaic outdated modes of delivery and closer towards continuous delivery here’s a few steps to get you there:

  • Educate – pick a few stars to become continuous delivery ambassadors who can educate the rest of the business and teams on the benefits of continuous deployments vs. deploying every 6 months. Ambassadors can (and probably) should be from a broad spectrum so that the whole business understand what is going on.
  • Success stories – using new projects or hack days, build up a repertoire of small success stories that can be used as case studies to demonstrate to your organisation the power of continuous delivery and strong devops processes
  • Upgrade – with a degree of momentum behind you, invest the time, energy and resources into upgrading your old CI infrastructure

The transition won’t happen overnight but setting clear, metric-based goals will allow you to work towards stronger devops processes which help foster a devops culture.

If you’re releasing every month today, aim to get down to every 2 weeks.

If your team have made it clear in your retros that they’re spending 60% of their time every day fixing broken builds, aim to get this down to 50%.

If you have no code test coverage coverage and you’d like to get to 100%, aim to get to 10% first.

Baby steps will act as milestones for your team and everyone will feel good if you hit them. If you don’t, the target milestones will have a motivating effect anyway.

Why should product managers care?

You might be thinking to yourself, well this is all very nice but why should I really care as a Product Manager? And you’d be partly right to wonder why; product folks don’t really have much business telling the devops team how to do their jobs or telling the CTO how devops should work in your organisation.

However, there are a few reasons why you should care about an effective devops culture in your team as a product manager:

  • Bug reduction – if testing is done properly with a suite of the latest testing software and monitoring processes it reduces bugs. And nobody likes bugs.
  • Efficiency – ensures your engineers are working on engineering features and adding value to the user / business and not on fixing infrastructural BS. The quickest way to incentivise your development team to hand in their notice en masse is to burden them with old, shitty infrastructure and cumbersome release processes which take up 70% of their precious time.
  • Feedback– what happens when you don’t release often? You don’t get feedback from customers often. A high quality devops process and culture reduces the amount of time it takes to get feedback from your users and without user feedback you’re driving in the dark with your lights firmly switched off, steering directly into a brick wall of clueless misery.

How should devops work in my team?

If you’re thinking you’d like to introduce a devops culture into your team or that you’d like to strengthen your existing culture, tread lightly at first since you’re likely to get push back from your technical leaders if you’re from a product background. As with most things product related, you won’t have direct control over how you might implement a change in culture, particularly relating to your engineering teams. It’s ultimately your technical leaders’ responsibility to implement devops culture changes but you can potentially influence how this takes shape from the sidelines.

There are numerous ways a devops culture can be fostered and introduced into teams and there is no 1 set way to do it ‘properly’. Perhaps the most important principle is to be clear about the goals of devops and to explain the rationale behind why you might be introducing a devops person into your team.

Team structures

Here’s a team set up which works well in some cases:

devops team setup

This setup ensures you have at least 1 dedicated devops person who is overseeing the operational processes and infrastructure but with the added bonus of a rotating member of the engineering team.

Once every 2 weeks (or at a time interval that suits your organisation), you rotate the engineer that sits with your devops person. During this 2 week period they become a bona fide devops team member and can either attend the regular standups or have a separate stand up. If you do introduce a separate stand up, make sure you have at least 1 main standup with the whole team or you run the risk of being disjointed. Likewise, ensuring a devops person sits in on your retros is vital since your retro is often the time when day to day issues relating to infrastructure / devops might get raised.

Whilst this approach might not be suitable for everyone (particularly in organisations where resources are tight) this approach has 2 primary benefits:

  1. It prevents the devops engineer from becoming separated from the ‘main’ development team and
  2. It ensures the devops engineer is aware of the day to day problems being faced by engineers who are doing the day to day work. Without physically sitting together or collaborating in this way, communicating the day to day issues faced by the engineering team can be more difficult to articulate.

Devops tools and terminology

Here’s a selection of some of the most common tools used as part of a devops culture and a little explanation about what the role each of these tools plays in the overall process:


  • Git and github – used to store repositories of code and help developers with version control. Here’s a little explanation of how it works.
  • Jenkins – a tool used with continuous integration testing. If your engineers are continuously adding new bits of code, Jenkins will act almost like the gatekeeper and flag up any potential issues so that they know that something’s broken and needs fixing.
  • Green build / red build – used by your devops and engineering teams to highlight that your code base’s tests are either passing or failing. If the build is green, all tests have passed, if the build is red a test has failed somewhere.
  • AWS – Amazon Web Services, a monolithic suite of products loved by devops folks, used for hosting your application and a whole bunch of other fun stuff.
  • New Relic – used by devops teams to continuously monitor applications and identify problem sources – down to a single line of code sometimes. If something goes wrong, New Relic will flag it up to the relevant person, via email or text message usually.

Subscribe for free

Get new product launches, trends and analysis in the Weekly Briefing


Podcast


Product Stacks Podcast

Product Stacks Podcast by the Department of Product. A deep dive into the tools, frameworks and processes used by product managers from top companies.

Topics

Download your template

Enter your email below to get access to the product roadmap templates.

Check your email to access your resource

Download your template

Enter your email below to get access to the product roadmap templates.

Check your email to access your resource

Department of Product newsletter

Stay in the loop

Join 25k+ readers from Netflix, Spotify, Google, Apple and more. Get the latest new product launches, trends and analysis designed to help you stay ahead and build winning products

Check your email to access your resource

Download your template

Enter your email below to get access to the product development models.

Check your email to access your resource

Download your template

Enter your email below to get access to the product development models.

Check your email to access your resource

Share This