Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·15 hours agoMastering 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#namespaces
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Nov 21, 2024Kubernetes Basics: Step-by-Step Creation of Pods, Namespaces, and Clusters + Key Interview QuestionsWhen planning to set up a cluster, you should first decide how many nodes you want to create. The first should be the control plane and the worker nodes. We will create one control plane and two worker nodes. By the way, the control plane includes th...DiscussKubernetes
Parth Sharmaparth-sharma-devops.hashnode.dev·Nov 19, 2024Kubernetes 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...DiscussKubernetes
gayatri kumargeekee.hashnode.dev·Nov 8, 2024Welcome to RoboCity! A Beginner’s Guide to Robotics and ROS2Introduction: Building the Blueprint Imagine a city, vibrant and complex, where every building, road, and public park has a unique purpose, connected by a hidden network that keeps the city functioning. In robotics, ROS2 (Robot Operating System 2) is...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·40 likesRoboticsros2Nodes
Dhruv Moradiyadhruvmoradiya.hashnode.dev·Nov 7, 2024Day 33: Mastering Namespaces and Services in Kubernetes 🚀Hey Devs! 🎉 You've made great progress by updating your Deployment yesterday. Today, we’re diving deeper into the essential concepts of Namespaces and Services in Kubernetes. Let’s break down these topics and walk you through a hands-on task! 🛠️ �...Discuss90DayofdevopsDevops
Kandlagunta Venkata Siva Niranjan ReddyforGetting Started with Kubernetesgetting-started-with-kubernetes.hashnode.dev·Nov 4, 2024Understanding Kubernetes Namespaces: Key Features and BenefitsWhat Are Namespaces? In Kubernetes, namespaces are like virtual spaces within a single cluster. They help you organize and manage resources by dividing the cluster into separate areas. This way, different teams or projects can work independently with...Discuss#namespaces
Hamid NawazforRetrieving Namespaceshamid-nawaz.hashnode.dev·Oct 20, 2024How to retrieve namespaces from the Pinecone index?After a couple of days of effort, I've successfully discovered how to retrieve namespaces from the Pinecone index. Here's the method that finally worked: import { Pinecone } from '@pinecone-database/pinecone' const pc = new Pinecone({ apiKey: "YOUR_...DiscussPinecone
Abishek Kafledevops.abisec.xyz·Oct 14, 2024Setup Kubernetes Namespaces and PODsTasks Create a namespace named dev. Deploy a pod named dev-nginx-pod in the dev namespace. Use the nginx image with the latest tag for the pod. Ensure to specify the image tag as nginx:latest. Steps First create the namespace named dev. kubec...DiscussDevOpsk8s
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 9, 2024☑️Day 38: Exploring Namespaces in Kubernetes🚀🔹Table of Contents : Introduction What are Namespaces? Why Use Namespaces? Hands-on Learning Commands Used Real-World Scenario Key Learnings ✅Introduction: What are Namespaces in Kubernetes? In Kubernetes, namespaces provide a mechanism to...Discuss·10 likesDevops
Ashutosh Rathoreblog.ashutoshrathore.in·Oct 4, 2024How to delete namespace that is stuck in terminating stateGet namespace that has terminating state: Kubectl get ns | grep terminating Delete the namespace forcefully using the below cmd line NS=`kubectl get ns |grep Terminating | awk 'NR==1 {print $1}'` && kubectl get namespace "$NS" -o json | tr -d "\n"...DiscussKubernetes