ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)

DynamicInfraDays
DynamicInfraDaysDynamicInfraDays
Building the Layers of the Scalable
Cluster for Containers
by Barak Michener
About Me
distributed systems
engineer
@barakmich
github.com/barakmich
EpicHack.com
https://twitter.com/gabrtv/status/539805332432637952
Good artists copy…. (or fork?)
the OSI Model
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
reduced API contracts
OS
kernel
systemd
lvm
ssh
python
java
nginx
mysql
openssl
app
distrodistrodistrodistrodistrodistrodistr
python
java
nginx
mysql
openssl
app
distrodistrodistrodistrodistrodistrodistr
kernel
systemd
lvm
ssh
python
openssl-A
app1
distrodistrodistrodistrodistrodistrodistr java
openssl-B
app2
java
openssl-B
app3
kernel
systemd
lvm
ssh
super-powers
OS
Opportunity for automatic updates.
Consistent set of software across hosts.
Base OS independent from app.
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
design for host failure
clustering
etcd
/etc
distributed
(or daemon?)
open source software
sequentially consistent
exposed via HTTP
runtime reconfigurable
Available
Available
Available
Unavailable
Available
Leader
Follower
Leader
Follower
Available
Leader
Follower
Temporarily Unavailable
Leader
Follower
Available
1 2 3 4
{Log
1 2 3 4
Entries
1 2 3 4
Indexes
Sequential Consistency
Operations* are atomically executed in the
same sequential order on all machines.
1
1
1
2
Pet=dog
Pet=cat
Pet=cat
1
2
PUT Pet = cat
PUT Pet = dog
1
1
1
2
2
1
2
PUT Pet = cat
PUT Pet = dog
Pet=dog
Pet=dog
Pet=cat
1
1
1
2
2
2
1
2
PUT Pet = cat
PUT Pet = dog
Pet=dog
Pet=dog
Pet=dog
Sequential Consistency
Real-time
1
1
1
2
GET Pet @ 10:00.0 -> 1[cat]!?
GET Pet @ 10:00.0 -> 2[dog]
2
1
1
1
2
2
2
GET Pet @ 10:00.1 -> 1[dog]
Sequential Consistency
Index Time
1
1
1
2
GET Pet @ 2 -> blocking
GET Pet @ 2 -> 2[dog]
2
1
1
1
2
GET Pet @ 2 -> 2[dog]
2
2
etcd guarantees that a get at
index X will always return the
same result.
Avoid thinking in terms of real time because with network
latency the result is always out-of-date.
Quorum GETs
GET via Raft
1
1
1
2
2
1
1
1
2
QGET A
2
1
1
1
2
QGET A -> 2[dog]
2
2
1
1
1
2
QGET A -> 2[dog]
2
2
3
3
https://aphyr.com/posts/313-strong-
consistency-models
super-powers
etcd
Share configuration data across hosts.
Resilient to host failures.
Designed for consistency across hosts.
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
what can we build
together?
cluster
resources
We have some important primitives
now
What cluster-wide services can we
provide?
Network, Disk, Compute (kublets)
Personal opinion: ls /dev
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
super-powers
flannel
Partition a IP range -- hand out an IP to
each container (consistently)
Speed! (Avoiding userspace is good)
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
getting work to servers
orchestration
You
Orchestrator API
Scheduler, Network, NS
Machine(s)
while true {
todo = diff(desState, curState)
schedule(todo)
}
while true {
todo = diff(desState, curState)
schedule(todo)
}
while true {
todo = diff(desState, curState)
schedule(todo)
}
while true {
todo = diff(desState, curState)
schedule(todo)
}
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
fleet
mesos
kubernetes
swarm
job scheduling
super-powers
orchestration
Think about app capacity first.
Take advantage of
compute/memory/disk/network
resources.
Build on etcd resilience to host failure.
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
run and isolate apps
containers
what is it exactly?
containers
Containers
Userspace Tarballs
libc
python
django
app.py
example.com/myapp
"Lifts" myapp from the OS into Layer 6
$ container fetch example.com/myapp
$ container run example.com/myapp
Pull from layer 6
Invoke in layer 2
pid ns
isolated pid 1
user ns
isolated uid 0
network ns
isolated netdev
mount ns
isolated /
cgroups
manage resources
cgroups
count resources
cgroups
limit resources
how are they created?
containers
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)
Application (you, MySQL, ElasticSearch)Layer 3
Linux Distro (Ubuntu, Red Hat, CentOS)Layer 2
Physical (Bare Metal, OpenStack, AWS, DO)Layer 1
revisiting today’s Model
App MySQL
ElasticSearch
App MySQL
ElasticSearch
a Cluster
a Cluster
a Cluster
a Cluster
@coreoslinux
1 of 87

Recommended

Docker at OpenDNS by
Docker at OpenDNSDocker at OpenDNS
Docker at OpenDNSOpenDNS
15.8K views22 slides
Salting new ground one man ops from scratch by
Salting new ground   one man ops from scratchSalting new ground   one man ops from scratch
Salting new ground one man ops from scratchJay Harrison
124 views15 slides
Docker with BGP - OpenDNS by
Docker with BGP - OpenDNSDocker with BGP - OpenDNS
Docker with BGP - OpenDNSbacongobbler
6.2K views15 slides
Volume Weighted Average Price by
Volume Weighted Average PriceVolume Weighted Average Price
Volume Weighted Average PriceBarış Cirit
113 views12 slides
Container Monitoring with Sysdig by
Container Monitoring with SysdigContainer Monitoring with Sysdig
Container Monitoring with SysdigSreenivas Makam
7.5K views18 slides
Fun with containers: Use Ansible to build Docker images by
Fun with containers: Use Ansible to build Docker imagesFun with containers: Use Ansible to build Docker images
Fun with containers: Use Ansible to build Docker imagesabadger1999
6.2K views19 slides

More Related Content

What's hot

Demystifying Docker for Data Scientists by Shaheen by
Demystifying Docker for Data Scientists by ShaheenDemystifying Docker for Data Scientists by Shaheen
Demystifying Docker for Data Scientists by ShaheenShaheen Gauher
855 views34 slides
Testing Wi-Fi with OSS Tools by
Testing Wi-Fi with OSS ToolsTesting Wi-Fi with OSS Tools
Testing Wi-Fi with OSS ToolsAll Things Open
415 views31 slides
Securing Containers, One Patch at a Time - Michael Crosby, Docker by
Securing Containers, One Patch at a Time - Michael Crosby, DockerSecuring Containers, One Patch at a Time - Michael Crosby, Docker
Securing Containers, One Patch at a Time - Michael Crosby, DockerDocker, Inc.
424 views48 slides
Docker - A Ruby Introduction by
Docker - A Ruby IntroductionDocker - A Ruby Introduction
Docker - A Ruby IntroductionTyler Johnston
115 views44 slides
Fabric: A Capistrano Alternative by
Fabric:  A Capistrano AlternativeFabric:  A Capistrano Alternative
Fabric: A Capistrano AlternativePanoptic Development, Inc.
20.8K views18 slides
Docker orchestration using core os and ansible - Ansible IL 2015 by
Docker orchestration using core os and ansible - Ansible IL 2015Docker orchestration using core os and ansible - Ansible IL 2015
Docker orchestration using core os and ansible - Ansible IL 2015Leonid Mirsky
10.3K views20 slides

What's hot(20)

Demystifying Docker for Data Scientists by Shaheen by Shaheen Gauher
Demystifying Docker for Data Scientists by ShaheenDemystifying Docker for Data Scientists by Shaheen
Demystifying Docker for Data Scientists by Shaheen
Shaheen Gauher855 views
Securing Containers, One Patch at a Time - Michael Crosby, Docker by Docker, Inc.
Securing Containers, One Patch at a Time - Michael Crosby, DockerSecuring Containers, One Patch at a Time - Michael Crosby, Docker
Securing Containers, One Patch at a Time - Michael Crosby, Docker
Docker, Inc.424 views
Docker - A Ruby Introduction by Tyler Johnston
Docker - A Ruby IntroductionDocker - A Ruby Introduction
Docker - A Ruby Introduction
Tyler Johnston115 views
Docker orchestration using core os and ansible - Ansible IL 2015 by Leonid Mirsky
Docker orchestration using core os and ansible - Ansible IL 2015Docker orchestration using core os and ansible - Ansible IL 2015
Docker orchestration using core os and ansible - Ansible IL 2015
Leonid Mirsky10.3K views
JupyterHub + kubernetes by Carol Willing
JupyterHub + kubernetesJupyterHub + kubernetes
JupyterHub + kubernetes
Carol Willing1.6K views
Elixir/Phoenix releases and research about common deployment strategies. by Michael Dimmitt
Elixir/Phoenix releases and research about common deployment strategies.Elixir/Phoenix releases and research about common deployment strategies.
Elixir/Phoenix releases and research about common deployment strategies.
Michael Dimmitt52 views
On MongoDB backup by William Yeh
On MongoDB backupOn MongoDB backup
On MongoDB backup
William Yeh2.2K views
Docker puppetcamp london 2013 by Tomas Doran
Docker puppetcamp london 2013Docker puppetcamp london 2013
Docker puppetcamp london 2013
Tomas Doran2.9K views
Kubernetes in 20 minutes - HDE Monthly Technical Session 24 by lestrrat
Kubernetes in 20 minutes - HDE Monthly Technical Session 24Kubernetes in 20 minutes - HDE Monthly Technical Session 24
Kubernetes in 20 minutes - HDE Monthly Technical Session 24
lestrrat1.6K views
Containerize! Between Docker and Jube. by Henryk Konsek
Containerize! Between Docker and Jube.Containerize! Between Docker and Jube.
Containerize! Between Docker and Jube.
Henryk Konsek1.7K views
CoreOS: The Inside and Outside of Linux Containers by Ramit Surana
CoreOS: The Inside and Outside of Linux ContainersCoreOS: The Inside and Outside of Linux Containers
CoreOS: The Inside and Outside of Linux Containers
Ramit Surana2.7K views
Kubernetes HA @ AppDirect - Montreal Kubernetes Meetup by alexgervais
Kubernetes HA @ AppDirect - Montreal Kubernetes MeetupKubernetes HA @ AppDirect - Montreal Kubernetes Meetup
Kubernetes HA @ AppDirect - Montreal Kubernetes Meetup
alexgervais650 views
What's new in Ansible 2.0 by Allan Denot
What's new in Ansible 2.0What's new in Ansible 2.0
What's new in Ansible 2.0
Allan Denot2.7K views
CoreOS + Kubernetes @ All Things Open 2015 by Brandon Philips
CoreOS + Kubernetes @ All Things Open 2015CoreOS + Kubernetes @ All Things Open 2015
CoreOS + Kubernetes @ All Things Open 2015
Brandon Philips409 views
Building a Docker Swarm cluster on ARM by Dieter Reuter and Stefan Scherer by Docker, Inc.
Building a Docker Swarm cluster on ARM by Dieter Reuter and Stefan Scherer Building a Docker Swarm cluster on ARM by Dieter Reuter and Stefan Scherer
Building a Docker Swarm cluster on ARM by Dieter Reuter and Stefan Scherer
Docker, Inc.1.6K views
Small, Simple, and Secure: Alpine Linux under the Microscope by Docker, Inc.
Small, Simple, and Secure: Alpine Linux under the MicroscopeSmall, Simple, and Secure: Alpine Linux under the Microscope
Small, Simple, and Secure: Alpine Linux under the Microscope
Docker, Inc.3.9K views

Similar to ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)

PuppetDB: Sneaking Clojure into Operations by
PuppetDB: Sneaking Clojure into OperationsPuppetDB: Sneaking Clojure into Operations
PuppetDB: Sneaking Clojure into Operationsgrim_radical
1.5K views109 slides
App container rkt by
App container rktApp container rkt
App container rktXiaofeng Guo
1.5K views108 slides
Oracle rac 10g best practices by
Oracle rac 10g best practicesOracle rac 10g best practices
Oracle rac 10g best practicesHaseeb Alam
1.3K views64 slides
kishore_Nokia by
kishore_Nokiakishore_Nokia
kishore_NokiaKishore reddy Varra
172 views9 slides
DockerCon14 Cluster Management and Containerization by
DockerCon14 Cluster Management and ContainerizationDockerCon14 Cluster Management and Containerization
DockerCon14 Cluster Management and ContainerizationDocker, Inc.
2.8K views127 slides
Achieving Performance Isolation with Lightweight Co-Kernels by
Achieving Performance Isolation with Lightweight Co-KernelsAchieving Performance Isolation with Lightweight Co-Kernels
Achieving Performance Isolation with Lightweight Co-KernelsJiannan Ouyang, PhD
1.1K views24 slides

Similar to ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)(20)

PuppetDB: Sneaking Clojure into Operations by grim_radical
PuppetDB: Sneaking Clojure into OperationsPuppetDB: Sneaking Clojure into Operations
PuppetDB: Sneaking Clojure into Operations
grim_radical1.5K views
App container rkt by Xiaofeng Guo
App container rktApp container rkt
App container rkt
Xiaofeng Guo1.5K views
Oracle rac 10g best practices by Haseeb Alam
Oracle rac 10g best practicesOracle rac 10g best practices
Oracle rac 10g best practices
Haseeb Alam1.3K views
DockerCon14 Cluster Management and Containerization by Docker, Inc.
DockerCon14 Cluster Management and ContainerizationDockerCon14 Cluster Management and Containerization
DockerCon14 Cluster Management and Containerization
Docker, Inc.2.8K views
Achieving Performance Isolation with Lightweight Co-Kernels by Jiannan Ouyang, PhD
Achieving Performance Isolation with Lightweight Co-KernelsAchieving Performance Isolation with Lightweight Co-Kernels
Achieving Performance Isolation with Lightweight Co-Kernels
Jiannan Ouyang, PhD1.1K views
Episode 3: Kubernetes and Big Data Services by Mesosphere Inc.
Episode 3: Kubernetes and Big Data ServicesEpisode 3: Kubernetes and Big Data Services
Episode 3: Kubernetes and Big Data Services
Mesosphere Inc.1.7K views
Puppet Camp Chicago 2014: Running Multiple Puppet Masters (Beginner) by Puppet
Puppet Camp Chicago 2014: Running Multiple Puppet Masters (Beginner) Puppet Camp Chicago 2014: Running Multiple Puppet Masters (Beginner)
Puppet Camp Chicago 2014: Running Multiple Puppet Masters (Beginner)
Puppet4.1K views
Spark Summit EU talk by Jorg Schad by Spark Summit
Spark Summit EU talk by Jorg SchadSpark Summit EU talk by Jorg Schad
Spark Summit EU talk by Jorg Schad
Spark Summit848 views
Compass first meetup by Shuo Yang
Compass first meetupCompass first meetup
Compass first meetup
Shuo Yang9K views
Container & kubernetes by Ted Jung
Container & kubernetesContainer & kubernetes
Container & kubernetes
Ted Jung3.6K views
LibOS as a regression test framework for Linux networking #netdev1.1 by Hajime Tazaki
LibOS as a regression test framework for Linux networking #netdev1.1LibOS as a regression test framework for Linux networking #netdev1.1
LibOS as a regression test framework for Linux networking #netdev1.1
Hajime Tazaki1.6K views
Slackware Demystified [SELF 2011] by Vincent Batts
Slackware Demystified [SELF 2011]Slackware Demystified [SELF 2011]
Slackware Demystified [SELF 2011]
Vincent Batts581 views
AWS reinvent 2019 recap - Riyadh - Containers and Serverless - Paul Maddox by AWS Riyadh User Group
AWS reinvent 2019 recap - Riyadh - Containers and Serverless - Paul MaddoxAWS reinvent 2019 recap - Riyadh - Containers and Serverless - Paul Maddox
AWS reinvent 2019 recap - Riyadh - Containers and Serverless - Paul Maddox
Direct Code Execution - LinuxCon Japan 2014 by Hajime Tazaki
Direct Code Execution - LinuxCon Japan 2014Direct Code Execution - LinuxCon Japan 2014
Direct Code Execution - LinuxCon Japan 2014
Hajime Tazaki1.3K views
seven-ways-to-run-flink-on-aws.pdf by SergioBruno21
seven-ways-to-run-flink-on-aws.pdfseven-ways-to-run-flink-on-aws.pdf
seven-ways-to-run-flink-on-aws.pdf
SergioBruno21112 views
Swift Install Workshop - OpenStack Conference Spring 2012 by Joe Arnold
Swift Install Workshop - OpenStack Conference Spring 2012Swift Install Workshop - OpenStack Conference Spring 2012
Swift Install Workshop - OpenStack Conference Spring 2012
Joe Arnold4.2K views

More from DynamicInfraDays

ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio... by
ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...
ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...DynamicInfraDays
491 views19 slides
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ... by
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...DynamicInfraDays
741 views24 slides
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ... by
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...DynamicInfraDays
572 views63 slides
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices... by
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...DynamicInfraDays
664 views27 slides
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir... by
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...DynamicInfraDays
505 views39 slides
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int... by
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...DynamicInfraDays
2.4K views81 slides

More from DynamicInfraDays(17)

ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio... by DynamicInfraDays
ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...
ContainerDays NYC 2016: "From Hello World to Real World: Building a Productio...
DynamicInfraDays491 views
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ... by DynamicInfraDays
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...
ContainerDays NYC 2016: "Securing Your Docker Image Registry for Production" ...
DynamicInfraDays741 views
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ... by DynamicInfraDays
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...
ContainerDays NYC 2016: "OpenWhisk: A Serverless Computing Platform" (Rodric ...
DynamicInfraDays572 views
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices... by DynamicInfraDays
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...
ContainerDays NYC 2016: "State of the Persistence Art: Present Best Practices...
DynamicInfraDays664 views
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir... by DynamicInfraDays
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...
ContainerDays NYC 2016: "Observability and Manageability in a Container Envir...
DynamicInfraDays505 views
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int... by DynamicInfraDays
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...
ContainerDays NYC 2016: "The Secure Introduction Problem: Getting Secrets Int...
DynamicInfraDays2.4K views
ContainerDays NYC 2016: "Containers in Azure: Understanding the Microsoft Con... by DynamicInfraDays
ContainerDays NYC 2016: "Containers in Azure: Understanding the Microsoft Con...ContainerDays NYC 2016: "Containers in Azure: Understanding the Microsoft Con...
ContainerDays NYC 2016: "Containers in Azure: Understanding the Microsoft Con...
DynamicInfraDays703 views
ContainerDays NYC 2016: "Introduction to Application Automation with Habitat"... by DynamicInfraDays
ContainerDays NYC 2016: "Introduction to Application Automation with Habitat"...ContainerDays NYC 2016: "Introduction to Application Automation with Habitat"...
ContainerDays NYC 2016: "Introduction to Application Automation with Habitat"...
DynamicInfraDays436 views
ContainerDays Boston 2016: "Docker For the Developer" (Borja Burgos) by DynamicInfraDays
ContainerDays Boston 2016: "Docker For the Developer" (Borja Burgos)ContainerDays Boston 2016: "Docker For the Developer" (Borja Burgos)
ContainerDays Boston 2016: "Docker For the Developer" (Borja Burgos)
DynamicInfraDays652 views
ContainerDays Boston 2016: "Hiding in Plain Sight: Managing Secrets in a Cont... by DynamicInfraDays
ContainerDays Boston 2016: "Hiding in Plain Sight: Managing Secrets in a Cont...ContainerDays Boston 2016: "Hiding in Plain Sight: Managing Secrets in a Cont...
ContainerDays Boston 2016: "Hiding in Plain Sight: Managing Secrets in a Cont...
DynamicInfraDays995 views
ContainerDays Boston 2016: "Autopilot: Running Real-world Applications in Con... by DynamicInfraDays
ContainerDays Boston 2016: "Autopilot: Running Real-world Applications in Con...ContainerDays Boston 2016: "Autopilot: Running Real-world Applications in Con...
ContainerDays Boston 2016: "Autopilot: Running Real-world Applications in Con...
DynamicInfraDays918 views
ContainerDays NYC 2015: "Container Orchestration Compared: Kubernetes and Doc... by DynamicInfraDays
ContainerDays NYC 2015: "Container Orchestration Compared: Kubernetes and Doc...ContainerDays NYC 2015: "Container Orchestration Compared: Kubernetes and Doc...
ContainerDays NYC 2015: "Container Orchestration Compared: Kubernetes and Doc...
DynamicInfraDays2K views
ContainerDays NYC 2015: "What It Really Takes to Build a Container Platform" ... by DynamicInfraDays
ContainerDays NYC 2015: "What It Really Takes to Build a Container Platform" ...ContainerDays NYC 2015: "What It Really Takes to Build a Container Platform" ...
ContainerDays NYC 2015: "What It Really Takes to Build a Container Platform" ...
DynamicInfraDays664 views
ContainerDays NYC 2015: "How Yodle Cleaned Up the Mess Using Containers and M... by DynamicInfraDays
ContainerDays NYC 2015: "How Yodle Cleaned Up the Mess Using Containers and M...ContainerDays NYC 2015: "How Yodle Cleaned Up the Mess Using Containers and M...
ContainerDays NYC 2015: "How Yodle Cleaned Up the Mess Using Containers and M...
DynamicInfraDays668 views
ContainerDays NYC 2015: "Easing Your Way Into Docker: Lessons From a Journey ... by DynamicInfraDays
ContainerDays NYC 2015: "Easing Your Way Into Docker: Lessons From a Journey ...ContainerDays NYC 2015: "Easing Your Way Into Docker: Lessons From a Journey ...
ContainerDays NYC 2015: "Easing Your Way Into Docker: Lessons From a Journey ...
DynamicInfraDays784 views
ContainerDays Boston 2015: "Continuous Delivery with Containers" (Nick Gauthier) by DynamicInfraDays
ContainerDays Boston 2015: "Continuous Delivery with Containers" (Nick Gauthier)ContainerDays Boston 2015: "Continuous Delivery with Containers" (Nick Gauthier)
ContainerDays Boston 2015: "Continuous Delivery with Containers" (Nick Gauthier)
DynamicInfraDays625 views
ContainerDays Boston 2015: "A Brief History of Containers" (Jeff Victor & Kir... by DynamicInfraDays
ContainerDays Boston 2015: "A Brief History of Containers" (Jeff Victor & Kir...ContainerDays Boston 2015: "A Brief History of Containers" (Jeff Victor & Kir...
ContainerDays Boston 2015: "A Brief History of Containers" (Jeff Victor & Kir...
DynamicInfraDays1.1K views

Recently uploaded

STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdfDr. Jimmy Schwarzkopf
19 views29 slides
Tunable Laser (1).pptx by
Tunable Laser (1).pptxTunable Laser (1).pptx
Tunable Laser (1).pptxHajira Mahmood
24 views37 slides
Five Things You SHOULD Know About Postman by
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About PostmanPostman
33 views43 slides
Data Integrity for Banking and Financial Services by
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial ServicesPrecisely
21 views26 slides
Piloting & Scaling Successfully With Microsoft Viva by
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft VivaRichard Harbridge
12 views160 slides
PRODUCT PRESENTATION.pptx by
PRODUCT PRESENTATION.pptxPRODUCT PRESENTATION.pptx
PRODUCT PRESENTATION.pptxangelicacueva6
14 views1 slide

Recently uploaded(20)

STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by Dr. Jimmy Schwarzkopf
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman33 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely21 views
Piloting & Scaling Successfully With Microsoft Viva by Richard Harbridge
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft Viva
Business Analyst Series 2023 - Week 3 Session 5 by DianaGray10
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5
DianaGray10248 views
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software263 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec12 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb14 views
The details of description: Techniques, tips, and tangents on alternative tex... by BookNet Canada
The details of description: Techniques, tips, and tangents on alternative tex...The details of description: Techniques, tips, and tangents on alternative tex...
The details of description: Techniques, tips, and tangents on alternative tex...
BookNet Canada127 views
Empathic Computing: Delivering the Potential of the Metaverse by Mark Billinghurst
Empathic Computing: Delivering  the Potential of the MetaverseEmpathic Computing: Delivering  the Potential of the Metaverse
Empathic Computing: Delivering the Potential of the Metaverse
Mark Billinghurst478 views
handbook for web 3 adoption.pdf by Liveplex
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdf
Liveplex22 views

ContainerDays Boston 2015: "CoreOS: Building the Layers of the Scalable Cluster for Containers" (Barak Michener)