+ All Categories
Home > Documents > CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN...

CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN...

Date post: 25-Jun-2020
Category:
Upload: others
View: 2 times
Download: 0 times
Share this document with a friend
41
@goforcd
Transcript
Page 1: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Page 2: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy
Page 3: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

IN THE MODERN ERACONTINUOUS DELIVERY

Page 4: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Sheroy Marker Head Of Technology - ThoughtWorks Products

@sheroymarker

Page 5: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

THOUGHTWORKS

25 years 5000+ people40 offices

Page 6: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

CONTINUOUS DELIVERY - A DEFINITION

The ability to get changes of all types - including new features, configuration, bug fixes, and experiments - into production, safely and quickly in a sustainable way.

- Jez Humble

Page 7: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

IN A NUTSHELL..

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Page 8: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TRAIN TICKET BOOKING PLATFORM - 10 YEARS AGO

Edge Load Balancer

Web Application

Web Application

Customer Service Application

Web Application

Customer Service Application

Frontend Application Servers

Web Application

Web Application

Web Application

Business Servers

Business Servers

Business Servers

MSMQ

Biztalk

Distributed Cache

Session DB Transactional DB Biztalk DB

Page 9: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TRADITIONAL CONTINUOUS DELIVERY

git pull

Version

Build

Unit Test

Package

Artifactory

Build Test

Artifactory

Get Package

Deploy Test Environment

Component

Service

UICertified

Version

Deploy

Artifactory

Get Package

Deploy Environment

Smoke Tests

Page 10: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TRADITIONAL CONTINUOUS DELIVERY PIPELINE

Build

Functional Tests

Regression Tests Deploy to Stage Deploy to Production

Artifact Repository

Hand rolled environments

Performance Tests

Page 11: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TRADEOFFS - THE GOOD

▸ Reproducible builds

▸Generate package once

▸High level of automation

▸ Safety net with automated test stages

▸Monitoring was simple(r)

Page 12: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TRADEOFFS - DRAWBACKS

▸ Entire system deployed at once

▸ Releases were large

▸No capability to turn features off in production

▸ Rollbacks were hard

Page 13: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

FINANCIAL SERVICES BUSINESS PLATFORM - CURRENT ERAEdge Load Balancer

Service

Repository

Apply Domain

Event Store

Command Handlers

Event Handlers

Service

Repository

Account Domain

Event Store

Command Handlers

Event Handlers

Service

Repository

Product Domain

Event Store

Command Handlers

Event Handlers

Service

Repository

Customer Domain

Event Store

Command Handlers

Event Handlers

EVENT

BUS

Page 14: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

A MODERN CONTINUOUS DELIVERY PIPELINE

Build

Functional Tests

Regression Tests

Deploy to Stage Deploy to Production

Service A

Service B

Build

Functional Tests

Regression Tests

Deploy to Stage Deploy to Production

Page 15: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

A MODERN CONTINUOUS DELIVERY PIPELINE

Build

Functional Tests

Regression Tests

Deploy to Stage Deploy to Production

Service A

Build

Functional Tests

Regression Tests

Service B

Page 16: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

A MODERN CONTINUOUS DELIVERY PIPELINE

Page 17: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Page 18: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

BUILD ENGINEERING - THE NEW BUILD ARTIFACT

git pull

Version

Build

Unit Test

Package

Docker File

thoughtworks/gocd-server:latest

thoughtworks/gocd-server:v18.10

Page 19: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

BUILD ENGINEERING - TRUNK BASED DEVELOPMENT

TRUNK

RELEASE BRANCHES

RELEASE 1.1.x HOTFIX

CHERRYPICK CHERRYPICK

COMMIT

DEVELOPERS SHORT-LIVED DEVELOPMENT BRANCHES

COMMIT

Page 20: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Page 21: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TEST ENGINEERING - THE TEST PYRAMID

UNIT TESTS

Slow, Expensive

Fast, Cheap

SERVICE TESTS

UI TESTS

Page 22: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

TEST ENGINEERING - THE TEST PYRAMID IN CONTEXT

Build Test Deploy to Stage

Deploy to Production

UNIT TESTS

Slow, Expensive

Fast, Cheap

Monitoring Distributed Tracing

Fault-injection Testing

Canary Deployments Blue-Green Deployments

A/B TestingINTEGRATION TESTS

COMPONENT TESTS

CONTRACT TESTS

E2E TESTS

Build Test Deploy to StageDeploy to StageDeploy to StageDeploy to StageDeploy to StageDeploy to Stage

Page 23: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Page 24: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

DECLARATIVE DEPLOYMENTS

servicesdb

volumesload balancer

YAML deployment descriptor

Ingress

ServiceNode

Pod

Deployment

Pod

Node

Pod

PodReplica Set

Page 25: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

DEPLOYMENT STRATEGIES

Load Balancer

V1 V1 V2

Load Balancer

V1 V2 V2

Load Balancer

V2 V2 V2

Load Balancer

V1 V1

Load Balancer Load Balancer

V2V2 V1 V1 V2V2 V1 V1 V2

Rolling Update

Blue Green Deployment Canary Deployment25%75%

Page 26: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

RELEASE DB CHANGES OUT OF BAND

D B V 1

A P P V 1

D B V 2

A P P V 2

R O L L B A C K A P P V 2

TimeDB migrated

to V1

App uses DB V1

DB migrated

to V2

App uses DB V2

App rolled back to V1

Page 27: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

DEPLOYMENT - DYNAMIC ENVIRONMENTS

Build Build Image

Build Pipeline

Test Deploy Test Destroy

Deploy Stage

Deploy Test

Deploy Prod

Docker Registry

Push Image

Pull Image

namespace: Stage namespace: Prod

Kubernetes

Image metadata

Image metadata

Page 28: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Page 29: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

MONITORING AND OBSERVABILITY

Hardware metrics (CPU, Memory, IO)

App/Business metrics (CPU, Memory, IO)

Logs

Metrics Collector

Metrics Collect & Ship Aggregate & Store Visualize

Typical Monitoring Setup

Page 30: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

MONITORING AND OBSERVABILITY

High cardinality events

honeycomb.io

Observability

Page 31: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Security

Page 32: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

SECURITY IN YOUR CD PIPELINE

▸ Vulnerability planning

▸ Secrets management

▸ Automate ad-hoc manual tasks

Page 33: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

SECURITY IN YOUR CD PIPELINE - VULNERABILITY PLANNING

Build

Functional Tests

Regression Tests

Deploy to Stage Deploy to Production

Static CVE Scan Scan Images Monitor Runtime

ContinuersMonitor Runtime

Continuers

Page 34: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

SECURITY IN YOUR CD PIPELINE - SECRETS MANAGEMENT

Continuous Delivery Workflow

ORCHESTRATOR

(Chef / Terraform /Kubernetes)

Application Server / Container

Fetch RoleID

Write RoleID

Machine/Container Image

Deliver Secret ID (Auth Token) to the Application

Use Auth Token To Access Secrets

Trusted Entity

Page 35: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Develop Build

Test

Deploy

Monitor

Continuous Delivery

Security

CD Metrics

Page 36: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

MEASURING YOUR CONTINUOUS DELIVERY PROCESS

“The highest performers excel at throughput and stability”

State of the DevOps Report 2018 Nicole Forsgren, PhD, Jez Humble, Gene Kim

https://devops-research.com/

Page 37: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Throughput

MEASURING YOUR CONTINUOUS DELIVERY PROCESS

Stability

Deployment Frequency

46xmore frequent

Change Failure Rate

5xlower (1/5 as likely)

Lead Time For Changes

440xfaster

Mean Time To Recover (MTTR)

96xfaster

Page 38: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

MEASURING YOUR CONTINUOUS DELIVERY PROCESS

Page 39: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

MODERN DAY CD - A SUMMARY

▸ Build Engineering

▸ Test Engineering

▸ Deployments

▸ Monitoring And Observability

▸ Security In Your CD Pipeline

▸ Measuring Your CD Process

Page 40: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd

Thank You Copenhagen!

https://sumfinity.com/hdr-photos/denmark/copenhagen/nyhavn-copenhagen-denmark/

Page 41: CD in the modern era - Sheroy Marker › uploads › slides › conference... · A MODERN CONTINUOUS DELIVERY PIPELINE Build Functional Tests Regression Tests Deploy to Stage Deploy

@goforcd


Recommended