DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company...

18
© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. INTERNAL USE ONLY 2016 FEDERAL FORUM Presented by Produced by DevOps Evolution

Transcript of DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company...

Page 1: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. INTERNAL USE ONLY

2016 FEDERAL FORUM

Presented by Produced by

DevOps Evolution

Page 2: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

• Is DevOps a tooling or a cultural movement?

• How does automation play a role?

• How do you move beyond automation into continuous delivery?

• Where should you get started?

DevOps Evolution

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 2

Page 3: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

What Is DevOps?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 3

SOURCE: HTTP://ROHITGHATOL.GITHUB.IO/DEVOPS-GETTING-STARTED/#/1

A simple working definition:Infrastructure as code

Page 4: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Is DevOps a Tools or Cultural Movement?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 4

DevOps tools are increasingly popular• Led by open source tools

• Most commonly provisioning tools

The Phoenix Project is the DevOps bible• A business novel modeled after

Eliyahu Goldratt’s The Goal

Page 5: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Where Do You Start?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 5

Strong Culture + No Tools = Fail

ITIL Culture + DevOps Tools = Fail

…but people change is the long pole

Page 6: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Like a Carrier, or Like a Cloud?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 6SOURCE INFO GOES HERE

When something goes wrong, is your instinct to:

Ctrl-Z: Back out the change and try again at the next maintenance window?

Roll forward: Identify the problem, and quickly make the next change?

OR

Page 7: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Correctness vs. Resilience

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 7SOURCE INFO GOES HERE

Designing for Correctness Designing for Resilience

Avoid failure at all costs• Focus on qualification and integration

• Create process gates to catch errors

• When a change doesn’t work, regroupand use the process

Failure is a certainty• During failure, service should be resilient

• Simulate failures to test

• When a change doesn’t work, roll forward

Page 8: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

What about Automation?

• DevOps often gets lumped in with automation initiatives

• DevOps is infrastructure as code

• Automation is about executing workflows automatically

Both are important, but they are different. Be clear on what your objectives are.

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 8

Page 9: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Automation Starts with Workflows

• Most network automation discussions start with the network

• You automate the act of doing something

– The network is noun not a verb

• A workflow is a set of tasks strung together to achieve some objective

– Typical examples: provisioning and troubleshooting

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 9

Page 10: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Which Workflows Should You Start With?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 10

Out of Box

• Initial provisioning

– Ex: Ansible playbooks

• Planning

– Ex: Inventory collection

Troubleshooting

• Collecting diagnostics

– Ex: Counters, stats

• Remediation

– Ex: Policy application

Key Tools

• Most tools represent an entry point to workflows

– Ex: Logging tools lead to troubleshooting

– Ex: Server and app provisioning tools lead to edge policy

• Deploy a server

• Add an appinstance

• Deploy a service

• Validate

Page 11: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

What Does Automation Require?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 11

Data Distribution

• How do the elements talk to each other?

• Not all elements communicate

• Not all communication is all the time

Normalization

• What language do the elements speak?

• Even similar constructs can be formatted in different ways

Logic

• If this, then that

• Requires rich set of triggers (or sensors)

• Template-based set of actions

Page 12: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

What Can Be Automated?

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 12

Networking

Security

ActionsAuditSensors

WorkflowsRules

Page 13: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Automation Example

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 13

StackStorm

EngineerService

Monitoring IncidentManagement

Event: “low disk on web301”

Web301 is “low disk”

Resolve known cases, fast. Is it

/var/log? Clean up!

Unknown problem, need

a human

Wake up, buddy. Something real

is going on…

Page 14: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION

Moving from Automation to DevOps

Page 15: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Single System Image

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 15

Software Infrastructure

A

B

C

D

A1 B1 C1 D1 = Network1

A1 B2 C1 D1 = Network2

if a<b

(Lib ref)

do while

z=x-y

(Lib ref)

11011001

(Lib ref)

00010111

10101011

(Lib ref)

11011001

01000100

00010111

10101011

11111100

10111101

11100001

00000011

01000100

10011101

11111100

Compiler Linker

Source Code File

ObjectFile

ExecutableFile

LibraryFiles

Page 16: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

Tools Supporting a Single System Image

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 16

Modify Code

• Configuration management or provisioning

Examples: CFEngine, Puppet, Chef, Ansible, Salt

Unit Test

• Requires a test description language

• Automated test harness

• Commercially unsolved for networking

Compile

• Configuration rollout and deployment

Examples: Otto, Jenkins, Maven, Ant

Validate

• Network and SLA monitoring

• Data collection and analysis

Examples: Nagios, OpenNMS, Zabbix

Source Code Management

• Configuration versioning

• Aligned to management domains

Examples: Git, Mercurial, Perforce

Page 17: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

• Be clear about whether your company really wants DevOps

• Fight the temptation to start with tools—people first!

• Automation is about workflows, not infrastructure

• Consider using your favorite tools to identify workflows

• Build modularly and expand

• Involve more than just the networking team

DevOps Evolution

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION 17

Page 18: DevOps Evolution - Government Executive · 2016-07-25 · •Be clear about whether your company really wants DevOps •Fight the temptation to start with tools—people first! •Automation

© 2016 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION

Thank you