Shaik Mustafamustafa-k8s.hashnode.dev·Nov 28, 2024Replication Controller Vs Replica SetAssume you are running an application. The application is created by running a single Pod in the Kubernetes cluster. If the application crashes then the Pod will die. If the Pod dies then the user losses access to the application. This will create a ...Discuss·101 likes·119 readsrc vs rs
Shaik Mustafamustafa-k8s.hashnode.dev·Nov 29, 2024Practical Differences between Replication Controller and ReplicaSetMany Kubees often highlight that the main difference between ReplicationController (RC) and ReplicaSet (RS) lies in the use of equality-based versus set-based selectors. While this is technically correct, when it comes to practical implementation, mo...Discuss·40 likesreplication controller vs replicaset
Shaik Mustafamustafa-k8s.hashnode.dev·Nov 28, 2024Replication Controller Vs Replica SetAssume you are running an application. The application is created by running a single Pod in the Kubernetes cluster. If the application crashes then the Pod will die. If the Pod dies then the user losses access to the application. This will create a ...Discuss·101 likes·119 readsrc vs rs
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Nov 22, 2024Mastering Kubernetes: From Namespaces and POD Creation to Deployments, Auto-Healing, Rolling Updates, ReplicaSets, and StatefulSetsNamespaces PODs Deployments ReplicaSets StatefulSets Please read this blog before continuing with this one: Click here Steps to Setup Kind Clusters Using a Manifest File: First we need to create a cluster using the manifest file (config.yml)...Discuss·2 likes·41 reads#namespaces
Anasanasmansuri.hashnode.dev·Oct 25, 2024Labels, Selectors, Replica Sets, Deployments, Production StrategiesWhatever mentioned in the spec section that’s what the pod is going to do. Image Pull Policy: Official docs https://kubernetes.io/docs/concepts/containers/images/ apiVersion: v1 # API version for the Pod definition kind: Pod...DiscussKubernetes
Divyanshi Singhserverless-architecture.hashnode.dev·Oct 7, 2024List of kubernetes commands which will help in kubernetes management.Service ManagementCreate a service: kubectl create service <service-type> <service-name> –tcp=<port>List all services: kubectl get services Describe a specific service: kubectl describe service <service-name>Expose a deployment as a service: kubectl ...DiscussKubernetes
Taiwo Ogunolaunicdev.hashnode.dev·Oct 6, 2024Setting up MongoDB Replica set with Docker composeA replica set in MongoDB is a group of mongod processes that maintain the same data set. Replica sets provide redundancy and high data availability, with multiple copies of data on different database servers, ensuring your database remains accessible...Discuss·3 likes·35 readsMongoDB
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 6, 2024☑️Day 35: Understanding Deployment and Rollout in Kubernetes🚀🔹Table of Contents : Introduction What is a Deployment in Kubernetes? Key Deployment Commands Hands-On Practice: Deploying nginx Step-by-Step Guide to Deploy nginx Using a YAML File Verify and Manage the Deployment What is the Rollout Featu...DiscussDevops
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 5, 2024☑️Day 34: Understanding Replica Sets in Kubernetes🚀🔹Table of Contents : What is a Replica Set in Kubernetes? Why Use Replica Sets? Components of Replica Sets Life Cycle of a Replica Set Hands-On Task: Creating and Managing Replica Sets Task 1: Creating a ReplicaSet Task 2: Scaling Pods with R...Discuss·20 likesDevops
Sandhya Babusandhyaops.hashnode.dev·Sep 22, 2024🚀 (Day-03) ReplicaSet and Deployment♻️ ReplicaSet What is a ReplicaSet? A ReplicaSet ensures the right number of Pods are always running. For example, if you want 3 replicas of your web app, the ReplicaSet will ensure that. If a Pod crashes, it will automatically spin up a new one. Exa...Discuss#DevOps #CloudComputing #Hashnode #Containers #TechBlog
saurabh davesaurabhdave.hashnode.dev·Sep 4, 2024Kubernetes : Pods, Replica Sets, Deployments, Services, NamespacesPods These are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.Within a ...DiscussKubernetes