Stop Messing with Kubernetes Finalizers

We’ve all been there - it’s frustrating seeing deletion of Kubernetes resource getting stuck, hang or take a very long time. You might have “solved” this using the terrible advice of removing finalizers or running kubectl delete ... --force --grace-period=0 to force immediate deletion. 99% of the time this is a horrible idea and in this article I will show you why.

Read More

How to setup Redis master and slave replication

How to setup Redis master and slave replication

PURPOSE

It’s very simple to setup a master-slave Redis replication that allows the slave Redis server to keep an exact backup copy of a master server database. For more details on Redis replication, refer here.

Read More