ASAnurag Sharmaindeveducate.hashnode.dev·Dec 20, 2024 · 1 min readDev EducateChapter 1: Introduction 1.1 Brief of the Project In the ever-evolving world of education and career advancement, having access to quality learning resources and real-time professional opportunities is crucial. The Educational Platform was designed wi...00
ASAnurag Sharmainparashar.hashnode.dev·Jan 28, 2024 · 17 min readBuild a two-tier architecture for AWS using Terraform Modules.Aim & Objectives: Custom VPC with CIDR 10.0.0.0/16. Two Public Subnets with CIDR 10.0.1.0/24 and 10.0.2.0/24 in different Availability Zones for high availability. Two Private Subnets with CIDR 10.0.3.0/24 and 10.0.4.0/24 in different Availability...00
ASAnurag Sharmainparashar.hashnode.dev·Aug 7, 2023 · 5 min readKubernetes Persistent VolumesKubernetes Persistent Volumes (PVs) provide storage for your application’s Pods. Data written to a volume is managed independently of the Pods that access it, ensuring the data remains available after Pod restarts and failures. You’ll need to use PVs...00
ASAnurag Sharmainparashar.hashnode.dev·Jun 28, 2023 · 4 min readTerraformInfrastructure as Code IaC involves the management and provisioning of computer data centers using machine-readable files, instead of manually configuring physical hardware or relying on interactive configuration tools.The management and provisioning...00
ASAnurag Sharmainparashar.hashnode.dev·Jun 14, 2023 · 4 min readGit Commands1. Add New Changes git add <file.ext> # To add a specific file git add . # To add all the files in the current directory New Branch git branch <new name> # and remain in the current branch git checkout -b <new name> # and switch to the new branch...00