docker containers in azure

Post on 24-Jan-2017

165 Views

Category:

Software

2 Downloads

Preview:

Click to see full reader

TRANSCRIPT

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Azure Cloud User Group Switzerland 18.1.2017

Containers in Azure

Aarno AukiaVSHN AG

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Agenda

● About Aarno / VSHN● How were we running OSS applications

on Azure ?● Shortcomings & wishes● What is Docker, Kubernetes, OpenShift ?● Why use them ?● Examples

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Who

Aarno Aukia, CTO & co-founder

ETH → Google → Atrila → VSHN

@aarnoaukia http://about.me/aarno

VSHN - the DevOps Company

Since 2014: 17 people in Zürich

Running web applications on-premises and in the clouds making both visitors and developers happy

https://vshn.ch @vshn_ch

Opensource Azure partner

Docker Partner

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

How were we running OSS applications on Azure ?

Virtual servers

Managed by Puppet/Ansible

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Shortcomings

Scaling up/down takes manual effort & time

PHP/MySQL/Solr/ElasticSearch versions/plugins defined by configuration management for each server, not for each project/deployment and have to be communicated separately

Adding new technology (e.g. npm/grunt) is complex

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Wishful thinking...

Solves build-ship-run workflow, integrates in CI/CD, DevOps & self-service

Handles the standard software plattform problems: scaling, hitless deployment, monitoring, backup, etc

Open standards: 100% open source, backed by big community

No lock-in, free to choose any provider, works on any infrastructure

Extensible with API

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Docker

Lightweight container runtime

Package code, runtime, plugins, libraries

Helps you to use 12-Factor-App pattern (explicit entrypoint, port, volume configurations, see https://12factor.net)

Automatically built, quickly started, one-time use

https://blog.vshn.ch/2016/11/docker

https://github.com/docker/docker

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

From container to production ?

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Kubernetes

Container orchestrator:

How many of a kind should be running ?

On which IP/port/machine are they ?

How do they find each other ?

What happens when a container/machine running them disappears ?

Scaling, load balancing, rolling deployments

https://blog.vshn.ch/2016/08/openshift

https://github.com/kubernetes/kubernetes

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Container orchestration

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

OpenShift

How to get the application in the container ?

Web-GUI, CLI client, REST-API

https://blog.vshn.ch/2016/08/openshift

https://github.com/openshift/origin

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

OpenShift

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

APPUiO

Managed Docker, Kubernetes, OpenShift

Flavours: Big shared plattform in the cloud, private plattform in the cloud or on-premises

Hosted in Switzerland (ISO/FINMA-certified) or whereever you want (Azure)

Community for Developers and Operations, Dev & Ops = DevOps

Free monthly half-day training TechLabs

Starting at CHF 40/mt in Switzerland

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Why?

You have full control over the container contents → no more old versions by the hosting provider

You control the build, deploy process from the GUI/CLI/API

Plattform takes care of seamless deployment, SSL, load balancing, scaling, system updates, monitoring, backups, hardware, storage, network, etc

You don't need to handle Docker, Kubernetes, OpenShift internals if you don't want to

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Demotime

Links:

https://github.com/arska/phpinfo.git

https://github.com/arska/example-php-sti-helloworld.git

https://github.com/arska/springdemo

https://github.com/arska/python-helloworld

VSHN AG I Neugasse 10 I 8005 Zürich I T 044 545 53 00 www.vshn.ch

Bonus

Creating a template:

oc export bc,is,svc,dc --as-template=mytemplate -o json

top related