AWS · Azure · GCP · Kubernetes · Terraform · CI/CD  ·  Batch Open

Deploy to
Three Clouds.
On Day One.

Not theory, not sandboxes. You'll provision real AWS EC2 clusters, configure Azure AKS, write Terraform for GCP, and build CI/CD pipelines that ship code to production — all within 90 days.

AWS
Azure
GCP
Kubernetes
Terraform
CI/CD
~/medha-devops/infra ☁ multi-cloud
# 🚀 Medha EduTech DevOps Internship
# Provisioning multi-cloud infrastructure...
 
$ terraform apply -auto-approve
 
Plan: 12 to add, 0 to change, 0 to destroy.
✔ aws_eks_cluster.prod created [48s]
✔ azurerm_kubernetes_cluster.staging created [62s]
✔ google_container_cluster.dev created [55s]
 
$ kubectl get nodes --all-namespaces
NAME                 STATUS   ROLES
ip-10-0-1-42         Ready    control-plane
ip-10-0-1-58         Ready    worker
ip-10-0-1-71         Ready    worker
 
$ kubectl rollout status deploy/api-service
✔ deployment "api-service" successfully rolled out
 
$ Monitoring: 0 alerts · Uptime 99.98%
☁️
3 Clouds Live
AWS · Azure · GCP
⚙️
Pipeline: 2m 14s
Build → Deploy ✓
💼
Offer Received!
₹12 LPA → Wipro Cloud
📍 DevOps Track Journey

The 90-Day Multi Cloud DevOps Roadmap

From Linux basics to running a production multi-cloud Kubernetes cluster — every phase ships real infrastructure, not just lecture notes.

🐧
Phase 1 · Days 1–22
Linux + Networking + Git
Shell scripting, networking fundamentals, Git workflows, SSH, Docker containers — the bedrock every cloud engineer needs.
☁️
Phase 2 · Days 23–52
AWS + Azure + GCP Core
Provision real compute, storage, networking, and managed services on all three clouds. IAM, VPCs, load balancers, managed databases — live.
⚙️
Phase 3 · Days 53–75
Kubernetes + Terraform + CI/CD
EKS / AKS / GKE cluster management, Terraform IaC, GitHub Actions & Jenkins pipelines, Helm charts, GitOps with ArgoCD.
🚀
Phase 4 · Days 76–90
Observability + Placement
Prometheus, Grafana, CloudWatch, incident response, infrastructure portfolio, mock interviews, direct referrals — get the offer.
☁️ DevOps Team · Infra Sprint #5
Deployment Live
AK
Aravind Kumar
AWS + Terraform · Intern
Deploying
SD
Sneha Desai
K8s + Azure · Intern
Merged ✓
VR
Mentor Venkat
Sr. Cloud Architect · Medha
Reviewing
⚙️
Today: Scale the EKS node group to 5 nodes, fix the failing Prometheus alert rule, and open a PR for the Helm chart update by 6 PM.
🟢
Uptime 99.98%
Deploy: 2m 14s
DevOps Internship Experience

Real Infrastructure.
Real Production Ops.

You're not simulating cloud on a free-tier account. You'll provision actual multi-cloud infrastructure, write Terraform that colleagues review, and be on-call for a real Kubernetes cluster — the way day-one at any cloud company works.

🏗
IaC with Terraform Across 3 Clouds
Write, review, and apply Terraform modules for AWS, Azure, and GCP — real state files, remote backends, workspace strategies.
Run a Production Kubernetes Cluster
Deploy microservices to EKS, manage pods, write Helm charts, configure auto-scaling, ingress controllers, and network policies.
🔄
Build End-to-End CI/CD Pipelines
GitHub Actions + Jenkins pipelines — build, test, scan, containerise, push to ECR, deploy to EKS. Every push to main goes to production.
📜
Cloud Engineer Portfolio + Certs
Your GitHub has real Terraform repos, Kubernetes manifests, and pipeline YAMLs — plus guidance on AWS Solutions Architect certification.
☁️ What You'll Actually Build & Operate
The Live Infrastructure
You'll Run During the Internship

This isn't a diagram from a textbook. Every node below is a real service you'll provision, connect, monitor, and debug — across three clouds — during your 90 days.

💻
Code Push
git push origin
🔍
Lint + Test
38s · 142 tests ✓
🐋
Docker Build
ECR push · 1m 02s
🛡
Security Scan
Trivy · 0 critical
K8s Deploy
EKS rolling ✓ 22s
Amazon Web Services
ap-south-1 · Mumbai
Amazon EKS
Kubernetes · 3 nodes
🗄
RDS PostgreSQL
Multi-AZ · db.t3.medium
ElastiCache Redis
cache.t3.micro
🪣
S3 + CloudFront
Static assets · CDN
📊
CloudWatch
Logs · Metrics · Alerts
Microsoft Azure
centralindia · Pune
Azure AKS
Kubernetes · 2 nodes
🗄
Azure SQL Database
General Purpose · 4 vCores
📦
Container Registry
ACR · Standard tier
🔐
Azure Key Vault
Secrets management
🌐
Azure Front Door
Global load balancer
Google Cloud Platform
asia-south1 · Mumbai
Google GKE
Autopilot cluster
🐘
Cloud SQL
PostgreSQL · HA replica
📨
Pub/Sub
Async messaging queue
⚙️
Cloud Build
CI/CD · triggers live
📊
Cloud Monitoring
Dashboards + alerting
ns: production
🌐
🔐
⚙️
🌐
ns: monitoring
📊
📈
🔔
ns: ingress
🚪
🔒
ns: argocd
🔄
📦
9
Pods Running
3
Node Count
99.98%
Cluster Uptime
2m14s
Avg Deploy Time
📄 terraform/modules/eks-cluster/main.tf  ·  You'll write this during Week 7
# EKS Cluster — written by intern during Sprint #3
module "eks" {
  source = "terraform-aws-modules/eks/aws"
  version = "~> 20.0"
 
  cluster_name = "medha-prod"
  cluster_version = "1.30"
  vpc_id = module.vpc.vpc_id
  subnet_ids = module.vpc.private_subnets
 
  eks_managed_node_groups = {
    workers = {
      instance_types = ["t3.medium"]
      min_size = 2
      desired_size = 3
      max_size = 8
    }
  }
}
15+
AWS Services Used
EC2 · EKS · RDS · S3 · more
3
Clouds Provisioned
AWS · Azure · GCP
12+
Terraform Modules Written
Real IaC in your GitHub
2m14s
Avg CI/CD Pipeline
Code to production
99.98%
Cluster Uptime Maintained
You're on-call rotation
🗓 Week-by-Week Curriculum

What You'll Build & Operate

13 weeks of hands-on cloud and DevOps engineering — every module ends with a real infrastructure component pushed to your GitHub.

🐧
Week 1–2
Linux + Shell + Networking
Linux administration — users, permissions, processes
Bash scripting — automation scripts you'll actually use
Networking — TCP/IP, DNS, load balancers, VPCs
Git branching strategy, PR workflows, code review
🐋
Week 3–4
Docker + Container Fundamentals
Dockerfile best practices, multi-stage builds
Docker Compose — multi-service local stacks
Container registries — ECR, ACR, Artifact Registry
Image scanning with Trivy, security hardening
🟠
Week 5–7
AWS Core + Solutions Architect
EC2, VPC, IAM, S3, RDS, ElastiCache
EKS — cluster setup, node groups, IRSA
Route53, ALB, CloudFront, WAF
CloudWatch — dashboards, alarms, log insights
🔵
Week 8–9
Azure + GCP Core
Azure AKS, VNet, Key Vault, Front Door, ACR
GCP GKE Autopilot, Cloud SQL, Pub/Sub, Cloud Build
IAM across clouds — roles, service accounts
Cross-cloud VPN peering and private connectivity
🔷
Week 10–11
Terraform + Kubernetes Advanced
Terraform modules, remote state, workspaces
Helm charts — package, template, deploy
GitOps with ArgoCD — sync policies, rollbacks
K8s RBAC, network policies, HPA, PodDisruptionBudgets
🚀
Week 12–13
Observability + Placement Sprint
Prometheus + Grafana — dashboards, alert rules
ELK / OpenSearch — centralised log management
Incident response runbooks, SLO / SLA design
Portfolio, mock interviews, referrals to 200+ companies
DevOps Portfolio Projects

Infrastructure You'll Actually Ship

Real repos. Real cloud bills. Real production deployments that your GitHub shows — not tutorial screenshots.

🏗
Terraform · AWS
Multi-VPC AWS Infrastructure
Terraform modules for a 3-tier AWS VPC — public/private subnets, NAT gateways, ALB, Auto Scaling Group, RDS Multi-AZ, and S3 remote state.
TerraformAWS VPCEKSRDSS3
Kubernetes · Multi-Cloud
Production K8s Cluster Setup
EKS cluster with Helm-managed microservices, ArgoCD GitOps, NGINX ingress, cert-manager TLS, HPA auto-scaling, and Prometheus monitoring.
EKSHelmArgoCDPrometheusGrafana
🔄
CI/CD · DevSecOps
End-to-End CI/CD Pipeline
GitHub Actions pipeline — lint, test, Docker build, Trivy scan, ECR push, Terraform plan, and kubectl rolling deploy to EKS. Under 3 minutes, end-to-end.
GitHub ActionsTrivyECRTerraformEKS
🔵
Azure · AKS
Azure AKS + DevOps Pipeline
AKS cluster provisioned via Terraform, Azure DevOps pipeline, Key Vault secrets injection, Azure Front Door global routing, and Monitor alerts.
AKSAzure DevOpsKey VaultFront Door
📊
Observability
Full Observability Stack
Prometheus + Grafana dashboards, ELK centralised logging, Jaeger distributed tracing, and PagerDuty-integrated alerting — for a live microservices app.
PrometheusGrafanaELKJaegerOpenTelemetry
🔷
GCP · Cloud Native
GCP Cloud-Native Microservices
GKE Autopilot, Cloud SQL with private IP, Pub/Sub event-driven architecture, Cloud Build triggers, and Workload Identity Federation for security.
GKECloud SQLPub/SubCloud BuildWIF
Week by Week

Your DevOps Internship Journey

Every week ends with a real infrastructure deliverable — from your first container to a three-cloud production cluster you built yourself.

Week 1–2
🐧 Linux + First Container Running
Set up your Linux workstation, write your first Bash automation scripts, containerise a Python app with Docker, and push to a private container registry on day 5.
📌 Deliverable: Dockerised app running in a container registry
Week 3–5
🟠 First AWS Infrastructure via Terraform
Write Terraform to provision a real AWS VPC, EC2, RDS, and S3 bucket. Push state to S3 remote backend. Get your first PR reviewed by the senior architect.
📌 Deliverable: AWS VPC + EC2 app deployed via Terraform
Week 6–7
⎈ EKS Cluster Up and Running
Provision an EKS cluster with managed node groups using Terraform, deploy 3 microservices using Helm charts, configure NGINX ingress with TLS — then set up HPA auto-scaling.
📌 Deliverable: Live EKS cluster with 3 microservices on HTTPS
Week 8–9
🔵🔷 Azure AKS + GCP GKE Deployed
Replicate the infrastructure on Azure using AKS and Terraform, then on GCP with GKE Autopilot. Experience real differences in cloud networking and IAM across platforms.
📌 Deliverable: The same app running on AWS, Azure, and GCP
Week 10–11
🔄 CI/CD Pipeline + GitOps Live
Build the full GitHub Actions pipeline: push code → tests run → Docker build → Trivy security scan → ECR push → ArgoCD syncs → EKS rolls out. Under 3 minutes, zero-touch.
📌 Deliverable: Full CI/CD pipeline running end-to-end
Week 12–13
💼 Portfolio + Placement Sprint
Polish your GitHub Terraform repos and Helm charts. 10+ mock interviews — cloud architecture, K8s troubleshooting, Terraform scenarios, HR. Direct referrals to 200+ companies hiring cloud engineers.
🎉 Goal: Cloud / DevOps Engineer Offer Letter in Hand
DevOps Placement Accelerator

We Don't Stop Till
You're a Cloud Engineer

Cloud engineers are the highest-demand tech role in 2025. Our placement team connects your infrastructure portfolio directly with the companies actively hiring — from TCS Cloud CoE to AWS partner firms and cloud-native startups.

650+
Cloud engineers placed
200+
Hiring partner companies
₹14L
Highest DevOps offer
4.9★
Google rating from alumni
01
GitHub Infrastructure Portfolio
Clean Terraform repos with READMEs, architecture diagrams, live demo URLs — a GitHub that proves you've done this for real.
02
Cloud-Specific Resume + LinkedIn
DevOps and cloud-keyword-rich resume tailored for ATS, and a LinkedIn profile that surfaces in recruiter searches for AWS/Azure/K8s roles.
03
10+ Technical Mock Interviews
Cloud architecture design, Kubernetes troubleshooting, Terraform scenarios, CI/CD walkthroughs, and system design — with detailed written feedback.
04
Direct Referrals to Cloud Companies
Your profile handed directly to cloud teams at TCS, Wipro, HCL, Infosys Cloud CoE, and AWS/Azure partner firms — warm intros that get you interviews.
05
AWS Certification Guidance
Study plan and resources for AWS Solutions Architect Associate — many alumni pair this with placement to command a premium salary.
Cloud & DevOps engineers from Medha EduTech are hired at
DevOps Alumni Stories

From Zero to Cloud Engineer

Real DevOps alumni. Real infrastructure they built. Real offers that changed everything.

↑ 350% hike
"

The Terraform repos I built during the internship are literally what I showed the TCS Cloud interviewer on my laptop. A real EKS cluster, a real CI/CD pipeline, real state files in S3. They offered me a cloud engineer role the same day. No other fresher in that room had anything like it.

AK
Aravind Kumar
Cloud & DevOps Engineer
@ TCS Cloud CoE — ₹12 LPA
↑ 290% hike
"

I had a CS degree but had never touched Kubernetes. In 90 days at Medha I was managing a 3-node EKS cluster with Prometheus monitoring and ArgoCD GitOps. Wipro's cloud team wanted me to join immediately after seeing my GitHub. The internship made my portfolio speak louder than my degree.

SD
Sneha Desai
Kubernetes & DevOps Engineer
@ Wipro Cloud — ₹10.5 LPA
↑ 440% hike
"

I switched from manual QA to DevOps at 28 — everyone told me it was too late. Medha's structured internship gave me real infrastructure experience across AWS, Azure, and GCP. Infosys Cloud hired me at a salary that was 4× my previous job. Age, degree, background — none of it mattered once they saw my work.

PK
Pradeep Kumar
Multi Cloud DevOps Engineer
@ Infosys Cloud — ₹11.2 LPA
↑ 320% hike
"

Writing Terraform for a real AWS EKS cluster during week 7 was the moment everything clicked. I understood why companies care about IaC — because I had done it. Capgemini's cloud team interviewed me for 45 minutes about my Terraform repo and offered me on the spot. My GitHub was my resume.

MR
Meghana Rao
Cloud Infrastructure Engineer
@ Capgemini — ₹9.8 LPA
↑ 380% hike
"

The observability project I built — Prometheus, Grafana, and ELK for a live microservices app — was the single most impressive thing in my portfolio. HCL's SRE team said it was the first time a fresher candidate had shown them a real Grafana dashboard with actual metrics. Offer came in 48 hours.

VN
Vishnu Naidu
Site Reliability Engineer (SRE)
@ HCL Technologies — ₹13 LPA
↑ 260% hike
"

I was a network engineer wanting to move to cloud. The multi-cloud internship was perfect — I already understood networking, and Medha's mentors accelerated me into Terraform and Kubernetes fast. LTI Mindtree placed me in their cloud-native practice. First month on the job, I was already leading Terraform reviews.

RT
Ravi Teja
Cloud Platform Engineer
@ LTI Mindtree — ₹10 LPA
Apply Today · DevOps Track

Your first Terraform apply.
Your first Kubernetes rollout.
Your first cloud engineer offer.

Applications open for the next Multi Cloud DevOps batch — only 12 seats. Free to apply. We'll call you in 30 minutes.

☁️
Apply for Multi Cloud DevOps Internship
We'll call you within 30 minutes — 9 AM to 9 PM, every day.

Free to apply. Merit-based selection. No spam, ever.

Real 3-Cloud Infrastructure
Terraform IaC from Day 1
Kubernetes in Production
200+ Hiring Partners
Zero Hidden Costs

Contact Us