Table of Contents


NOTE All credit for the slides in the pictures goes to their creators!

NOTE If you are in one of these pictures and want it removed, please contact me by email (see about/imprint page).

WIP This post is still work in progress! The content of this post can rapidly change. This note will be removed when the post has been completed. TODO

  1. Proof read.

Welcome!

A warm “Welcome” if you are new to the three day post series from KubeCon Copenhagen, I recommend you to checkout the first day blog post too, here KubeCon Copenhagen 2018 Day 1 and the second day blog post, here KubeCon Copenhagen 2018 Day 2.

Morning Keynotes

Keynote: Kubeflow ML on Kubernetes - David Aronchick, Product Manager, Cloud AI and Co-Founder of Kubeflow, Google & Vishnu Kannan, Sr. Software Engineer, Google

KubeCon - Keynote - KubeCon Bingo

KubeCon - Keynote - Power effectiveness with AI

Doing machine learning allowed Google to save up to 40% on their power bill.

Machine learning for cloud native, needs to be a) composable, b) Portability and c) Scalability.

KubeCon - Keynote - Oh, you want to use ML on K8s?

If you want to run ML on Kubernetes, you are gonna have a bad time, but not anymore thanks to KubeFlow.

It takes an expert for just ML, running it in Kubernetes is hard too, but KubeFlow can help. They have released Kubeflow 0.1. It is built so that you can customize it as you want.

Their demo showed an example of ML usage for finding the likeliness of reviews.

The “normal” way without ML just used predefined words to see how likely the review is to be either a recommendation, neutral or bad.

KubeCon - Keynote - KubeFlow TensorBoard

TensorBoard can be used to see some metrics about the metrics.

KubeCon - Keynote - KubeFlow ML end result

It is able to run on “any” K8S cloud.

A Swedish city had used data science to reduce injuries through new snowfall by optimizing the snowplow paths.

KubeCon - Keynote - KubeFlow - We're just getting started!

Awesome, I will definitely try this out to get me started in ML. The end goal is to make Kubernetes to number one platform for ML.

Keynote: Running with Scissors - Liz Rice, Technology Evangelist, Aqua Security

KubeCon - Keynote - Running with Scissors Title

“You might carry the scissors for miles before you cut yourself” - Liz Rice

KubeCon - Keynote - Container Isolation - View from Host

Linux container isolation is mostly done through capabilities. A container run through Kubernetes (mostly likely also Docker) drops most “bad” capabilities/isn’t even granted the capabilities on start.

securityContext:

For more information see the securityContext documentation: Kubernetes.io Documentation - Pod SecurityContext.

KubeCon - Keynote - Security with USER in Dockerfile

KubeCon - Keynote - Host can't remove root file created by root container as non root

One can potentially use a volume mount of the pod to access files from hosts and because the UID is 0 aka root, everything can be done.

KubeCon - Keynote - Stop running with scissors

“We need to prevent us from running with scissors” - Liz Rice

  1. Change applications Dockerfiles and add USER __YOUR_ID__ line.
  2. Use tools like from Aqua Security.
  3. Use PodSecurityPolicies.

Keynote: Scaling Deep Learning Models in Production Using Kubernetes - Sahil Dua, Software Developer, Booking.com

KubeCon - Keynote - Booking.com Scaling Highlights

They run Deep Learning at huge scale.

KubeCon - Keynote - Scaling Deep Learning Models in Production Using Kubernetes Title

They use it for:

KubeCon - Keynote - Booking.com Image Tagging

Once they have the tags on the images the user is able to better search for certain factors of a hotel/room.

The workload for deep learning is immmensive. From 10 to 100s of GBs to sometimes even terrabytes of data to go through.

They choose Kubernetes because of the:

They don’t put training data into the images. This removes the need to always repull the image. They simply use Hadoop or PVs to access/mount the training data.

I recommend to checkout the recording as he made a nice graphical visualization on their setup.

KubeCon - Keynote - Booking.com Serving ML Predictions 1

They use common code (possibly a library) which contains access instructions to the model(s). To that they containerize the application, but without the model in it. The model is loaded in memory “on demand” from Hadoop storage and then it begins to serve the predictions.

KubeCon - Keynote - Booking.com Serving ML Predictions 2

Keynote: Crossing the River by Feeling the Stones - Simon Wardley, Researcher, Leading Edge Forum

KubeCon - Keynote - Crossing the River by Feeling the Stones - Title

KubeCon - Keynote - Crossing the River by Feeling the Stones - Common Blahs

(blah, blah, blah)

KubeCon - Keynote - Crossing the River by Feeling the Stones - Blah Template

KubeCon - Keynote - Crossing the River by Feeling the Stones - Auto generate strategies

KubeCon - Keynote - Crossing the River by Feeling the Stones - Three main feedback points for his autogenerated strategies

KubeCon - Keynote - Crossing the River by Feeling the Stones - Automatic Strategy Generator Online

Automatic Strategy Generator Online

KubeCon - Keynote - Crossing the River by Feeling the Stones - Four fields

KubeCon - Keynote - Crossing the River by Feeling the Stones - 'The End of cloud is neigh ...'

‘The End of cloud is neigh …’

KubeCon - Keynote - Crossing the River by Feeling the Stones - Circle of purpose and movement

This was the funniest keynote, you have to checkout the recording of it if you weren’t there.

KubeCon - Keynote - Crossing the River by Feeling the Stones - Deng Xiaoping Quote

Keynote: Closing Remarks – Kelsey Hightower, Kubernetes Community Member, Google & Liz Rice, Technology Evangelist, Aqua Security

“You feel the AC?” - Kelsey Hightower

KubeCon - Keynote - Closing Remarks - Upcoming conferences

The upcoming CloudNativeCon and KubeCon will be at:

Talks

Rook Deep Dive – Bassam Tabbara, Tony Allen & Jared Watts, Upbound (Intermediate Skill Level)

First of all thanks for coming to the talk! A big thanks also goes out to Jared and Tony that I could talk about the administrative side of Rook. I really enjoyed helping with the slides.

I hope everyone liked the talk. If you have feedback about the talk, get in touch with Jared, Tony or me.

Be sure to follow Jared’s Twitter @jbw976.

Kubernetes Runs Anywhere, but Does your Data? - Jared Watts, Upbound (Beginner Skill Level)

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? Title

Kubernetes runs anywhere (even on a robot vacuum cleaner). The power of Kubernetes is also Portability.

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - How does Kubernetes do it?

There are abstractions for running applications in Kubernetse but also already for Storage in general. Storage abstraction is available through PersistentVolumes, PersistentVolumeClaims and more.

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Where Storage Falls Short

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Where Storage Falls Short

The provisioning is still more in the background than consuming storage. This will change with ContainerStorageInterface (CSI).

To be able to run stateful applications anywhere you need a portable storage solutions. CRDs can be used to create abstractions.

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Operator's Control Loop

On the first day you deploy, on the second you support it (Day 2 operations).

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Kubernetes API and Clientsets

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Event Triggers

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Demo Deployments spawned by a controller through a CRD 1

The new WIP CockroachDB and Minio operator were show cased next to the Ceph one.

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Demo Deployments spawned by a controller through a CRD 2

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Demo Deployments spawned by a controller through a CRD 3

KubeCon - Talk - Kubernetes Runs Anywhere, but Does your Data? - Questions?

Summary

As always KubeCon was awesome. I met amazing people, had very interesting talks and found new contacts.

Have Fun!