Category: Kubernetes

Automation - Infrastructure as Code - Kubernetes

Building Kubernetes Operators part 2: Design and implementation details

Kubernetes operators were introduced as an implementation of the Infrastructure as software concept. Using them you can abstract the deployment of applications and services in a Kubernetes cluster. This is the second of a series of articles explaining how operators work, and how they can be implemented in different languages. Introduction In the previous article…

Automation - Infrastructure as Code - Kubernetes

Building Kubernetes Operators part 1: Operator Pattern and Concepts

Kubernetes operators were introduced as an implementation of the Infrastructure as software concept. Using them you can abstract the deployment of applications and services in a Kubernetes cluster. This is the first article of a series explaining how operators work, and how they can be implemented in different languages. Introduction In this article series we…

Availability & Scalability - Kubernetes

Kubernetes Nginx Ingress: Consistent hash subset load balancer

Last month we got a Pull Request with a new feature merged into the Kubernetes Nginx Ingress Controller codebase. This feature request came from a client that needs a specific behavior of the Load Balancer not available on any Ingress Controller. Link to the PR: https://github.com/kubernetes/ingress-nginx/pull/3396/ What’s the use case? Our client’s software is a…