
Istio in 1.4 and 1.6
Istio today
- Sandbox
- Incubation
- Graduation
Note
I roughly counted, and there were more than 20 occasions in 2019 I either spoke about Istio or delivered a workshop. I guess I can call myself an "international speaker", right? 🙂

I share a quick look into my history with Istio and how I've seen it evolve from an incubating project to a graduated one.
Peter Jausovec
Senior Principal Platform Advocate


Note
I roughly counted, and there were more than 20 occasions in 2019 I either spoke about Istio or delivered a workshop. I guess I can call myself an "international speaker", right? 🙂

Keep reading
The strangler pattern is useful for scenarios where you can intercept the calls at the edge of your monolithic application. But what do you do in a scenario where the functionality you're trying to extract is not called directly from the outside, rather it is being called from multiple other places inside the monolith?
Peter Jausovec
In this article, I'll talk a bit about data partitioning. Specifically, I'll talk about horizontal data partitioning or sharding. After a brief 'theoretical' part, I'll show you an example of how you can configure sharding with MongoDB. You will be able to run three MongoDB shards, a configuration server, and a router on your computer, using Docker compose.
Peter Jausovec
Running stateful workloads inside Kubernetes is different from running stateless services. The reason being is that the containers and Pods can get created and destroyed at any time. If any of the cluster nodes go down or a new node appears, Kubernetes needs to reschedule the Pods. When Pods get rescheduled, what happens with data? This article talks about Kubernetes Volumes and how to use them to store the data outside of your containers.
Peter Jausovec
This post and accompanying video guides you through the Minikube installation process. It explains and introduces a couple of essential Minikube commands you can use to work with your Kubernetes cluster, and shows you how to access your applications inside the cluster when using Minikube.
Peter Jausovec
You have finally deployed your app to Kubernetes and you bought a cool domain name — ever wondered how to point your cool domain like www.mydomain.com, but cooler, to an application running inside Kubernetes? Well, read on and I'll try to explain how to do just that!
Peter Jausovec