From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now?...

103
From Dev/Ops to devops

Transcript of From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now?...

Page 1: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

From Dev/Ops

todevops

Page 3: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for
Page 4: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

There was this great IT company

Page 5: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Full of IT-professionals

Page 6: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

But when a new

release was at hand

Page 7: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Things changed

DEVS OPS

Page 8: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

“please deploy this warfile now”

Page 9: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

“we need more detail”

Page 10: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

“just do it, it’s important”

Page 11: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

“we still need more info”

Page 12: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

I’m superior!

Operations is so slow

We create real value

Devs don’t know production

We protect real value

I’m superior!

Page 13: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

silenceAnd after a few rounds

Page 14: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

The business was horrified

Page 15: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Dev/Ops

Page 16: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Dev/Ops

Page 17: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Why can’t we just get along?

Page 18: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Infrastructure used to be hard(ware)

Page 19: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

operations could only jump not fly

Page 20: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

therefore operations avoided change

Page 21: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

But then came virtualization

Page 22: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

The cloud showed us how to scale

Page 23: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Infrastructure as code

CFEngine Puppet Chef

Page 24: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

# tomcat.pp

class tomcat {

! package {! ! "java-1.6.0-sun-compat":! ! ! ensure => "installed";! ! "tomcat6":! ! ! require => [Package["java-1.6.0-sun-compat"], Package["ntc-tomcat-log4j"]],! ! ! ensure => "installed";! ! "tomcat6-admin-webapps":! ! ! ensure => "installed";! ! "log4j":! ! ! ensure => "installed";! ! "tanukiwrapper":! ! ! ensure => "installed";! ! "mysql-connector-java":! ! ! ensure => "installed";! }

! file {! ! "/etc/init.d/tomcat6": mode => "0755", owner => "root", group => "root", source => "puppet:///tomcat/tomcat6.init"; }

! user {! ! "tomcat":! ! ! ensure => "present",! ! ! require => Package["tomcat6"];! }}!

tomcat",! ! ! mode => "0755",! ! ! require => Package['tomcat6'],! ! ! content => template("headers/header-xml.erb","tomcat/tomcat6-init.erb");! ! "/etc/init.d/build-jar-repo":! ! ! owner => "tomcat", group => "tomcat", mode => "0755",! ! ! require => Package['tomcat6'], source => "puppet:///tomcat/build-jar-repo";! ! "/var/log/tomcat6/$name":! ! ! owner => "tomcat",! ! ! group => "tomcat",! ! ! mode => "0755",! ! ! require => Package['tomcat6'],! ! ! ensure => "directory";! ! "/var/cache/tomcat6/temp/$name": owner => "root", group => "root", mode => "0755",! ! ! require => Package['tomcat6'], ensure => "directory";! ! "/var/cache/tomcat6/work/$name": owner => "root", group => "root", mode => "0755",! ! ! require => Package['tomcat6'], ensure => "directory";! ! "/usr/local/tomcat6-$name/temp":! ! ! ensure => "link", require => File["/var/cache/tomcat6/temp/$name"], target => "/var/cache/tomcat6/temp/$name";! ! "/usr/local/tomcat6-$name/work":! ! ! ensure => "link", require => File["/var/cache/tomcat6/work/$name"], target => "/var/cache/tomcat6/work/$name";! ! "/usr/local/tomcat6-$name/work/Catalina": owner => "tomcat", group => "tomcat", ensure => "directory", require => File["/usr/local/tomcat6-$name/work"]; "/usr/local/tomcat6-$name/work/Catalina/localhost": owner => "tomcat", group => "tomcat", ensure => "directory", require => File["/usr/local/tomcat6-$name/work/Catalina"]; "/usr/local/tomcat6-$name/work/Catalina/localhost/manager": owner => "tomcat", group => "tomcat", ensure => "directory", require => File["/usr/local/tomcat6-$name/work/Catalina/localhost"];! }

! service { "tomcat6-$name": enable => "false", require => [Package['tomcat6'], Package['tanukiwrapper']];! ! "build-jar-repo":! ! ! enable => "true",! ! ! start => "/etc/init.d/build-jar-repo", require => File["/etc/init.d/build-jar-repo"]];! }!

Example tomcat recipe

Page 25: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

AgileInfrastructure

Page 26: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Rebuild from Scratch

Page 27: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Version control

Page 28: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for
Page 29: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Automate things

Page 30: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Controlled changes

Page 31: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

It’s more then just automation

Page 32: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

use tests as brakes to allow you to go faster

Page 33: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Test deploy

+ rollbackscenario’s

Page 34: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Make things reproducible

Page 35: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for
Page 36: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Agile Sysadmin

Page 37: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Operations backlog

Page 38: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Planning Poker

Page 39: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Iterations vs flow

Page 40: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Pair system administration

Page 41: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Kanban board

Backlog Todo(3) Test(2) Production(1)

Page 42: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

OPS-OPS Problem

Network

Sysadmin

Storage

Security

Page 43: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

But agile devs know all that

Page 44: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We all become

developers now?

Page 45: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Devs can just shipa virtual machine?

Page 46: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Stop the rockstar mentality!

Page 47: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Don’t fear

for your job

Page 48: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

All this automation will only help against some local pain

Page 49: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Let’s turn the pain level up a notch

Page 50: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Continuous Integration

If it’s harddo it more often

Page 51: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

BuildPipelines

DEV TEST UAT PREPROD PROD

Page 52: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Make all environmentsthe same

DEV TEST PROD

Page 53: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Software only brings value in Production

Page 54: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Parallel Build Pipelines

Infrastructure Build & Test

Software Build & Test

Data Build & Test

Application

OS Level

Data

Page 55: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Synchronize your release cycles

Page 56: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Think Continuous

Delivery

Page 57: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

There are still a few problems to solve

Page 58: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

How to package things

Page 59: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

access

We all want our

Page 60: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Debug logs !=

Operational Logs

Page 61: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Focus on: Flow & Cycle Time

Page 62: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Value stream mapping

Page 63: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Minimize waste

Page 64: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Zero defect policy

Page 65: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Stop the line mentality

Page 66: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Fix things early in the process

Page 67: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We wantContinuous Improvement

Page 68: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We need to overcome a

bigger pain

Page 69: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We need to overcome the silos

Development Operations

Page 70: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Prince2, Agile, Scrum ITIL, Cobit, CMMI

Current management styles

Page 71: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

focus on optimizing individual parts

Page 72: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Devsoptimize

their worldview

Page 73: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Opsoptimize

their worldview

Page 74: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Not In My Back YardSyndrome

Page 75: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Causing technical debt

Page 76: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Like cron job fixes

Page 77: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

The map is not

the territoryAlfred Korzybski

Page 78: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Systems Thinking

Page 79: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Understand it’s a business problem

Page 80: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

do the right thing vs

the thing right

Page 81: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Collect Metrics

Problemsin production

Failure to deploy

Functionalitynot working

Bugs Failed deploys Incidents

Page 82: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

When to decideProject vs Incidents

Page 83: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Orfunctional

vs non-functionalrequirements

Page 84: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Relate it to business value

Value lostMarket lossValue Added

Bugs Failed deploys Incidents

Page 85: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Advise and Accept the business decision

Page 86: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Recap: No Silver Bullet

Page 87: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

It’s a jobtitle

Page 88: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Even though we have a different culture

HardwareSoftware

Page 89: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We share the same customer

Page 90: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

We try to solve the same business problem

Page 91: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Why only work together when things go wrong?

Page 92: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Managers are there to support you.

Not to tell you what to do

Page 93: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

It’s not about the tools

Page 94: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

It’s a cultural shift

Page 95: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

THE SECRET SAUCE OF THE DEVOPS:

CAMS• Culture

• Automation

• Measurement

• Sharing

John Willis & Damon Edwards

Page 96: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Multiple levelshave higher impact

Page 97: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Culture is hard, start with behavior

Effort to change

Impact

Tools

Behavior

Culture

Page 98: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Become Awesome again

Page 99: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Interesting Books

Page 100: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

Want to know more?

#devops on twitter & irchttp://devopsdays.orghttp://devopscafe.org

http://planetdevops.netdevops googlegroup

devops-toolchain googlegroup

Page 101: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for

What keeps you awakeat night?

Page 102: From Dev/Ops to devops - Jedi€¦ · But agile devs know all that. We all become developers now? Devs can just ship a virtual machine? Stop the rockstar mentality! Don’t fear for