Prerequisite For Deployment of a Reddit Copy on Kubernetes with Ingress Enabled

Prerequisite For Deployment of a Reddit Copy on Kubernetes with Ingress Enabled

Before we begin with the Project, we need to make sure we have the following prerequisites installed:

  1. EC2 ( AMI- Ubuntu, Type- t2.medium )

  2. Docker

  3. Minikube

  4. kubectl

You can Install all this by doing the below steps one by one. and these steps are for Ubuntu AMI.

# Steps:-

# For Docker Installation
sudo apt-get update
sudo apt-get install docker.io -y
sudo usermod -aG docker $USER && newgrp docker

# For Minikube & Kubectl
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube 

sudo snap install kubectl --classic
minikube start --driver=docker

Great! You're all set for the project. Your Minikube cluster is now prepared for deploying the Reddit clone application. For additional information on deployment, please check out this blog.