At GitHub Universe in early December 2020, some new functionalities for GitHub Actions focused on continuous delivery were introduced. In this blog post, we’ll explore them in the context of a simple web-app deployment to a Kubernetes cluster. Before diving into what’s new, let’s have a look at what GitHub Actions are: What are GitHub […]
Author: nillsf

Getting started with Kubernetes: learning resources
In the past week, I’ve had two separate people reach out to me about how to get started with learning Kubernetes. I thought I’d put my thoughts together in a blog post here, so everybody can benefit from this. Starter resources for Kubernetes To start learning Kubernetes, I highly recommend the following resources: Introduction to […]

Considerations regarding cloud software business models
I recently had a conversation with a start-up company that was planning to launch its software in the cloud. In our conversation, we talked about different business models for cloud software. The conversation stuck with me, and I’ve been thinking about the different business models and the impact of them since. In the past two […]

Customize core dump in Azure Kubernetes
A core dump is a common way to get information about process crashes. It saves the memory state, which can later be used for troubleshooting purposes. Being able to perform a core dump in Kubernetes is a little bit more involved than on a regular system. You will need to configure the Kubernetes hosts in […]

How to run your own admission controller on Kubernetes
I’ve done some work with a customer lately, where I helped them build a mutating admission controller on Kubernetes. The goal of this blog post is to explain what admission controllers are and how to deploy them on Kubernetes. To keep the content of the post manageable, the development of the admission controller itself is […]