-
Introduction to Ingressing With Kubernetes
Single responsibility is a magical notion. Whatever it touches, it makes it more manageable and efficient. With Kubernetes, we have the power to spawn many services. As many of them as we would like. But how inbounds requests are routed among these services? Ingressing is a powerful way to decouple routing rules with core application logic. According…
-
Deploying a nginx application using Kubernetes for Self-Healing and Scaling
Kubernetes is an open source system for automating deployment, scaling and management of containerized applications. A more technical term for it is, container orchestrator which is used to manage large fleets of containers. Minikube is an all-in-one single node installation for trying out kubernetes on local machines. And the following post covers deploying a nginx…