PSParth Sharmainparth-sharma-devops.hashnode.dev·Nov 22, 2024 · 4 min readUnderstanding 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...00
PSParth Sharmainparth-sharma-devops.hashnode.dev·Nov 20, 2024 · 4 min readKubernetes 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...00
PSParth Sharmainparth-sharma-devops.hashnode.dev·Nov 19, 2024 · 3 min readKubernetes 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...00
PSParth Sharmainparth-sharma-devops.hashnode.dev·Nov 19, 2024 · 3 min readKubernetes 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...00
PSParth Sharmainparth-sharma-devops.hashnode.dev·Nov 17, 2024 · 3 min readKubernetes 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...00