Sanyogita Wangesanyogitawange.hashnode.dev路Jul 17, 2024Kubernetes 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...#Pods
Daniel Lopesdanieljalopes.hashnode.dev路Apr 18, 2024Part 3 - Managing ResourcesTo each Pod, it will be assigned CPU and Memory resources. A resource request for containers in a Pod is used by the Kube-scheduler [1] to allocate the Pod in the appropriate K8s node. A Pod can use more resources than the ones requested as they are ...Kubernetes for BeginnersKubernetes
Unnati Guptadevunnatig.hashnode.dev路Dec 20, 2023Launching your Kubernetes Cluster with Deployment#90daysofdevopschallenge #day32 Previous_Blog: https://devunnatig.hashnode.dev/launching-your-first-kubernetes-cluster-with-nginx-running What is Deployment in k8s? A Deployment provides a configuration for updates for Pods and ReplicaSets. You desc...Kubernetes
Achyut Dasachyutdas.hashnode.dev路Sep 25, 2023Launching Kubernetes Cluster with Deployment馃槉馃殌馃専鉁匢ntroduction 馃専 A Kubernetes cluster is a collection of interconnected computing resources (such as servers or virtual machines) that work together to run containerized applications orchestrated by Kubernetes. Kubernetes is an open-source container ...29 readsKubernetes
Ayushi Vasishthaayushi1503.hashnode.dev路Sep 3, 2023馃殌 Getting Started: Installing Minikube and Creating Your First Kubernetes Pod 馃寪馃 Minikube: Your Gateway to Kubernetes Before we dive in, let's meet our trusty companion, Minikube. 馃殌 1. What is Minikube?馃挕 Minikube is like a magic wand that conjures a local Kubernetes cluster on your machine. Whether you're on macOS, Linux, or...59 reads#90daysOfDevOpsKubernetes
Dinesh Jagdish Vermadineshjverma.hashnode.dev路Jul 1, 2023How to create a pod in Kubernetes.Pods: Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and network resources, and a specification for ...96 reads#Kubernetes-Pod-Creation
Ganesh Balimidiatozdevopscenter.hashnode.dev路May 28, 2023Create a Kubernetes POD based on Custom SpecificationsThis blog post is based on Real-time scenarios Scenario In this Scenario, you will assume the role of a DevOps engineer at an e-commerce startup. As part of the organization's annual technology audit, it has been advised to adopt Kubernetes. Currentl...Kubernetes
Anjali Barodiaanjalitechy.hashnode.dev路Apr 26, 2023Kubernetes- Pods, Replication Controller, ReplicaSet, Deployment, Services, NamespacesCreate a pod using a YAML-based configuration file Kubernetes takes YAML file as input for the creation of objects such as Pods, Replicas, Deployment, Services etc. In YAML configuration file four fields are mandatory : apiVersion: version of Kubern...2 likes路57 readsTrainWithShubham