AKAnkit Kumarinankittkx.hashnode.dev·Sep 12, 2024 · 1 min readMedusa Install & Run on localPrerequisites npm, nodejs & postgres pre-installed Step 1 Install npm & nodejs & postgres, I already did. So I am just verifying it- node -v npm -v Step 2 Install medusa CLI with the cmd- npm install @medusajs/medusa-cli -g Step 3 Create new medusa...00
AKAnkit Kumarinankittkx.hashnode.dev·Aug 18, 2024 · 2 min readKubernetes Troubleshooting:Troubleshooting in Kubernetes-> Troubleshooting in Kubernetes may be difficult because of it's distributed nature and complexity. But there are many commands, tools and technique that can help to troubleshoot or solve problem in Kubernetes cluster. F...00
AKAnkit Kumarinankittkx.hashnode.dev·Aug 17, 2024 · 2 min readKubernetes Cluster MaintenanceUpgrading the cluster-> As I am using minikube that is local Kubernetes cluster, so firstly we will upgrade minikube- 1. Upgrade MiniKube binary: curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 sudo inst...00
AKAnkit Kumarinankittkx.hashnode.dev·Aug 16, 2024 · 2 min readKubernetes Storage & Kubernetes SecurityPersistent Volumes-> It is a piece of storage in a cluster that is provisioned by the administrator or allocated dynamically using Storage Classes. Persistent volume are the volume plugin. Persistent Volume Claim-> A persistent volume claim is a requ...00
AKAnkit Kumarinankittkx.hashnode.dev·Aug 15, 2024 · 3 min readKubernetes Services and Service DiscoveryHow to expose Kubernetes workload to outside world using Services: A Service in Kubernetes is an abstraction that defines a logical set of pods and a policy by which to access them. Kubernetes offers several types of services to access them! A. Clute...00