SlideShare ist ein Scribd-Unternehmen logo
1 von 64
Downloaden Sie, um offline zu lesen
Maciej Lasyk 
Jesień Linuksowa 2014 
Szczyrk, 2014-11-09 
Maciej Lasyk, Docker containers at scale 
1/64 
Orchestrating Docker containers at scale
Join Fedora Infrastructure! 
- learn Ansible 
- learn Docker with Fedora Dockerfiles 
http://fedoraproject.org/en/join-fedora 
Maciej Lasyk, Docker containers at scale 2/64
Agenda 
- Why use Docker? 
- Brief history of envs evolution 
- Docker – what is it? 
- To PaaS or not to PaaS 
- Orchestration at scale 
Maciej Lasyk, Docker containers at scale 3/64
Quick survey 
- How many of you... 
- Knows what Docker is? 
- Played with Docker? 
- Runs it on production? 
Maciej Lasyk, Docker containers at scale 
4/64
Why use Docker? 
With Docker we can solve many problems 
- “it works on my machine” 
- reducing build & deploy time 
- Infrastructure configuration spaghetti – automation! 
- Libs dependency hell 
- Cost control and granularity 
Maciej Lasyk, Docker containers at scale 
5/64
A brief story of envs evolution 
- classical approach (for & scp/ssh & conf.d) 
- configuration management 
- Bare vs IaaS vs PaaS 
- Continuous Integration 
- So when to use Docker? 
Maciej Lasyk, Docker containers at scale 
6/64
Docker – what is it? 
Maciej Lasyk, Docker containers at scale 7/64
Docker – what is it? 
“automates the deployment of any 
application as a lightweight, portable, 
self-sufficient container 
that will run virtually anywhere” 
Maciej Lasyk, Docker containers at scale 8/64
Docker – what is it? 
Java’s promise: Write Once. Run Anywhere. 
Even on Windows now! 
https://blog.docker.com/2014/10/docker-microsoft-partner-distributed-applications/ 
Maciej Lasyk, Docker containers at scale 
9/64
Docker – what is it? 
Docker is lightweight 
====================================================== 
Package Arch Version Repository Size 
====================================================== 
Installing: 
docker-io x86_64 1.3.0-1.fc20 updates 4.3 M 
Maciej Lasyk, Docker containers at scale 
10/64
Docker – what is it? 
http://sattia.blogspot.com/2014/05/docker-lightweight-linux-containers-for.html 
Maciej Lasyk, Docker containers at scale 11/64
Docker – how it works? 
http://blog.docker.com/2014/03/docker-0-9-introducing-execution-drivers-and-libcontainer/ 
Maciej Lasyk, Docker containers at scale 12/64
Docker – how it works? 
- LXC & libcontainer 
- control groups 
- kernel namespaces 
- layered filesystem 
- btrfs 
- devmapper thin provisioning & loopback mounts 
- no more AUFS 
- http://developerblog.redhat.com/2014/09/30/overview-storage-scalability-docker/ 
Maciej Lasyk, Docker containers at scale 13/64
Docker – concepts 
- images 
- read only 
- act as templates 
- Dockerfile 
- like a makefile 
- commands order & cache'ing 
- extends the base image 
- results in a new image 
- Containers: instances running apps 
dockerfile + base image = docker container 
Maciej Lasyk, Docker containers at scale 14/64
Dockerfile 
FROM fedora 
MAINTAINER scollier <scollier@redhat.com> 
RUN yum -y update && yum clean all 
RUN yum -y install nginx && yum clean all 
RUN echo "daemon off;" >> /etc/nginx/nginx.conf 
RUN echo "nginx on Fedora" > /srv/www/index.html 
EXPOSE 80 
CMD [ "/usr/sbin/nginx" ] 
Maciej Lasyk, Docker containers at scale 15/64
Docker – registry 
http://osv.io/blog/blog/2014/06/19/containers-hypervisors-part-2/ 
Maciej Lasyk, Docker containers at scale 16/64
Docker – registry 
- git like semantics 
- pull, push, commit 
- private and public registry 
- https://github.com/dotcloud/docker-registry 
- yum install docker-registry 
$ docker pull 
$ docker push 
$ docker commit 
Maciej Lasyk, Docker containers at scale 17/64
Docker – images hierarchy 
base image 
-> child image 
-> grandchild image 
Git’s promise: Tiny footprint with 
lightning fast performance 
Maciej Lasyk, Docker containers at scale 
18/64
Docker – images hierarchy 
http://blog.octo.com/en/docker-registry-first-steps/ 
Maciej Lasyk, Docker containers at scale 19/64
Docker – security 
- Isolation via kernel namespaces 
- Additional layer of security: SELinux / AppArmor / GRSEC 
- Each container gets own network stack 
- control groups for resources limiting 
f20 policy: https://git.fedorahosted.org/cgit/selinux-policy.git/tree/docker.te?h=f20-contrib 
What's there? 
seinfo -t -x | grep docker 
sesearch -A -s docker_t (and the rest) 
or just unpack docker.pp with semodule_unpackage 
Maciej Lasyk, Docker containers at scale 20/64
Docker – use cases 
CI Stack 
http://sattia.blogspot.com/2014/05/docker-lightweight-linux-containers-for.html 
Maciej Lasyk, Docker containers at scale 21/64
Docker – use cases 
Continuous Integration 
- local dev 
- with Docker it's easy to standardize envs 
- deployment 
- rolling updates (e.g. w/Ansible) 
- testing 
- unit testing of any commit on dedicated env 
- don't worry about cleaning up after testing 
- parrarelized tests across any machines 
Maciej Lasyk, Docker containers at scale 22/64
Docker – use cases 
- version control system for apps 
- microservices 
- Docker embraces granularity 
- Services can be deployed independently and faster 
- parallelized tests across any machines 
- continuous delivery 
- PaaS 
Maciej Lasyk, Docker containers at scale 23/64
Docker – history 
- 2013-01: dotCloud worked on own PaaS (Python based) 
- 2013-03: Docker went public (AUFS, LXC) 
- middle 2013: Red Hat joined, devmapper, SELinux 
- late 2013: removed LXC, rewritten in Go 
- 2014-02: stable 1.0 
Maciej Lasyk, Docker containers at scale 24/64
Docker – popularity 
Maciej Lasyk, Docker containers at scale 25/64
Docker – popularity 
Maciej Lasyk, Docker containers at scale 26/64
Orchestration at scale w/Docker 
Maciej Lasyk, Docker containers at scale 27/64
Orchestration at scale w/Docker 
This might be a little problem 
Maciej Lasyk, Docker containers at scale 28/64
Orchestration at scale w/Docker 
This might be a little problem 
Maciej Lasyk, Docker containers at scale 29/64
Orchestration at scale w/Docker 
Maciej Lasyk, Docker containers at scale 30/64
http://www.cloudssky.com/en/blog/Docker-Is-Not-Enough 
Maciej Lasyk, Docker containers at scale 31/64
To Paas or not to PaaS? 
Maciej Lasyk, Docker containers at scale 32/64
To Paas or not to PaaS? 
- you think PaaS will solve your problems? 
- it will rather clone them :) 
- running PaaS might be easy 
- operating PaaS will be tough 
- so is operating your apps tough enough to move? 
- private PaaS or not? 
- Rainbow and Unicorn Piss: 
http://blog.lusis.org/blog/2014/06/14/paas-for-realists/ 
Maciej Lasyk, Docker containers at scale 
33/64
To Paas or not to PaaS? 
Maciej Lasyk, Docker containers at scale 
- flynn.io 
- Open source PaaS (Go) 
- Uses Docker to manage containers 
- Git push deployment 
- https://flynn.io 
- dokku 
- The smallest PaaS implementation you've ever seen 
- Less than 100 lines of Bash 
- Git push deployment 
- https://github.com/progrium/dokku 
- deis.io 
- Open source PaaS (Python) 
- Git push deployment 
- On top of CoreOS w/ Docker 
- http://deis.io/ 
34/64
To Paas or not to PaaS? 
Remember, that PaaS might fail; plan & test for disaster ! 
Maciej Lasyk, Docker containers at scale 35/64
Docker & CLI 
$ docker run -t -i fedora /bin/bash 
> yum -y update 
> yum -y install nginx 
$ docker commit 73fa45674fd docent/fedora 
Maciej Lasyk, Docker containers at scale 36/64
Docker & CLI 
Or via Dockerfile: 
$ docker build -t fedora –rm . 
$ docker run --name=nginx fedora 
Maciej Lasyk, Docker containers at scale 37/64
FIG 
- http://www.fig.sh 
- for single host env 
Maciej Lasyk, Docker containers at scale 38/64
FIG 
- http://www.fig.sh 
- for single host env 
FROM python:2.7 
ENV PYTHONUNBUFFERED 1 
RUN mkdir /code 
WORKDIR /code 
ADD requirements.txt /code/ 
RUN pip install -r requirements.txt 
ADD . /code/ 
Maciej Lasyk, Docker containers at scale 39/64
FIG 
db: 
image: postgres 
web: 
build: . 
command: python manage.py 
runserver 0.0.0.0:8000 
volumes: 
- /srv/app/code:/code 
ports: 
- "8000:8000" 
links: 
- db 
Maciej Lasyk, Docker containers at scale 40/64
FIG 
$ fig run web django-admin.py startproject figexample . 
$ fig up 
Management during runtime? 
$ fig run web python manage.py syncdb 
Maciej Lasyk, Docker containers at scale 41/64
Docker & Ansible 
Ansible + Docker 
Vs 
Docker + Ansible 
Maciej Lasyk, Docker containers at scale 42/64
Docker & Ansible 
Ansible docker core module: 
http://docs.ansible.com/docker_module.html 
- hosts: web 
sudo: yes 
tasks: 
- name: run tomcat servers 
docker: > 
image=centos 
command="service tomcat6 start" 
ports=8080 
count=5 
memory_limit=128MB 
link=mysql 
expose=8080 
registry=... 
volume=... 
Maciej Lasyk, Docker containers at scale 43/64
Docker & Ansible 
Building image with Ansible: 
FROM ansible/centos7-ansible:stable 
ADD ansible /srv/example/ 
WORKDIR /srv/example 
RUN ansible-playbook web.yml -c local 
EXPOSE 80 
ENTRYPOINT ["/usr/sbin/nginx", "-DFOREGROUND"] 
ansible/web.yml: 
- hosts: localhost 
tasks: 
- yum: pkg=nginx state=latest 
- copy: 
src: web.conf 
dest: /etc/nginx/conf.d/web.conf 
group: "nginx" 
mode: "0644" 
Maciej Lasyk, Docker containers at scale 
44/64
CoreOS 
- Designedfor massive server deployments 
- Support Docker container out of the box 
- Available onLinux, Mac, and Windows 
- It's a Chrome OS fork 
- Consists of couple of components: 
- SystemD – not just a init system ;) 
- Fleet – cluster level manager & scheduler 
- etcd – light & distributed key / value store 
- Docker – the only packaging method in CoreOS 
Maciej Lasyk, Docker containers at scale 45/64
CoreOS 
Fleet – cluster level manager & scheduler 
https://coreos.com/using-coreos/clustering/ 
Maciej Lasyk, Docker containers at scale 46/64
CoreOS 
etcd – light & distributed key / value store 
(used for configuration store) 
https://coreos.com/docs/#cluster-management 
Maciej Lasyk, Docker containers at scale 47/64
CoreOS 
Docker – the only 
packaging method 
in CoreOS 
Maciej Lasyk, Docker containers at scale 48/64
CoreOS 
Maciej Lasyk, Docker containers at scale 49/64
CoreOS 
Cluster management with Fleet & SystemD 
[Unit] 
Description=My Service 
After=docker.service 
[Service] 
TimeoutStartSec=0 
ExecStartPre=-/usr/bin/docker kill hello 
ExecStartPre=-/usr/bin/docker rm hello 
ExecStartPre=/usr/bin/docker pull busybox 
ExecStart=/usr/bin/docker run --name hello busybox /bin/sh -c 
"while true; do echo Hello World; sleep 1; done" 
ExecStop=/usr/bin/docker stop hello 
Maciej Lasyk, Docker containers at scale 50/64
CoreOS 
Cluster management with Fleet & SystemD 
$ fleetctl load hello.service 
Unit hello.service loaded on 8145ebb7.../10.10.1.3 
$ fleetctl start hello.service 
Unit hello.service launched on 8145ebb7.../10.10.1.3 
$ fleetctl list-machines 
MACHINE IP METADATA 
148a18ff-6e95-4cd8-92da-c9de9bb90d5a 10.10.1.1 - 
491586a6-508f-4583-a71d-bfc4d146e996 10.10.1.2 - 
c9de9451-6a6f-1d80-b7e6-46e996bfc4d1 10.10.1.3 - 
$ fleetctl list-units 
UNIT MACHINE ACTIVE SUB 
hello.service c9de9451.../10.10.1.3 active running 
Maciej Lasyk, Docker containers at scale 51/64
CoreOS 
- scheduler 
- HA 
- dependencies 
https://coreos.com/docs/launching-containers/launching/launching-containers-fleet/ 
Maciej Lasyk, Docker containers at scale 52/64
Kubernetes 
- https://github.com/GoogleCloudPlatform/kubernetes 
- Advanced cluster manager (more than 1k hosts is a fit) 
- Architecture: 
- master 
- minion 
- pod 
- replication controller 
- label 
Maciej Lasyk, Docker containers at scale 53/64
Kubernetes 
Maciej Lasyk, Docker containers at scale 54/64
SmartStack 
- automated service discovery and registration framework 
- ideal for SOA architectures 
- ideal for continuous integration & delivery 
- solves “works on my machine” problem 
haproxy + nerve + synapse + zookeper = smartstack 
Maciej Lasyk, Docker containers at scale 56/64
SmartStack 
Synapse 
- discovery service (via zookeeper or etcd) 
- installed on every node 
- writes haproxy configuration 
- application doesn't have to be aware of this 
- works same on bare / VM / docker 
- https://github.com/airbnb/nerve 
Maciej Lasyk, Docker containers at scale 57/64
SmartStack 
Maciej Lasyk, Docker containers at scale 58/64
SmartStack 
Nerve 
- health checks (pluggable) 
- register service info to zookeper (or etcd) 
- https://github.com/airbnb/synapse 
Maciej Lasyk, Docker containers at scale 59/64
SmartStack 
Maciej Lasyk, Docker containers at scale 60/64
Summary 
Maciej Lasyk, Docker containers at scale 61/64
Summary 
w/ Docker Sky is the limit! 
Maciej Lasyk, Docker containers at scale 
61/64
Freenode #docker 
Krk DevOPS meetups (http://www.meetup.com/Krakow-DevOps/) 
https://github.com/docker/docker 
Maciej Lasyk, Docker containers at scale 62/64
sources? 
- docker.io documentation 
- dockerbook.com 
- slideshare! 
- zounds of blogposts (urls provided) 
- and some experience ;) 
Maciej Lasyk, Docker containers at scale 63/64
Thank you :) 
Orchestrating Docker containers at scale 
Maciej Lasyk 
Jesień Linuksowa 2014 
2014-11-09, Szczyrk 
http://maciej.lasyk.info 
maciej@lasyk.info 
@docent-net 
Maciej Lasyk, Docker containers at scale 64/64

Weitere ähnliche Inhalte

Was ist angesagt?

Basic docker for developer
Basic docker for developerBasic docker for developer
Basic docker for developerWeerayut Hongsa
 
Docker - The Linux Container
Docker - The Linux ContainerDocker - The Linux Container
Docker - The Linux ContainerBalaji Rajan
 
Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned  Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned RightScale
 
Docker introduction
Docker introductionDocker introduction
Docker introductionLayne Peng
 
Docker from A to Z, including Swarm and OCCS
Docker from A to Z, including Swarm and OCCSDocker from A to Z, including Swarm and OCCS
Docker from A to Z, including Swarm and OCCSFrank Munz
 
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...dotCloud
 
Docker introduction
Docker introductionDocker introduction
Docker introductionPhuc Nguyen
 
Docker and containers : Disrupting the virtual machine(VM)
Docker and containers : Disrupting the virtual machine(VM)Docker and containers : Disrupting the virtual machine(VM)
Docker and containers : Disrupting the virtual machine(VM)Rama Krishna B
 
Shipping Applications to Production in Containers with Docker
Shipping Applications to Production in Containers with DockerShipping Applications to Production in Containers with Docker
Shipping Applications to Production in Containers with DockerJérôme Petazzoni
 
Architecting .NET Applications for Docker and Container Based Deployments
Architecting .NET Applications for Docker and Container Based DeploymentsArchitecting .NET Applications for Docker and Container Based Deployments
Architecting .NET Applications for Docker and Container Based DeploymentsBen Hall
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to DockerAlan Forbes
 
Visualising Basic Concepts of Docker
Visualising Basic Concepts of Docker Visualising Basic Concepts of Docker
Visualising Basic Concepts of Docker vishnu rao
 
Intro to containerization
Intro to containerizationIntro to containerization
Intro to containerizationBalint Pato
 
Docker and the Linux Kernel
Docker and the Linux KernelDocker and the Linux Kernel
Docker and the Linux KernelDocker, Inc.
 
Introduction to Docker
Introduction  to DockerIntroduction  to Docker
Introduction to DockerJian Wu
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with dockerLalatendu Mohanty
 
Docker for the new Era: Introducing Docker,its components and tools
Docker for the new Era: Introducing Docker,its components and toolsDocker for the new Era: Introducing Docker,its components and tools
Docker for the new Era: Introducing Docker,its components and toolsRamit Surana
 

Was ist angesagt? (20)

Basic docker for developer
Basic docker for developerBasic docker for developer
Basic docker for developer
 
Docker - The Linux Container
Docker - The Linux ContainerDocker - The Linux Container
Docker - The Linux Container
 
Docker
DockerDocker
Docker
 
Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned  Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Docker from A to Z, including Swarm and OCCS
Docker from A to Z, including Swarm and OCCSDocker from A to Z, including Swarm and OCCS
Docker from A to Z, including Swarm and OCCS
 
Docker From Scratch
Docker From ScratchDocker From Scratch
Docker From Scratch
 
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
JOSA TechTalk: Introduction to docker
JOSA TechTalk: Introduction to dockerJOSA TechTalk: Introduction to docker
JOSA TechTalk: Introduction to docker
 
Docker and containers : Disrupting the virtual machine(VM)
Docker and containers : Disrupting the virtual machine(VM)Docker and containers : Disrupting the virtual machine(VM)
Docker and containers : Disrupting the virtual machine(VM)
 
Shipping Applications to Production in Containers with Docker
Shipping Applications to Production in Containers with DockerShipping Applications to Production in Containers with Docker
Shipping Applications to Production in Containers with Docker
 
Architecting .NET Applications for Docker and Container Based Deployments
Architecting .NET Applications for Docker and Container Based DeploymentsArchitecting .NET Applications for Docker and Container Based Deployments
Architecting .NET Applications for Docker and Container Based Deployments
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Visualising Basic Concepts of Docker
Visualising Basic Concepts of Docker Visualising Basic Concepts of Docker
Visualising Basic Concepts of Docker
 
Intro to containerization
Intro to containerizationIntro to containerization
Intro to containerization
 
Docker and the Linux Kernel
Docker and the Linux KernelDocker and the Linux Kernel
Docker and the Linux Kernel
 
Introduction to Docker
Introduction  to DockerIntroduction  to Docker
Introduction to Docker
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with docker
 
Docker for the new Era: Introducing Docker,its components and tools
Docker for the new Era: Introducing Docker,its components and toolsDocker for the new Era: Introducing Docker,its components and tools
Docker for the new Era: Introducing Docker,its components and tools
 

Andere mochten auch

Orchestration tool roundup kubernetes vs. docker vs. heat vs. terra form vs...
Orchestration tool roundup   kubernetes vs. docker vs. heat vs. terra form vs...Orchestration tool roundup   kubernetes vs. docker vs. heat vs. terra form vs...
Orchestration tool roundup kubernetes vs. docker vs. heat vs. terra form vs...Nati Shalom
 
The Future of Everything
The Future of EverythingThe Future of Everything
The Future of EverythingMichael Ducy
 
Progama de formación tecnico en sistemas 865244
Progama de formación tecnico en sistemas 865244Progama de formación tecnico en sistemas 865244
Progama de formación tecnico en sistemas 865244David Rojas
 
Primer Paquete Económico 2017 Zacatecas (2/9)
Primer Paquete Económico 2017 Zacatecas (2/9)Primer Paquete Económico 2017 Zacatecas (2/9)
Primer Paquete Económico 2017 Zacatecas (2/9)Zacatecas TresPuntoCero
 
Gfpi f-019 guia de aprendizaje 01 tda orientar fpi
Gfpi f-019 guia de aprendizaje 01 tda orientar fpiGfpi f-019 guia de aprendizaje 01 tda orientar fpi
Gfpi f-019 guia de aprendizaje 01 tda orientar fpilisbet bravo
 
JULIOPARI - Elaborando un Plan de Negocios
JULIOPARI - Elaborando un Plan de NegociosJULIOPARI - Elaborando un Plan de Negocios
JULIOPARI - Elaborando un Plan de NegociosJulio Pari
 
Onderzoeksrapport acrs v3.0_definitief
Onderzoeksrapport acrs v3.0_definitiefOnderzoeksrapport acrs v3.0_definitief
Onderzoeksrapport acrs v3.0_definitiefrloggen
 
Como hacer un plan de negocios
Como hacer un plan de negociosComo hacer un plan de negocios
Como hacer un plan de negociosXPINNERPablo
 
Schrijven voor het web
Schrijven voor het webSchrijven voor het web
Schrijven voor het webSimone Levie
 
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA... ..
 
Estrategias competitivas básicas
Estrategias competitivas básicasEstrategias competitivas básicas
Estrategias competitivas básicasLarryJimenez
 
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda..... ..
 

Andere mochten auch (20)

Container orchestration
Container orchestrationContainer orchestration
Container orchestration
 
Orchestration tool roundup kubernetes vs. docker vs. heat vs. terra form vs...
Orchestration tool roundup   kubernetes vs. docker vs. heat vs. terra form vs...Orchestration tool roundup   kubernetes vs. docker vs. heat vs. terra form vs...
Orchestration tool roundup kubernetes vs. docker vs. heat vs. terra form vs...
 
The Future of Everything
The Future of EverythingThe Future of Everything
The Future of Everything
 
Speciale 2. udgave
Speciale 2. udgaveSpeciale 2. udgave
Speciale 2. udgave
 
Libro el pequeño vampiro
Libro   el pequeño vampiroLibro   el pequeño vampiro
Libro el pequeño vampiro
 
Progama de formación tecnico en sistemas 865244
Progama de formación tecnico en sistemas 865244Progama de formación tecnico en sistemas 865244
Progama de formación tecnico en sistemas 865244
 
Primer Paquete Económico 2017 Zacatecas (2/9)
Primer Paquete Económico 2017 Zacatecas (2/9)Primer Paquete Económico 2017 Zacatecas (2/9)
Primer Paquete Económico 2017 Zacatecas (2/9)
 
Gfpi f-019 guia de aprendizaje 01 tda orientar fpi
Gfpi f-019 guia de aprendizaje 01 tda orientar fpiGfpi f-019 guia de aprendizaje 01 tda orientar fpi
Gfpi f-019 guia de aprendizaje 01 tda orientar fpi
 
Geheugen verbeteren
Geheugen verbeterenGeheugen verbeteren
Geheugen verbeteren
 
JULIOPARI - Elaborando un Plan de Negocios
JULIOPARI - Elaborando un Plan de NegociosJULIOPARI - Elaborando un Plan de Negocios
JULIOPARI - Elaborando un Plan de Negocios
 
Tears In The Rain
Tears In The RainTears In The Rain
Tears In The Rain
 
Onderzoeksrapport acrs v3.0_definitief
Onderzoeksrapport acrs v3.0_definitiefOnderzoeksrapport acrs v3.0_definitief
Onderzoeksrapport acrs v3.0_definitief
 
Como hacer un plan de negocios
Como hacer un plan de negociosComo hacer un plan de negocios
Como hacer un plan de negocios
 
Schrijven voor het web
Schrijven voor het webSchrijven voor het web
Schrijven voor het web
 
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.
Evidence: Describing my kitchen. ENGLISH DOT WORKS 2. SENA.
 
Estrategias competitivas básicas
Estrategias competitivas básicasEstrategias competitivas básicas
Estrategias competitivas básicas
 
Cápsula 1. estudios de mercado
Cápsula 1. estudios de mercadoCápsula 1. estudios de mercado
Cápsula 1. estudios de mercado
 
Rodriguez alvarez
Rodriguez alvarezRodriguez alvarez
Rodriguez alvarez
 
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...
2. describing cities and places. ENGLISH DOT WORKS 2. SENA. semana 4 acitivda...
 
Capacitacion y adiestramiento
Capacitacion y adiestramientoCapacitacion y adiestramiento
Capacitacion y adiestramiento
 

Ähnlich wie Orchestrating Docker containers at scale

Orchestrating docker containers at scale (PJUG edition)
Orchestrating docker containers at scale (PJUG edition)Orchestrating docker containers at scale (PJUG edition)
Orchestrating docker containers at scale (PJUG edition)Maciej Lasyk
 
Orchestrating docker containers at scale (#DockerKRK edition)
Orchestrating docker containers at scale (#DockerKRK edition)Orchestrating docker containers at scale (#DockerKRK edition)
Orchestrating docker containers at scale (#DockerKRK edition)Maciej Lasyk
 
Dockerizing a Symfony2 application
Dockerizing a Symfony2 applicationDockerizing a Symfony2 application
Dockerizing a Symfony2 applicationRoman Rodomansky
 
VMware@Night Container and Virtualization
VMware@Night Container and VirtualizationVMware@Night Container and Virtualization
VMware@Night Container and VirtualizationOpvizor, Inc.
 
VMware@Night: Container & Virtualisierung
VMware@Night: Container & VirtualisierungVMware@Night: Container & Virtualisierung
VMware@Night: Container & VirtualisierungDigicomp Academy AG
 
Docker for Deep Learning (Andrea Panizza)
Docker for Deep Learning (Andrea Panizza)Docker for Deep Learning (Andrea Panizza)
Docker for Deep Learning (Andrea Panizza)MeetupDataScienceRoma
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peekmsyukor
 
Linux containers & Devops
Linux containers & DevopsLinux containers & Devops
Linux containers & DevopsMaciej Lasyk
 
Agile Brown Bag - Vagrant & Docker: Introduction
Agile Brown Bag - Vagrant & Docker: IntroductionAgile Brown Bag - Vagrant & Docker: Introduction
Agile Brown Bag - Vagrant & Docker: IntroductionAgile Partner S.A.
 
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on Azure
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on AzureDocker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on Azure
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on AzurePatrick Chanezon
 
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure Patrick Chanezon
 
codemotion-docker-2014
codemotion-docker-2014codemotion-docker-2014
codemotion-docker-2014Carlo Bonamico
 
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...Patrick Chanezon
 
BBL Premiers pas avec Docker
BBL Premiers pas avec DockerBBL Premiers pas avec Docker
BBL Premiers pas avec Dockerkanedafromparis
 
[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안양재동 코드랩
 
Docker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps DevelopmentDocker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps Developmentmsyukor
 
Why everyone is excited about Docker (and you should too...) - Carlo Bonamic...
Why everyone is excited about Docker (and you should too...) -  Carlo Bonamic...Why everyone is excited about Docker (and you should too...) -  Carlo Bonamic...
Why everyone is excited about Docker (and you should too...) - Carlo Bonamic...Codemotion
 
Docker DANS workshop
Docker DANS workshopDocker DANS workshop
Docker DANS workshopvty
 
RHEL/Fedora + Docker (and SELinux)
RHEL/Fedora + Docker (and SELinux)RHEL/Fedora + Docker (and SELinux)
RHEL/Fedora + Docker (and SELinux)Maciej Lasyk
 

Ähnlich wie Orchestrating Docker containers at scale (20)

Orchestrating docker containers at scale (PJUG edition)
Orchestrating docker containers at scale (PJUG edition)Orchestrating docker containers at scale (PJUG edition)
Orchestrating docker containers at scale (PJUG edition)
 
Orchestrating docker containers at scale (#DockerKRK edition)
Orchestrating docker containers at scale (#DockerKRK edition)Orchestrating docker containers at scale (#DockerKRK edition)
Orchestrating docker containers at scale (#DockerKRK edition)
 
Dockerizing a Symfony2 application
Dockerizing a Symfony2 applicationDockerizing a Symfony2 application
Dockerizing a Symfony2 application
 
VMware@Night Container and Virtualization
VMware@Night Container and VirtualizationVMware@Night Container and Virtualization
VMware@Night Container and Virtualization
 
VMware@Night: Container & Virtualisierung
VMware@Night: Container & VirtualisierungVMware@Night: Container & Virtualisierung
VMware@Night: Container & Virtualisierung
 
Docker Ecosystem on Azure
Docker Ecosystem on AzureDocker Ecosystem on Azure
Docker Ecosystem on Azure
 
Docker for Deep Learning (Andrea Panizza)
Docker for Deep Learning (Andrea Panizza)Docker for Deep Learning (Andrea Panizza)
Docker for Deep Learning (Andrea Panizza)
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peek
 
Linux containers & Devops
Linux containers & DevopsLinux containers & Devops
Linux containers & Devops
 
Agile Brown Bag - Vagrant & Docker: Introduction
Agile Brown Bag - Vagrant & Docker: IntroductionAgile Brown Bag - Vagrant & Docker: Introduction
Agile Brown Bag - Vagrant & Docker: Introduction
 
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on Azure
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on AzureDocker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on Azure
Docker Seattle Meetup April 2015 - The Docker Orchestration Ecosystem on Azure
 
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure
Docker New York Meetup May 2015 - The Docker Orchestration Ecosystem on Azure
 
codemotion-docker-2014
codemotion-docker-2014codemotion-docker-2014
codemotion-docker-2014
 
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
 
BBL Premiers pas avec Docker
BBL Premiers pas avec DockerBBL Premiers pas avec Docker
BBL Premiers pas avec Docker
 
[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안
 
Docker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps DevelopmentDocker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps Development
 
Why everyone is excited about Docker (and you should too...) - Carlo Bonamic...
Why everyone is excited about Docker (and you should too...) -  Carlo Bonamic...Why everyone is excited about Docker (and you should too...) -  Carlo Bonamic...
Why everyone is excited about Docker (and you should too...) - Carlo Bonamic...
 
Docker DANS workshop
Docker DANS workshopDocker DANS workshop
Docker DANS workshop
 
RHEL/Fedora + Docker (and SELinux)
RHEL/Fedora + Docker (and SELinux)RHEL/Fedora + Docker (and SELinux)
RHEL/Fedora + Docker (and SELinux)
 

Mehr von Maciej Lasyk

Programowanie AWSa z CLI, boto, Ansiblem i libcloudem
Programowanie AWSa z CLI, boto, Ansiblem i libcloudemProgramowanie AWSa z CLI, boto, Ansiblem i libcloudem
Programowanie AWSa z CLI, boto, Ansiblem i libcloudemMaciej Lasyk
 
Co powinieneś wiedzieć na temat devops?f
Co powinieneś wiedzieć na temat devops?f Co powinieneś wiedzieć na temat devops?f
Co powinieneś wiedzieć na temat devops?f Maciej Lasyk
 
"Containers do not contain"
"Containers do not contain""Containers do not contain"
"Containers do not contain"Maciej Lasyk
 
Under the Dome (of failure driven pipeline)
Under the Dome (of failure driven pipeline)Under the Dome (of failure driven pipeline)
Under the Dome (of failure driven pipeline)Maciej Lasyk
 
Continuous Security in DevOps
Continuous Security in DevOpsContinuous Security in DevOps
Continuous Security in DevOpsMaciej Lasyk
 
About cultural change w/Devops
About cultural change w/DevopsAbout cultural change w/Devops
About cultural change w/DevopsMaciej Lasyk
 
Ghost in the shell
Ghost in the shellGhost in the shell
Ghost in the shellMaciej Lasyk
 
Scaling and securing node.js apps
Scaling and securing node.js appsScaling and securing node.js apps
Scaling and securing node.js appsMaciej Lasyk
 
High Availability (HA) Explained - second edition
High Availability (HA) Explained - second editionHigh Availability (HA) Explained - second edition
High Availability (HA) Explained - second editionMaciej Lasyk
 
Monitoring with Nagios and Ganglia
Monitoring with Nagios and GangliaMonitoring with Nagios and Ganglia
Monitoring with Nagios and GangliaMaciej Lasyk
 
Stop disabling SELinux!
Stop disabling SELinux!Stop disabling SELinux!
Stop disabling SELinux!Maciej Lasyk
 
High Availability (HA) Explained
High Availability (HA) ExplainedHigh Availability (HA) Explained
High Availability (HA) ExplainedMaciej Lasyk
 
Shall we play a game? PL version
Shall we play a game? PL versionShall we play a game? PL version
Shall we play a game? PL versionMaciej Lasyk
 
Shall we play a game?
Shall we play a game?Shall we play a game?
Shall we play a game?Maciej Lasyk
 

Mehr von Maciej Lasyk (18)

Rundeck & Ansible
Rundeck & AnsibleRundeck & Ansible
Rundeck & Ansible
 
Docker 1.11
Docker 1.11Docker 1.11
Docker 1.11
 
Programowanie AWSa z CLI, boto, Ansiblem i libcloudem
Programowanie AWSa z CLI, boto, Ansiblem i libcloudemProgramowanie AWSa z CLI, boto, Ansiblem i libcloudem
Programowanie AWSa z CLI, boto, Ansiblem i libcloudem
 
Co powinieneś wiedzieć na temat devops?f
Co powinieneś wiedzieć na temat devops?f Co powinieneś wiedzieć na temat devops?f
Co powinieneś wiedzieć na temat devops?f
 
"Containers do not contain"
"Containers do not contain""Containers do not contain"
"Containers do not contain"
 
Git Submodules
Git SubmodulesGit Submodules
Git Submodules
 
Under the Dome (of failure driven pipeline)
Under the Dome (of failure driven pipeline)Under the Dome (of failure driven pipeline)
Under the Dome (of failure driven pipeline)
 
Continuous Security in DevOps
Continuous Security in DevOpsContinuous Security in DevOps
Continuous Security in DevOps
 
About cultural change w/Devops
About cultural change w/DevopsAbout cultural change w/Devops
About cultural change w/Devops
 
Ghost in the shell
Ghost in the shellGhost in the shell
Ghost in the shell
 
Scaling and securing node.js apps
Scaling and securing node.js appsScaling and securing node.js apps
Scaling and securing node.js apps
 
Node.js security
Node.js securityNode.js security
Node.js security
 
High Availability (HA) Explained - second edition
High Availability (HA) Explained - second editionHigh Availability (HA) Explained - second edition
High Availability (HA) Explained - second edition
 
Monitoring with Nagios and Ganglia
Monitoring with Nagios and GangliaMonitoring with Nagios and Ganglia
Monitoring with Nagios and Ganglia
 
Stop disabling SELinux!
Stop disabling SELinux!Stop disabling SELinux!
Stop disabling SELinux!
 
High Availability (HA) Explained
High Availability (HA) ExplainedHigh Availability (HA) Explained
High Availability (HA) Explained
 
Shall we play a game? PL version
Shall we play a game? PL versionShall we play a game? PL version
Shall we play a game? PL version
 
Shall we play a game?
Shall we play a game?Shall we play a game?
Shall we play a game?
 

Kürzlich hochgeladen

Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...Neha Pandey
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...tanu pandey
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceDelhi Call girls
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft DatingDubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Datingkojalkojal131
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.soniya singh
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 

Kürzlich hochgeladen (20)

Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
 
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft DatingDubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 

Orchestrating Docker containers at scale

  • 1. Maciej Lasyk Jesień Linuksowa 2014 Szczyrk, 2014-11-09 Maciej Lasyk, Docker containers at scale 1/64 Orchestrating Docker containers at scale
  • 2. Join Fedora Infrastructure! - learn Ansible - learn Docker with Fedora Dockerfiles http://fedoraproject.org/en/join-fedora Maciej Lasyk, Docker containers at scale 2/64
  • 3. Agenda - Why use Docker? - Brief history of envs evolution - Docker – what is it? - To PaaS or not to PaaS - Orchestration at scale Maciej Lasyk, Docker containers at scale 3/64
  • 4. Quick survey - How many of you... - Knows what Docker is? - Played with Docker? - Runs it on production? Maciej Lasyk, Docker containers at scale 4/64
  • 5. Why use Docker? With Docker we can solve many problems - “it works on my machine” - reducing build & deploy time - Infrastructure configuration spaghetti – automation! - Libs dependency hell - Cost control and granularity Maciej Lasyk, Docker containers at scale 5/64
  • 6. A brief story of envs evolution - classical approach (for & scp/ssh & conf.d) - configuration management - Bare vs IaaS vs PaaS - Continuous Integration - So when to use Docker? Maciej Lasyk, Docker containers at scale 6/64
  • 7. Docker – what is it? Maciej Lasyk, Docker containers at scale 7/64
  • 8. Docker – what is it? “automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere” Maciej Lasyk, Docker containers at scale 8/64
  • 9. Docker – what is it? Java’s promise: Write Once. Run Anywhere. Even on Windows now! https://blog.docker.com/2014/10/docker-microsoft-partner-distributed-applications/ Maciej Lasyk, Docker containers at scale 9/64
  • 10. Docker – what is it? Docker is lightweight ====================================================== Package Arch Version Repository Size ====================================================== Installing: docker-io x86_64 1.3.0-1.fc20 updates 4.3 M Maciej Lasyk, Docker containers at scale 10/64
  • 11. Docker – what is it? http://sattia.blogspot.com/2014/05/docker-lightweight-linux-containers-for.html Maciej Lasyk, Docker containers at scale 11/64
  • 12. Docker – how it works? http://blog.docker.com/2014/03/docker-0-9-introducing-execution-drivers-and-libcontainer/ Maciej Lasyk, Docker containers at scale 12/64
  • 13. Docker – how it works? - LXC & libcontainer - control groups - kernel namespaces - layered filesystem - btrfs - devmapper thin provisioning & loopback mounts - no more AUFS - http://developerblog.redhat.com/2014/09/30/overview-storage-scalability-docker/ Maciej Lasyk, Docker containers at scale 13/64
  • 14. Docker – concepts - images - read only - act as templates - Dockerfile - like a makefile - commands order & cache'ing - extends the base image - results in a new image - Containers: instances running apps dockerfile + base image = docker container Maciej Lasyk, Docker containers at scale 14/64
  • 15. Dockerfile FROM fedora MAINTAINER scollier <scollier@redhat.com> RUN yum -y update && yum clean all RUN yum -y install nginx && yum clean all RUN echo "daemon off;" >> /etc/nginx/nginx.conf RUN echo "nginx on Fedora" > /srv/www/index.html EXPOSE 80 CMD [ "/usr/sbin/nginx" ] Maciej Lasyk, Docker containers at scale 15/64
  • 16. Docker – registry http://osv.io/blog/blog/2014/06/19/containers-hypervisors-part-2/ Maciej Lasyk, Docker containers at scale 16/64
  • 17. Docker – registry - git like semantics - pull, push, commit - private and public registry - https://github.com/dotcloud/docker-registry - yum install docker-registry $ docker pull $ docker push $ docker commit Maciej Lasyk, Docker containers at scale 17/64
  • 18. Docker – images hierarchy base image -> child image -> grandchild image Git’s promise: Tiny footprint with lightning fast performance Maciej Lasyk, Docker containers at scale 18/64
  • 19. Docker – images hierarchy http://blog.octo.com/en/docker-registry-first-steps/ Maciej Lasyk, Docker containers at scale 19/64
  • 20. Docker – security - Isolation via kernel namespaces - Additional layer of security: SELinux / AppArmor / GRSEC - Each container gets own network stack - control groups for resources limiting f20 policy: https://git.fedorahosted.org/cgit/selinux-policy.git/tree/docker.te?h=f20-contrib What's there? seinfo -t -x | grep docker sesearch -A -s docker_t (and the rest) or just unpack docker.pp with semodule_unpackage Maciej Lasyk, Docker containers at scale 20/64
  • 21. Docker – use cases CI Stack http://sattia.blogspot.com/2014/05/docker-lightweight-linux-containers-for.html Maciej Lasyk, Docker containers at scale 21/64
  • 22. Docker – use cases Continuous Integration - local dev - with Docker it's easy to standardize envs - deployment - rolling updates (e.g. w/Ansible) - testing - unit testing of any commit on dedicated env - don't worry about cleaning up after testing - parrarelized tests across any machines Maciej Lasyk, Docker containers at scale 22/64
  • 23. Docker – use cases - version control system for apps - microservices - Docker embraces granularity - Services can be deployed independently and faster - parallelized tests across any machines - continuous delivery - PaaS Maciej Lasyk, Docker containers at scale 23/64
  • 24. Docker – history - 2013-01: dotCloud worked on own PaaS (Python based) - 2013-03: Docker went public (AUFS, LXC) - middle 2013: Red Hat joined, devmapper, SELinux - late 2013: removed LXC, rewritten in Go - 2014-02: stable 1.0 Maciej Lasyk, Docker containers at scale 24/64
  • 25. Docker – popularity Maciej Lasyk, Docker containers at scale 25/64
  • 26. Docker – popularity Maciej Lasyk, Docker containers at scale 26/64
  • 27. Orchestration at scale w/Docker Maciej Lasyk, Docker containers at scale 27/64
  • 28. Orchestration at scale w/Docker This might be a little problem Maciej Lasyk, Docker containers at scale 28/64
  • 29. Orchestration at scale w/Docker This might be a little problem Maciej Lasyk, Docker containers at scale 29/64
  • 30. Orchestration at scale w/Docker Maciej Lasyk, Docker containers at scale 30/64
  • 32. To Paas or not to PaaS? Maciej Lasyk, Docker containers at scale 32/64
  • 33. To Paas or not to PaaS? - you think PaaS will solve your problems? - it will rather clone them :) - running PaaS might be easy - operating PaaS will be tough - so is operating your apps tough enough to move? - private PaaS or not? - Rainbow and Unicorn Piss: http://blog.lusis.org/blog/2014/06/14/paas-for-realists/ Maciej Lasyk, Docker containers at scale 33/64
  • 34. To Paas or not to PaaS? Maciej Lasyk, Docker containers at scale - flynn.io - Open source PaaS (Go) - Uses Docker to manage containers - Git push deployment - https://flynn.io - dokku - The smallest PaaS implementation you've ever seen - Less than 100 lines of Bash - Git push deployment - https://github.com/progrium/dokku - deis.io - Open source PaaS (Python) - Git push deployment - On top of CoreOS w/ Docker - http://deis.io/ 34/64
  • 35. To Paas or not to PaaS? Remember, that PaaS might fail; plan & test for disaster ! Maciej Lasyk, Docker containers at scale 35/64
  • 36. Docker & CLI $ docker run -t -i fedora /bin/bash > yum -y update > yum -y install nginx $ docker commit 73fa45674fd docent/fedora Maciej Lasyk, Docker containers at scale 36/64
  • 37. Docker & CLI Or via Dockerfile: $ docker build -t fedora –rm . $ docker run --name=nginx fedora Maciej Lasyk, Docker containers at scale 37/64
  • 38. FIG - http://www.fig.sh - for single host env Maciej Lasyk, Docker containers at scale 38/64
  • 39. FIG - http://www.fig.sh - for single host env FROM python:2.7 ENV PYTHONUNBUFFERED 1 RUN mkdir /code WORKDIR /code ADD requirements.txt /code/ RUN pip install -r requirements.txt ADD . /code/ Maciej Lasyk, Docker containers at scale 39/64
  • 40. FIG db: image: postgres web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: - /srv/app/code:/code ports: - "8000:8000" links: - db Maciej Lasyk, Docker containers at scale 40/64
  • 41. FIG $ fig run web django-admin.py startproject figexample . $ fig up Management during runtime? $ fig run web python manage.py syncdb Maciej Lasyk, Docker containers at scale 41/64
  • 42. Docker & Ansible Ansible + Docker Vs Docker + Ansible Maciej Lasyk, Docker containers at scale 42/64
  • 43. Docker & Ansible Ansible docker core module: http://docs.ansible.com/docker_module.html - hosts: web sudo: yes tasks: - name: run tomcat servers docker: > image=centos command="service tomcat6 start" ports=8080 count=5 memory_limit=128MB link=mysql expose=8080 registry=... volume=... Maciej Lasyk, Docker containers at scale 43/64
  • 44. Docker & Ansible Building image with Ansible: FROM ansible/centos7-ansible:stable ADD ansible /srv/example/ WORKDIR /srv/example RUN ansible-playbook web.yml -c local EXPOSE 80 ENTRYPOINT ["/usr/sbin/nginx", "-DFOREGROUND"] ansible/web.yml: - hosts: localhost tasks: - yum: pkg=nginx state=latest - copy: src: web.conf dest: /etc/nginx/conf.d/web.conf group: "nginx" mode: "0644" Maciej Lasyk, Docker containers at scale 44/64
  • 45. CoreOS - Designedfor massive server deployments - Support Docker container out of the box - Available onLinux, Mac, and Windows - It's a Chrome OS fork - Consists of couple of components: - SystemD – not just a init system ;) - Fleet – cluster level manager & scheduler - etcd – light & distributed key / value store - Docker – the only packaging method in CoreOS Maciej Lasyk, Docker containers at scale 45/64
  • 46. CoreOS Fleet – cluster level manager & scheduler https://coreos.com/using-coreos/clustering/ Maciej Lasyk, Docker containers at scale 46/64
  • 47. CoreOS etcd – light & distributed key / value store (used for configuration store) https://coreos.com/docs/#cluster-management Maciej Lasyk, Docker containers at scale 47/64
  • 48. CoreOS Docker – the only packaging method in CoreOS Maciej Lasyk, Docker containers at scale 48/64
  • 49. CoreOS Maciej Lasyk, Docker containers at scale 49/64
  • 50. CoreOS Cluster management with Fleet & SystemD [Unit] Description=My Service After=docker.service [Service] TimeoutStartSec=0 ExecStartPre=-/usr/bin/docker kill hello ExecStartPre=-/usr/bin/docker rm hello ExecStartPre=/usr/bin/docker pull busybox ExecStart=/usr/bin/docker run --name hello busybox /bin/sh -c "while true; do echo Hello World; sleep 1; done" ExecStop=/usr/bin/docker stop hello Maciej Lasyk, Docker containers at scale 50/64
  • 51. CoreOS Cluster management with Fleet & SystemD $ fleetctl load hello.service Unit hello.service loaded on 8145ebb7.../10.10.1.3 $ fleetctl start hello.service Unit hello.service launched on 8145ebb7.../10.10.1.3 $ fleetctl list-machines MACHINE IP METADATA 148a18ff-6e95-4cd8-92da-c9de9bb90d5a 10.10.1.1 - 491586a6-508f-4583-a71d-bfc4d146e996 10.10.1.2 - c9de9451-6a6f-1d80-b7e6-46e996bfc4d1 10.10.1.3 - $ fleetctl list-units UNIT MACHINE ACTIVE SUB hello.service c9de9451.../10.10.1.3 active running Maciej Lasyk, Docker containers at scale 51/64
  • 52. CoreOS - scheduler - HA - dependencies https://coreos.com/docs/launching-containers/launching/launching-containers-fleet/ Maciej Lasyk, Docker containers at scale 52/64
  • 53. Kubernetes - https://github.com/GoogleCloudPlatform/kubernetes - Advanced cluster manager (more than 1k hosts is a fit) - Architecture: - master - minion - pod - replication controller - label Maciej Lasyk, Docker containers at scale 53/64
  • 54. Kubernetes Maciej Lasyk, Docker containers at scale 54/64
  • 55. SmartStack - automated service discovery and registration framework - ideal for SOA architectures - ideal for continuous integration & delivery - solves “works on my machine” problem haproxy + nerve + synapse + zookeper = smartstack Maciej Lasyk, Docker containers at scale 56/64
  • 56. SmartStack Synapse - discovery service (via zookeeper or etcd) - installed on every node - writes haproxy configuration - application doesn't have to be aware of this - works same on bare / VM / docker - https://github.com/airbnb/nerve Maciej Lasyk, Docker containers at scale 57/64
  • 57. SmartStack Maciej Lasyk, Docker containers at scale 58/64
  • 58. SmartStack Nerve - health checks (pluggable) - register service info to zookeper (or etcd) - https://github.com/airbnb/synapse Maciej Lasyk, Docker containers at scale 59/64
  • 59. SmartStack Maciej Lasyk, Docker containers at scale 60/64
  • 60. Summary Maciej Lasyk, Docker containers at scale 61/64
  • 61. Summary w/ Docker Sky is the limit! Maciej Lasyk, Docker containers at scale 61/64
  • 62. Freenode #docker Krk DevOPS meetups (http://www.meetup.com/Krakow-DevOps/) https://github.com/docker/docker Maciej Lasyk, Docker containers at scale 62/64
  • 63. sources? - docker.io documentation - dockerbook.com - slideshare! - zounds of blogposts (urls provided) - and some experience ;) Maciej Lasyk, Docker containers at scale 63/64
  • 64. Thank you :) Orchestrating Docker containers at scale Maciej Lasyk Jesień Linuksowa 2014 2014-11-09, Szczyrk http://maciej.lasyk.info maciej@lasyk.info @docent-net Maciej Lasyk, Docker containers at scale 64/64