DEV Community

Sherdil IT Academy
Sherdil IT Academy

Posted on • Originally published at academy.sherdil.org

A Free 16-Week Cloud and DevOps Syllabus for Karachi (2026)

Every free resource you need to go from zero to a genuinely hireable cloud or DevOps skill set already exists, and most of it is free. The problem was never access. The problem is that nobody hands you an order, so people bounce between AWS Skill Builder, random YouTube tutorials, and a Udemy course they never finish, and eight months later they still could not tell you what job they are qualified for.

So here is a fixed syllabus. Sixteen weeks, entirely free resources, no ambiguity about what to do next. Follow it in order.

Weeks 1 to 3: Linux and the command line

Nothing else on this list works without this foundation.

  • freeCodeCamp's Linux fundamentals content (YouTube) for the core commands, file permissions, and process management
  • Practice daily in a free-tier virtual machine or WSL, not just by watching

By the end of week 3 you should be comfortable navigating a server with no GUI, editing files in vim or nano, and managing basic services with systemctl.

# Daily practice habit, not optional
ssh into your VM every day, even for ten minutes
systemctl status <any-service>
journalctl -u <any-service> --since today
Enter fullscreen mode Exit fullscreen mode

Weeks 4 to 6: Git and one programming language

  • freeCodeCamp again, this time for Python or JavaScript fundamentals
  • Git and GitHub, practiced by committing something daily, not just reading about branches

By week 6 you should have a GitHub profile with actual commit history, not a blank green square.

Weeks 7 to 10: Pick one cloud, go deep

This is the point where people scatter across AWS, Azure, and GCP at once and slow themselves down. Pick one.

  • AWS Skill Builder (free tier) if you are targeting the widest local hiring base
  • Google Cloud Skills Boost if your target companies run GCP
  • Microsoft Learn if you already know you are heading into a bank or an Azure shop

Whichever you pick, do the hands-on labs, not just the reading modules. Deploy something real: a static site, a small API, a database-backed app. Screenshot it working and write a short note on what you built and why.

Weeks 11 to 13: Containers and Kubernetes

  • KodeKloud's free YouTube content for Docker and Kubernetes fundamentals
  • TechWorld with Nana for the conceptual explanations that make Kubernetes click
  • Build a local cluster (Minikube or Kind) and deploy your week 7 to 10 project into it
# Minimum viable proof you understand the basics
kubectl get pods
kubectl describe pod <pod-name>
kubectl logs <pod-name>
Enter fullscreen mode Exit fullscreen mode

By the end of week 13, you should be able to explain what a Pod, a Deployment, and a Service each do, and why you would use one over another.

Weeks 14 to 16: CI/CD and one real end-to-end project

  • GitHub Actions documentation and examples (free, and the most commonly used CI/CD tool for portfolio projects)
  • Wire your containerized app from weeks 11 to 13 into a pipeline: commit triggers build, build triggers deploy

This is the single most important project on the whole syllabus. One complete pipeline, end to end, on your GitHub, proves more than every certificate of completion combined.

What this syllabus does not include, on purpose

It does not include every free resource that exists. DigiSkills, NAVTTC, and the other government programs are worth exploring, but they overlap heavily with what is already listed here, and running two curricula at once is how people stall. Pick this syllabus or a government program, not both at the same time.

It also does not end with a certification, deliberately. This sequence builds the skill. What you do with it next, whether that is applying for jobs directly or adding a formal certification like the CKA to make the skill legible to recruiters, is a separate decision. If you finish this syllabus and want the credential that makes 80% of local Kubernetes job postings take you seriously, the full CKA certification prep guide for Pakistani engineers picks up exactly where week 16 leaves off.

The honest timeline

Following this syllabus at a genuine 10 to 12 hours a week, sixteen weeks gets you to a real, demonstrable skill level, not a finished career. Expect another few months of job searching and interview practice after that. It is slower than a paid bootcamp, and it costs nothing but the hours you put in.


This 16-week path is one route through it. I put together the complete list of every genuinely useful free program available in Karachi in 2026, government and vendor programs included, along with honest notes on where each one is weak, over here: "free IT courses in Karachi".

Where are you on this syllabus right now, and which phase has taken longer than you expected? Drop it in the comments. 👇

Top comments (0)