Getting Started with
Kubernetes
Mohit Chhabra
Software Engineer
medialesson GmbH
AzureGuy.in
We help our customers digital
transform their business, products
and processes through consulting,
strategy, design, development,
training and operational services
using cutting edge technology.
Technology
& Services
Portfolio
Emerging
Technologies
Backend
Azure
Containers
• Lightweight alternative to virtual machines
• Smaller, less expensive, faster to start up, and self-contained
Host Operating System
Hypervisor
Guest OS
Libraries
App
Guest OS
Libraries
App
Guest OS
Libraries
App
Operating System
Container Engine
Libraries
App
Libraries
App
Libraries
App
Virtual Machines
Containers
Docker
• Leading open-source
containerization platform
• Supported natively in Azure
Docker containers wrap up a piece of software
in a complete filesystem that contains
everything it needs to run: code, runtime,
system tools, system libraries – anything you
can install on a server. This guarantees that it
will always run the same, regardless of the
environment it is running in
Docker Architecture
Docker CLI
• Command-line interface for Docker, available for Linux, OS X, and
Windows (available separately or as part of Docker Toolbox)
Running a Container
docker run -i -t ubuntu /bin/bash
Common Docker CLI Commands
docker run - Use an image to run a container
docker pull - Pull an image from a registry
docker build - Build a Docker image
docker exec - Execute a command in a container
docker stop - Stop a running container
docker images - List available Docker images
docker ps - List running Docker containers
Container Orchestration
• Facilitates deployment and management of containers
• Containers by design are intended to be deployed in large volumes
with some applications using dozens to even thousands of containers
• With this type of scale, automating container deployment and
management with orchestration software becomes necessary
• Azure Container service supports Kubernetes, DC/OS, and Docker
Swarm
Container Clusters
• Facilitate load balancing, scalability, and high availability
• A cluster is composed of master nodes which control the
orchestration, and agent nodes that host the containers
Docker Swarm
• Docker’s own orchestration engine
• Current releases of the Docker engine have
“Swarm Mode” built in and can many of the
same things that other orchestration engines do
• Lacks a GUI, but makes up for it with tight
integration with Docker
• Natively supported by Azure Container Service
K8S
Features
Container
Replication
Monitoring
Load
Balancing
Health
Check
Resource
Usage
Monitoring
Rolling
Updates
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes
Intro to docker and kubernetes

Intro to docker and kubernetes

  • 1.
    Getting Started with Kubernetes MohitChhabra Software Engineer medialesson GmbH AzureGuy.in
  • 2.
    We help ourcustomers digital transform their business, products and processes through consulting, strategy, design, development, training and operational services using cutting edge technology.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
    Containers • Lightweight alternativeto virtual machines • Smaller, less expensive, faster to start up, and self-contained Host Operating System Hypervisor Guest OS Libraries App Guest OS Libraries App Guest OS Libraries App Operating System Container Engine Libraries App Libraries App Libraries App Virtual Machines Containers
  • 10.
    Docker • Leading open-source containerizationplatform • Supported natively in Azure Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in
  • 11.
  • 12.
    Docker CLI • Command-lineinterface for Docker, available for Linux, OS X, and Windows (available separately or as part of Docker Toolbox)
  • 13.
    Running a Container dockerrun -i -t ubuntu /bin/bash
  • 14.
    Common Docker CLICommands docker run - Use an image to run a container docker pull - Pull an image from a registry docker build - Build a Docker image docker exec - Execute a command in a container docker stop - Stop a running container docker images - List available Docker images docker ps - List running Docker containers
  • 15.
    Container Orchestration • Facilitatesdeployment and management of containers • Containers by design are intended to be deployed in large volumes with some applications using dozens to even thousands of containers • With this type of scale, automating container deployment and management with orchestration software becomes necessary • Azure Container service supports Kubernetes, DC/OS, and Docker Swarm
  • 16.
    Container Clusters • Facilitateload balancing, scalability, and high availability • A cluster is composed of master nodes which control the orchestration, and agent nodes that host the containers
  • 17.
    Docker Swarm • Docker’sown orchestration engine • Current releases of the Docker engine have “Swarm Mode” built in and can many of the same things that other orchestration engines do • Lacks a GUI, but makes up for it with tight integration with Docker • Natively supported by Azure Container Service
  • 20.

Editor's Notes

  • #9 A virtual machine is -- well -- a virtualized machine created and managed by a hypervisor such as VirtualBox or Hyper-V. Even though a VM runs on a machine that has an operating system, each VM requires its own complete operating system, even if it's the same operating system as the host OS. VMs offer a very high degree of isolation, but at a cost: longer startup times, lower portability (ever tried to move a 127 GB virtual hard disk, or VHD, from one PC to another?), and higher memory requirements. Containers, by contrast, leverage the operating system that is already in place but offer nearly as much separation. RAM requirements are lower since the OS isn't being duplicated in each container, and cost is lower, too, because while cloud platforms typically charge for each VM, a single VM can host multiple container instances.
  • #11 Docker (www.docker.com) isn't the world's only containerization platform, but it is the most popular. It is free, open-source, and Linux-based, with Windows support (Windows Server 2016) in the works. It has earned massive mindshare in the developer community. And with Azure Container Service, you can deploy Docker containers to Azure with minimal effort. Moreover, Docker containers are easily moved between Azure and Amazon Web Services (AWS), affording developers portability between cloud platforms.
  • #12 Docker utilizes a client-server architecture. You execute Docker commands through a Docker client such as the Docker CLI or Kitematic. The client uses REST commands to communicate with the Docker daemon running on a Docker host such as the Azure Container services. These commands can be used to push, pull (docker pull), and create Docker images, to run them in containers, and to manage those containers. Images can be built with the docker build command, and they can be stand-alone, or they can "inherit" from other images. Images are stored in Docker registries, which can be public or private, local or remote. Docker Hub is a popular public registry that is managed by Docker; it contains a "huge collection" of images that anyone may use. The docker run command runs a container using an image as a template.
  • #13 The Docker Client, also known as the Docker CLI, is the primary tool you use to manage Docker containers. You can download container images from repositories such as Docker Hub, build container images, run container instances, list container images and instances, and much more. After connecting to Azure Container Service using SSH, you can use port forwarding to execute commands locally that act on an Azure Container Service running in the cloud. In this example, the -H switch used with the docker commands forwards commands sent to port 22375 on localhost to the Azure Container Services via SSH.
  • #14 This command pulls the image named "Ubuntu" from Docker Hub (or a local registry if the image is cached there) and runs it interactively in a container. "Interactively" means standard input, output, and error are connected locally so you can provide input to the container and see its output. Of course, you are not limited to the "Ubuntu" image. You can specify other images and even create images of your own with docker build. Where the container runs depends on the context. The container can run locally in a docker host (for example, a VM on Windows), or it can remotely if you connect to a remote Docker daemon (for example, one running in Azure) via SSH tunneling and use port forwarding to forward docker commands to the daemon.
  • #15 These are some of the most commonly used docker commands. You can also use docker push to push an image to a registry such as Docker Hub. Also, docker ps is often accompanied by a -a switch to list all containers, including those that are no longer running, while docker rm and docker rmi are used to delete (remove) containers and images, respectively. The docker build command uses a Dockerfile (a text file containing build commands) and a "context" -- for example, a specified directory in the file system -- to build Docker images.
  • #16 Orchestration in the context of containers is the deployment and management of containers across infrastructure and networks. It provides the tools and software defined infrastructure needed to deploy containers. Containers by design are intended to be deployed in large volumes with some applications using dozen to even thousands of containers. With this type of scale, automating deployment and management of containers with Orchestration Software becomes necessary.
  • #17 A container cluster is intended to have redundancy for load balancing, scalability, and high availability. A cluster is composed of one or more Master Nodes which control the orchestration for scaling and delegation of tasks to the agents as well as provide monitoring. The Agent Nodes actually run the container loads.
  • #18 Docker Swarm is the orchestration engine from Docker. It has tight integration with Docker, so many of the same paradigms and tools that used with Swarm seamlessly as well as some additional features like overlay networks and Docker services that can run multiple containers spread across multiple hosts. These containers can seamlessly communicate and rapidly scale.