Kubernetes

Auto scaling in Kubernetes (Part 2)

Using linkerd for auto scaling
Posted 2021-08-07

In the first part of this post, we visited auto scaling using the metrics server. In part two, we will look at using custom metrics, specifically those from linkerd and ingress-nginx to perform auto scaling based on latency and requests per second.

Using auto scaling in Kubernetes (Part 1)

Taking a look at autoscaling on Kubernetes in practice
Posted 2021-08-07

One of the many useful features within Kubernetes, is the concept of horizontal autoscaling your deployments. In this post, we will take a closer look at how to configure this, and some things to watch out for. This post about auto scaling has been split into 2 parts. The first is about auto scaling using CPU and memory metrics. Part 2 focusses on auto scaling with ingress-nginx and linkerd.

Running Kubernetes on Gitlab CI

Running a Kubernetes cluster in your Gitlab CI jobs
Posted 2021-07-31

When you work on infrastructure, develop helm charts or simply want you run your tests in a more production like environment, running Kubernetes on your Gitlab CI may a good fit for you. Luckily, it’s only a little bit of configuration to set-up!

ModSecurity with ingress-nginx

Making use of ModSecurity WAF in the ingress-nginx
Posted 2021-07-30

This post is about enabling the ModSecurity feature for ingress-nginx in practice.

ModSecurity is an open source web application firewall (WAF). It can help you provide an additional layer of security in front of your application. I will leave the the what and how on usnig a WAF for others to talk about (there quite a few good blog posts available on the web on this topic), and this post will soley focus on enabling the functionality in ingress-nginx.

Setting up Linkerd

Installing Linkerd2 into an existing Kubernetes Cluster
Posted 2019-06-05

One awesome tool that I got to learn a great deal more about during KubeCon EU is Linkerd 2. It’s simple to use and looks really promising. This post is about setting it up and the things I encountered during that process.

Distributed storage on Kubernetes using Rook

Solving state using rook
Posted 2018-06-03

The past few months I’ve heavily invested into learning Kubernetes. So far, I’ve loved every part of it. At work I am constraint at the environments we run our systems in. We’re not able to move to the public cloud for various reasons, and do not have any persistent storage available through an API that can be easily mounted and controlled using a storage plugin / driver. So I started browsing around.