SWSanyogita Wangeinsanyogitawange.hashnode.dev·Aug 25, 2024 · 5 min readUnderstanding 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...00
SWSanyogita Wangeinsanyogitawange.hashnode.dev·Aug 20, 2024 · 2 min readExploring 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 ...00
SWSanyogita Wangeinsanyogitawange.hashnode.dev·Jul 31, 2024 · 5 min readExploring 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 ...00
SWSanyogita Wangeinsanyogitawange.hashnode.dev·Jul 17, 2024 · 5 min readKubernetes 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...00
SWSanyogita Wangeinsanyogitawange.hashnode.dev·Jun 28, 2024 · 1 min readDocker 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...00