Posts

Kubernetes Installation on desktop debian

Target Audience: Anyone who wants to learn kubernetes on their local debian machine Step 1: Install Docker : https://docs.docker.com/engine/install/debian/  follow the steps in the URL to install docker on your machine Step 2: install Kubectl : https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/ follow the steps in the link to install kubectl on the machine  Step 3: install minikube :https://minikube.sigs.k8s.io/docs/start/ Step 4: Manage the docker in non root mode https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user I just had to add my user to existing docker group using  sudo usermod -aG docker $USER and then reload the groups using  newgrp docker Step 5: Start minikube I was able to run  minikube start 😄  minikube v1.23.2 on Debian 11.1 ✨  Automatically selected the docker driver 👍  Starting control plane node minikube in cluster minikube 🚜  Pulling base image ... 💾  Downloading K...

AWS Services Cheatsheet

The world is too dynamic to say that this list would remain true for months. The below name/description is scraped from the actual AWS console menu.  Obviously this is not a complete list but only those which were visible in my account  I'll try top keep it updated but let me know if you see some changes before I do. Service Name: Compute Description: Virtual Servers in the Cloud Service Name: EC2 Description: Launch and Manage Virtual Private Servers Service Name: Lightsail Description: Run Code without Thinking about Servers Service Name: Lambda Description: Fully managed batch processing at any scale Service Name: Batch Description: Run and Manage Web Apps Service Name: Elastic Beanstalk Description: Assemble, deploy, and share serverless applications within teams or publicly Service Name: Serverless Application Repository Description: Run AWS Services On Premises Service Name: AWS Outposts Description: A managed service to automate build, customize and deploy OS images S...