parth-sharma-devops.hashnode.devUnderstanding Kubernetes Services: A Guide with YAML ExamplesIn Kubernetes, a Service is like a friendly middleman that makes it easy for other applications or users to communicate with your application, no matter where it is running inside the cluster. Here’s a simple analogy: Imagine you have a food delivery...Nov 22, 2024·4 min read
parth-sharma-devops.hashnode.devKubernetes DeploymentIn Kubernetes, a Deployment is a higher-level abstraction that manages a group of identical pods, ensuring that the desired number of them are running at all times. It simplifies the process of deploying and managing applications by offering features...Nov 20, 2024·4 min read
parth-sharma-devops.hashnode.devKubernetes Pods: An IntroductionWhat is a k8s pods? A Kubernetes (k8s) pod is the smallest deployable unit in Kubernetes, which can contain one or more containers. Pods are used to manage and run applications within a Kubernetes cluster. When you create a Deployment, Kubernetes cre...Nov 19, 2024·3 min read
parth-sharma-devops.hashnode.devKubernetes NamespaceWhat is namespace in Kubernetes? In Kubernetes, Namespaces are used to organize resources. You can have multiple Namespaces in a Cluster And these Namespaces are kind of virtual Clusters of their own. The official definition of Namespace says "In Kub...Nov 19, 2024·3 min read
parth-sharma-devops.hashnode.devKubernetes ArchitectureKubernetes is a powerful, open-source container orchestration platform developed by Google for automating the deployment, scaling, and operation of application containers. Below is a detailed overview of its architecture, covering its major component...Nov 17, 2024·3 min read