馃殌 Multi-Cluster Deployment with GitOps (EKS + Argo CD)This guide walks through setting up GitOps using Argo CD across multiple EKS clusters (1 Hub + 2 spokes), and managing them using Argo CD installed on the hub cluster. Step 1 : Create EKS cluster eksctl create cluster --name hub-cluster --region ap-s...May 15, 2025路3 min read
馃殌 Deployed 2048 Game App on Amazon EKS with Fargate with Custom Domain & ALB Ingress!Apr 20, 2025路6 min read
Custom VPC with Public Private subnet - Application deployed in Private subnetDec 11, 2024路2 min read
AWS Security group and NACL Demowe have created custom VPC. Create EC2 instance in custom VPC. SSH into EC2 instance and updated packages and run command. python3 -m http.server 8000 (When you execute this command, it starts a simple HTTP server on your local machine. This...Dec 10, 2024路3 min read
Build your own Github - Git Server setupwe'll be building our own Git server from scratch. This will give us a deeper understanding of how Git works under the hood.Jun 27, 2024路3 min read
Shiv jayanti Devops ProjectLaunch EC2 instance Public IP address 54.165.122.101 Install JAVA and Jenkins. Unlock Jenkins by using command sudo cat /var/lib/jenkins/secrets/initialAdminPassword and then create user Install docker - sudo apt install docker.io -y After ...Feb 26, 2024路2 min read
Kubernetes ArchitectureContainerization Containerization is a virtualization technique in which the application and all its dependencies are packed into a single isolated package called a container and can be run on the host OS, virtual machines and on cloud. Need for Con...Feb 20, 2024路3 min read
Terraform state locking using DynamoDB tablecreate S3 bucket in AWS console. Create dynamodb table. go to table and click on create table and enter table name of your choice and Partition key as "LockID" and click on create table. Table will be created. status will be "Active" Add AWS...Oct 27, 2023路3 min read
Terraform remote state - Initializing S3 as remote backend.The S3 bucket is created. resource "aws_s3_bucket" "s3-tf-bucket" { bucket = "abhijit-tf-test-bucket-for-remote-state" tags = { Name = "My tf bucket" Environment = "test" } } kindly run terraform plan command. Kindly ...Oct 27, 2023路3 min read