ankittkx.hashnode.devMedusa 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...Sep 12, 2024·1 min read
ankittkx.hashnode.devKubernetes 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...Aug 18, 2024·2 min read
ankittkx.hashnode.devKubernetes 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...Aug 17, 2024·2 min read
ankittkx.hashnode.devKubernetes 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...Aug 16, 2024·2 min read
ankittkx.hashnode.devKubernetes 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...Aug 15, 2024·3 min read