45
© 2016 Mesosphere, Inc. All Rights Reserved. VELOCITY NYC | SEPTEMBER 20, 2016 CONTINUOUS DELIVERY WITH DC/OS AND JENKINS

Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

Embed Size (px)

Citation preview

Page 1: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

VELOCITY NYC | SEPTEMBER 20, 2016

CONTINUOUS DELIVERY WITH DC/OS AND JENKINS

Page 2: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

SUNIL SHAHProduct Manager at Mesosphere

@ssk2

ROGER IGNAZIOTech Lead at Mesosphere

@rogerignazio

WHO WE ARE

Page 3: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

mesosinaction.comUse the code vecymes for 42% off!

BUY MY BOOK!

Page 4: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

AGENDALecture● Introduction to Apache Mesos and DC/OS● Components that make up modern infra.● Running Jenkins as a service on DC/OS● Continuously deploying applications to DC/OS

Demos & Lab● Installing and configuring Jenkins● Installing and configuring a load balancer● Creating a new CI/CD pipeline● Putting it all together (CD in practice)

Page 5: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

DEVELOPER AGILITY, DEFINED

Page 6: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Developer agility empowers developers to● ship their apps to production● leverage the power of Mesos and DC/OS● fix bugs rapidly

without downtime!

DEVELOPER AGILITY, DEFINED

Page 7: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Continuous integration is not the same ascontinuous delivery or continuous deployment.

DEVELOPER AGILITY, DEFINED

Page 8: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

An artifact repo stores built binaries, whereas animage registry stores templates for deployment.

DEVELOPER AGILITY, DEFINED

Page 9: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

DEVELOPER AGILITY, DEFINED

Page 10: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

INTRO TO APACHE MESOS AND DC/OS

Page 11: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

A QUICK PRIMER ON CONTAINERS

Physical Server

Virtual Machine–BasedApplication Deployment

Container–BasedApplication Deployment

Hypervisor

OS

VM VM

OS

App App

Physical Server

Hypervisor

OS

VM VM

OS

App App

Physical Server

Operating System

App App

Physical Server

Operating System

App App

Mesos

Isolate apps by running multiple VMs per physical server; still need to manage each guest OS!

Isolate apps using features of the host OS, such as Linux cgroups.

Page 12: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

A QUICK PRIMER ON CONTAINERS

Linux cgroup

Dependencies

Linux Host OS

Application

Docker Container

Dependencies

Host OS

Application

Linux cgroupsDocker Containers

VM

Dependencies

Hypervisor

Application

Virtual Machines

Guest OS

Docker Engine

Page 13: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

A BIT OF CLARIFICATION

https://mesos.apache.org https://dcos.io

Page 14: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● General purpose cluster resource manager● Represents many machines as a single entity● Advertises resources directly to frameworks● Works at scale: Apple, Twitter, Airbnb, Netflix, …

WHAT IS MESOS?

Page 15: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Two-tier scheduling across resource types● cpus, mem, disk, and ports by default

● Masters are highly available, agents are fault tolerant● Checkpointing, agent recovery

● Resource isolation between processes● Linux cgroups, Docker, …

● Language bindings: C++, Java, Python, Go, …

WHAT IS MESOS? (CONTINUED)

Page 16: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

MESOS ARCHITECTURE

Launch task(s)

Mesos Master Quorum

Mesos Master(Standby)

ZK

Mesos Master(Standby)

ZK

Mesos Master(Leader)

ZK

Framework B Scheduler

Agent 1

Framework A Executor

Task(s)

Agent n

Framework A Executor

Task(s)

Framework B Executor

Task(s)

Resource offer

Resource offer

Framework A Scheduler

Launch task(s)

Page 17: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

ANATOMY OF A RESOURCE OFFER (TWO-TIER SCHEDULING)

Mesos Master(s)

Mesos Agent

16 CPUs128 GB RAM

1 TB disk

Mesos Agent

16 CPUs128 GB RAM

1 TB disk

Mesos Agent

16 CPUs128 GB RAM

1 TB disk

Master offers resources to scheduler

SchedulerExecutor

Available compute resources

Resource offer accepted, launch executors/tasks

Tasks

Executor

Tasks

Executor

Tasks

Scheduler accepts or declines an offer

Page 18: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Service discovery and load balancing● BIND, Mesos-DNS, Consul-Mesos, Marathon-LB

NEW (OLD) PROBLEMS

Page 19: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Service discovery and load balancing● BIND, Mesos-DNS, Consul-Mesos, Marathon-LB

● Monitoring and metrics collection● Collectd, Nagios, Prometheus, Snap

NEW (OLD) PROBLEMS

Page 20: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Service discovery and load balancing● BIND, Mesos-DNS, Consul-Mesos, Marathon-LB

● Monitoring and metrics collection● Collectd, Nagios, Prometheus, Snap

● Persistent storage (filesystems, databases, etc)● Ceph, HDFS, Amazon EBS / EFS / S3, NFS, Cassandra

NEW (OLD) PROBLEMS

Page 21: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Service discovery and load balancing● BIND, Mesos-DNS, Consul-Mesos, Marathon-LB

● Monitoring and metrics collection● Collectd, Nagios, Prometheus, Snap

● Persistent storage (filesystems, databases, etc)● Ceph, HDFS, Amazon EBS / EFS / S3, NFS, Cassandra

● Administration: named URIs vs. ports, IPAM● Nginx, HAProxy, Mesos-DNS, dhcpd, Minuteman

NEW (OLD) PROBLEMS

Page 22: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

https://dcos.io

https://github.com/dcos

DC/OS:BUILT ON MESOS

Page 23: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

DC/OS:BUILT ON MESOS

Page 24: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

All of the benefits of Mesos, plus● Built-in service discovery and load balancing● Support for stateful services● Turn-key installation of distributed systems● Cloud-agnostic installer● Web and command-line interfaces● All components are integration tested and supported by

Mesosphere, Inc.

MESOS AND DC/OS: BETTER TOGETHER

Page 25: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

JENKINS ON DC/OS

Page 26: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

MULTIPLE JENKINS MASTERS

Team A Jenkins

. . .Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

Team B Jenkins

Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

Team X Jenkins

Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

Page 27: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

MULTIPLE JENKINS MASTERS → STATIC PARTITIONING

Team A Jenkins

. . .Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

Team B Jenkins

Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

Team X Jenkins

Jenkins Agent 1

Jenkins Agent 2

. . .

Jenkins Agent N

90% Utilized(Normal)

140% Utilized(40 builds in queue)

0% Utilized(Idle)

Page 28: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

RUNNING JENKINS ON DC/OS → FAIR SHARING

Team A Jenkins . . .

DC/OS Agent 1

DC/OS Agent 4

DC/OS Agent N

Team B Jenkins

DC/OS Agent 2

DC/OS Agent 5

Team X Jenkins

DC/OS Agent 3

DC/OS Agent 6

. . .

DC/OS

Page 29: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

CONTINUOUSLY DEPLOYING APPLICATIONS TO DC/OS

Page 30: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

TRADITIONAL RELEASE PROCESS

● Planning & implementing new technologies

● Waiting for people & infrastructure

● Building environment specific CI/CD for each project

● Moving apps from dev to staging to prod

DEV(OPS) TEAMS SPEND SIGNIFICANT TIME AND EFFORT ON:

PROJECT PLANNING

WEEK 1 WEEK 2 WEEK 3 WEEKS 4 TO 8 WEEK 9

CUSTOMER FEEDBACKCONFIGURATIONRESOURCE

ALLOCATIONDev

Test Stage

Release

Page 31: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

MODERN RELEASE PROCESS

WEEK 1 WEEK 2 WEEK 3 WEEK 4

PROJECT PLANNING

CUSTOMER FEEDBACK

CUSTOMER FEEDBACK

CUSTOMER FEEDBACK

RELEASE 1 RELEASE 2 RELEASE 3 RELEASE 4

Better products through a repeatable release cadence

Happier customers through continuous feedback

Dev

Test Stage

Release Dev

Test Stage

Release Dev

Test Stage

Release Dev

Test Stage

Release

Page 32: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Scheduling — advertising available compute resources● Deployments — getting an application onto a node● Health checks — ensuring the app/service is healthy● Service discovery — connecting to dependent services● Persistence — running stateful services in containers

DEPLOYING APPLICATIONS: BASIC REQUIREMENTS

Page 33: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

A sysadmin provisions one or more physical/virtual servers to host the app

Mesos resource offers (two-tier scheduling) offers available resources directly to frameworks

DEPLOYING APPLICATIONS: SCHEDULING

Before DC/OS With DC/OS

Page 34: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

By hand or using Puppet / Chef / Ansible

Jenkins SSHing to the machine and running a shell script

Note: all dependencies must also be present!

Marathon deploys containers, ideally using a CI/CD tool to create/update app definitions

Docker containers packages app and dependencies

DEPLOYING APPLICATIONS: DEPLOYMENTS

Before DC/OS With DC/OS

Page 35: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Nagios pages a sysadmin Marathon performs health checks, restarts unhealthy/failed instances

DEPLOYING APPLICATIONS: HEALTH CHECKS

Before DC/OS With DC/OS

Page 36: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Static hostnames / IP addresses in a spreadsheet or config management

A sysadmin configures a load balancer manually or with Puppet / Chef / Ansible

Mesos-DNS provides DNS resolution for running services (hostname / IP address, ports, etc)

Load balancer configs built dynamically using cluster state

DEPLOYING APPLICATIONS: SERVICE DISCOVERY

Before DC/OS With DC/OS

Page 37: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Individual servers with RAID 1/5/6/10, expensive SANs, NFS, etc.

Dedicated, statically partitioned Ceph or Gluster storage clusters

Mesos external/persistent volumes (REX-Ray), HDFS, etc.

Self-healing Ceph or Gluster on Mesos / DC/OS

DEPLOYING APPLICATIONS: PERSISTENCE

Before DC/OS With DC/OS

Page 38: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Q: Given that we are all engineers,which tools would we like to work with?

Page 39: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

DEMOS & LAB

Page 40: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved. 40

PIPELINE COMPONENTS

Continuous Integration

Container Registry

Container Orchestrator

Version Control System Load BalancerProduction

Environment

Continuous Delivery Pipeline

git push

DC/OS

Page 41: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved. 41

PIPELINE COMPONENTS

Jenkins

DockerHub

MarathonGitHub Marathon-lbMesos

Continuous Delivery Pipeline

git push

DC/OS

Page 42: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved. 42

PIPELINE CONFIGURATION

Jenkinsfile

Dockerfile

marathon.json

Continuous Delivery Pipeline

git push

DC/OS

Page 43: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

A SNEAK PREVIEW

Page 44: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

● Head over to github.com/mesosphere/vny

● Follow the exercises!

● Use the username/password: velocityuser/velocitypassword

YOUR TURN

Page 45: Highly efficient container orchestration and continuous delivery with DC/OS and Jenkins presentation

© 2016 Mesosphere, Inc. All Rights Reserved.

Roger [email protected]

@rogerignazio

Sunil [email protected]

@ssk2

THANK YOU!

Learn more by visiting DCOS.io and Mesosphere.com