One of the many selling points of Kubernetes is the ease through which you can scale your applications in a matter of seconds. For example, it took me less than 10 seconds to scale an nginx webserver from 1 to 10 replicas. However, before talking about scaling, let's first have…
Did you know! Kubernetes is basically an API which you interact with through the kubectl command line tool? This API in turn manages the details of your deployment on K8S. Undoubtedly, the entire stack is way more complex than this, as it includes components such as the Container Runtime Interface…
If you know anything about me, it's that I love talking about Kubernetes. Heck, there's even an entire Kubernetes tag on this website! Therefore, I decided to share my knowledge through a series of how-to's and how-does-it-work's to hopefully convey the sheer awesomeness of Kubernetes, and why I'm so obsessed.…
Well, I think this blogpost will start similarly to the one I wrote about my first time attending DevCon back in Mauritius. "Writing this, I'm both really happy it happened and really sad it's over. I guess that's how everyone feels at their first DevCon."
If you noticed that I…
This article is a narration of me finally crossing another thing off my to-do list. A Docker Registry is quite similar to a Git Server - it's useful to store and version Docker images. You are probably familiar with DockerHub, which is one of the most used registries out there.…