Contribute Media
A thank you to everyone who makes this possible: Read More

Fundamentals of Kubernetes for Django developers

Description

A hot topic in recent years is running applications in containers. Tools such as docker and rkt have made deployment of applications using Linux containers easier, but they do not alone provide everything that is needed to easily manage many applications, or run containers at scale across a cluster of machines.

In this talk you will learn about the fundamental concepts and terminology of Kubernetes and why it is emerging as the de-facto standard for container orchestration and scheduling.

The talk will step through how to deploy to Kubernetes a Python web application, implemented using Django, as a way of seeing what happens under the covers when you do so.

Topics which will be covered to illustrate how Kubernetes works will include:

  • What are containers and pods.
  • Accessing pods for an application via a service.
  • Scaling up applications to many instances.
  • Automatic recovery from application failure.
  • Exposing a web application to the public.
  • Building images targeting Kubernetes.
  • Application lifecycle management.
  • Monitoring health of an application.
  • Security and controlling access.

Kubernetes is a tool for IT operations. It implements what is regarded as a Container as a Service (CaaS). You can use it to host an application packaged up in a pre-existing application image, but does not help you with building that image. In some respects Kubernetes can be viewed as like the Linux kernel, you wouldn’t try and deploy it yourself from scratch, instead you would use a packaged distribution.

This talk will also touch on different Kubernetes distributions such as vendor distributions from Heptio, and OpenShift from Red Hat, as well as Kubernetes services such as Google Kubernetes Engine (GKE), Amazon Elastic Container Service (EKS) and Azure Kubernetes Service (AKS). Examples of how these distributions and service offerings around Kubernetes bundle in additional functionality, including integrated routing, metrics, logging and Platform as a Service (PaaS) functionality, in order to provide a better developer centric experience will also be discussed.

Details

Improve this page