sanyogitawange.hashnode.devUnderstanding Nginx in detailNginx is an open source software which when installed helps to manage traffic efficiently. Nginx was initially developed to solve the C10k problem, which refers to the difficulty of handling 10,000 concurrent connections on a single server. When a re...Aug 25, 2024·5 min read
sanyogitawange.hashnode.devExploring Kubernetes: ServicesIn k8s each pod gets its internal IP, but pods are ephemeral and every time a pod is destroyed and new is created Ip gets change, then it would be difficult to access applications running on that pod. Services-helps to create a stable IP address and ...Aug 20, 2024·2 min read
sanyogitawange.hashnode.devExploring Kubernetes: Labels, Selectors, ReplicaSet, and Deployment, Deployment Rollout ExplainedLabels: Labels are basically key value pair, which have no specific rules regarding name but in real time as good practice a naming convention must be followed to name labels. If you don't explicitly assign label, it is assigned by default where key ...Jul 31, 2024·5 min read
sanyogitawange.hashnode.devKubernetes PodPOD: A Kubernetes pod is a collection of one or more linux container with shared storage and network resources, and a specification for how to run the containers, and is the smallest unit of a Kubernetes application. They are ephemeral(something whic...Jul 17, 2024·5 min read
sanyogitawange.hashnode.devDocker Interview QuestionsQ1.Which command can be used to delete all the containers?Ans: docker rm -f $(docker ps -a -q) Q2. Can we use latest as tag for images?No, because then the product looses backward compatibility. In production you may not necessarily have need of late...Jun 28, 2024·1 min read