Shivani Vaikarlearn-aws-basics.hashnode.dev·Feb 10, 2025Deploying a Demo Pod on Kubernetes using MinikubeKubernetes is a powerful container orchestration platform that simplifies deploying, scaling, and managing containerized applications. In this blog, we will walk through deploying a simple pod on Kubernetes using Minikube. Prerequisites Before we get...minikube
Shivani Vaikarkubernetes-setup-localsystem.hashnode.dev·Feb 8, 2025Installing Minikube and kubectl on Unix-Based Local SystemsMinikube is a lightweight Kubernetes implementation that enables developers to run a Kubernetes cluster locally. It is particularly useful for testing and development purposes. kubectl is the command-line tool that allows interaction with Kubernetes ...minikube
Georgiana Gorganbitmaker.cloud·Feb 4, 2025Deploying MongoDB and MongoDB Express on Kubernetes with MinikubeIn this article, we'll walk through the process of deploying a MongoDB database and MongoDB Express (a web-based MongoDB admin interface) on a local Kubernetes cluster using Minikube. We'll also create Kubernetes Secrets, ConfigMaps, and Services to ...1 likeK8sminikube
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Feb 3, 2025Unlocking the Power of OPA Gatekeeper: Transform Your Kubernetes Experience TodayIntroduction :- Hey there, Kubernetes enthusiasts! Let’s chat about something that’s been making waves in the container orchestration world: OPA Gatekeeper. If you’re like me, you’ve probably heard this term thrown around in tech conversations, but m...Kubernetes
Vanshika Sharmavanshikasharmaa.hashnode.dev·Feb 2, 2025Kubernetes ArchitectureWhat is Kubernetes? Kubernetes (often abbreviated as K8s) is an open-source container orchestration platform that automates containerized applications' deployment, scaling, and management. It helps organizations efficiently run applications across m...2 likesKubernetes
Georgiana Gorganbitmaker.cloud·Feb 2, 2025Getting Started with Minikube: Essential CommandsMinikube is a powerful tool that lets you run a single-node Kubernetes cluster locally on your machine. It's perfect for development, testing, and learning Kubernetes. In this article, we'll explore the essential Minikube commands you need to know an...1 likeK8sminikube
Kanav Gathe90-days-of-devops-kanav.hashnode.dev·Jan 16, 2025Deploying a Netflix Clone on AWS using Kubernetes and Minikube: A Step-by-Step GuideIn this tutorial, we'll walk through the process of deploying a Netflix clone application using Kubernetes (k8s) and Minikube on AWS. We'll cover everything from setting up the development environment to deploying the application using Kubernetes con...#90daysofdevops
Mohamad Mahmoodhashnotes.hashnode.dev·Jan 11, 2025Mini Kube Quick Steps[1] Install (On Windows) choco install minikube [2] Start Minikube minikube start [3] Verify installation minikube status [4] interact with the cluster (Note: you need to install kubectl choco install kubernetes-cli kubectl get nodes [5] Enable t...Kubernetes
Mohamad Mahmoodhashnotes.hashnode.dev·Jan 11, 2025Kubernetes In Docker (KIND)Kubernetes, often abbreviated as K8s, is an open-source container orchestration platform designed to automate the deployment, scaling, and management of containerized applications. Originally developed by Google, it is now maintained by the Cloud Nat...Kubernetes In Docker (KIND)
Vivek Arorak8sbydijvivek.hashnode.dev·Jan 11, 2025Kind vs Minikube: A Comprehensive Guide to Choosing and Setting Up Your Local Kubernetes Cluster"So, you're diving into the world of Kubernetes, huh? Welcome to the club where YAML files and containers rule the kingdom! But wait—how do you set up a Kubernetes cluster on your local machine? Should you go with Kind or Minikube? What’s the differe...1 like·37 readsKubernetes BasicsOpen Source