THE
WORK
Six weeks. Six projects. From CI/CD pipelines to Kubernetes observability to serverless event pipelines. Every project is fully deployed, documented, and tested. Every blog post walks through the architecture, the debugging, and the lessons learned.
AWS CI/CD
PIPELINE WITH
BLUE/GREEN
Full CI/CD pipeline on AWS with zero-downtime blue/green deployments. CodeCommit triggers CodeBuild, which creates an artifact for CodeDeploy. Manual approval via SNS before production rollout. Tested rollback by breaking the health endpoint.
THREE-TIER
AWS
ARCHITECTURE
Production-grade 3-tier architecture — ECS Fargate, RDS PostgreSQL, ElastiCache Redis in a custom VPC. Full CRUD API with cache-aside pattern. 6 Terraform modules, 37 resources.
GITOPS ON
EKS WITH
ARGOCD
Full GitOps workflow on EKS. Push to main → ArgoCD auto-syncs. Custom Helm chart with 8 templates. PostgreSQL StatefulSet with PVC, Redis, AWS Load Balancer Controller, EBS CSI Driver, IRSA for pod-level IAM.
PROMETHEUS +
GRAFANA +
ALERTING
Full observability stack on EKS. Instrumented Node.js API with 7 custom Prometheus metrics. Built a 9-panel Grafana dashboard and wrote 9 custom alert rules. Deployed via GitOps using kube-prometheus-stack.
LOKI +
PROMTAIL
LOG AGG
Added log aggregation to the observability stack. Promtail DaemonSet ships logs to Loki, queryable via LogQL. Built a metric-to-log correlation dashboard — click a spike, see the logs from that exact time range.
SERVERLESS
EVENT
PIPELINE
Real-time event-driven data pipeline on AWS. 4 Python Lambdas, API Gateway HTTP API v2, DynamoDB with GSI, SQS with DLQ. Fire-and-forget async processing, atomic counters, conditional writes, partial batch failure. $3.60/month vs $213 for EKS.