This problem has bitten me more than once, and I can never remember how to fix it. So, why not write a blog post about it!
When running EF Core migrations in a solution, you may come across this error:… continue reading
DevOps, SRE, Cloud Dev
This problem has bitten me more than once, and I can never remember how to fix it. So, why not write a blog post about it!
When running EF Core migrations in a solution, you may come across this error:… continue reading
In this post, we will discuss how to remove a Kubernetes namespace that is stuck in the ‘terminating’ state.
A namespace is like a container. You can use it to store related objects in a Kubernetes environment. Maybe you are … continue reading
If you manage Linux nodes, you know how vital performing regular maintenance is. Installing software patches that modify Linux kernel headers requires a reboot. Normally, as in the past, we would cordon and drain the node and then manually reboot, … continue reading
I have somewhat of a niche issue, where I have no network connectivity while connecting to my work VPN inside of WSL v2. I have found others complaining about this issue on Github. Though no one seems to know how … continue reading
We can inject configuration into containers using Kubernetes config maps and secrets. These objects can be consumed by a pod as environment variables, command-line arguments, or as configuration files mounted in a volume. For the subject of this article, we … continue reading
In this blog post, we will attempt to explain the current storage options that exist in Kubernetes. If you are new to Kubernetes, learning about its capabilities of managing the application state can be a daunting task.
Container images are … continue reading
In this blog post, we will attempt to explain the current storage options that exist in Kubernetes. If you are new to Kubernetes, learning about its capabilities of managing the application state can be a daunting task.
Container images are … continue reading
This post will cover a secure method for accessing secrets in Azure DevOps pipelines.
Azure Key Vault is an Azure cloud service used to securely store secrets, keys, and certificates. A secret can be any string … continue reading
In this article, we will dive into the process of pod eviction in a Kubernetes cluster, how you can pod prevent pod eviction, and how you can recover from such a situation.
Kubernetes pod eviction is … continue reading
In this post, we’ll take a look at deploying a highly available sFTP solution to Azure Kubernetes with user files stored in an Azure NFSv4 File Share. The sFTP application reads user credentials from a file named users.conf, containing secrets … continue reading
When deploying new software releases to servers or (insert -as-a-service> here), it’s a good idea to either deploy the releases in a controlled manner or to have a quick rollback plan. This article will be diving into blue/green deployments, canary … continue reading