🎓 Program Overview
Azure is the dominant cloud platform in enterprise IT — the majority of large Pakistani IT firms and their international enterprise clients run on Azure, making it the most commercially relevant cloud for the local outsourcing market. Microsoft Entra ID, Azure DevOps Pipelines, Bicep, and AKS are deeply embedded in enterprise workflows — knowing them is a prerequisite for corporate DevOps roles targeting international enterprise clients.
The core program builds the Azure DevOps foundation in 4–5 weeks. Six specialist advanced tracks — each 2–3 additional weeks — let students go deep on AKS, security (Sentinel, Defender, DevSecOps), serverless (Functions, Durable, APIM), platform engineering (Landing Zones, Backstage, FinOps), Azure AI/ML infrastructure, or SRE with Chaos Studio.
💡 Why Azure DevOps in 2026
📚 Core Program — 4 to 5 Weeks
Every Azure VM, every AKS node, every GitHub Actions runner, and every Azure Container App runs on Linux. This week builds the OS and networking knowledge underpinning all Azure infrastructure — plus Azure CLI fluency from day one.
- Linux fundamentals: process management, systemd, file permissions, user management, and /proc + /sys virtual filesystems
- Shell scripting in Bash: variables, conditionals, loops, functions, error handling with
set -euo pipefail— production-grade Azure automation scripts - Text processing tools: grep, awk, sed, jq for JSON (essential for Azure CLI output), and yq for YAML — the DevOps data transformation toolkit
- Networking fundamentals: TCP/IP, CIDR notation, routing tables, DNS resolution, NAT, and packet flow through an Azure Virtual Network
- Linux networking tools: ip, ss, curl, dig, nslookup, tcpdump, and nc — debugging connectivity in Azure VNet environments
- TLS/SSL: how certificates work, the certificate chain, and inspecting with openssl — essential for Azure Application Gateway and App Service SSL
- SSH: key generation, SSH config files, agent forwarding, and hardening — managing Azure Linux VMs securely
- Azure CLI (az): installing, authenticating with service principals and Managed Identity, scripting resource operations, and querying with --query and JMESPath
- PowerShell for Azure (Az module): Get-AzResource, New-AzResourceGroup, and common administrative cmdlets for Windows-centric enterprise environments
- Git advanced workflows: rebasing, cherry-picking, reflog — working effectively with Azure Repos and GitHub in enterprise teams
- Python for Azure automation: azure-mgmt Python SDK, subprocess, pathlib, and argparse for complex infrastructure automation
- Azure Portal efficiency: navigating the portal effectively alongside CLI — no console-only workflows
Containers are the unit of deployment across every Azure container service — ACI, Container Apps, AKS, and App Service. This week covers Docker from OS fundamentals through production builds optimised for Azure Container Registry.
- Container fundamentals: Linux namespaces, cgroups, and the kernel features that make containers possible — what Azure Container Instances actually runs
- Docker architecture: Docker daemon, containerd, runc, image layers, and the OverlayFS union filesystem
- Writing production Dockerfiles: multi-stage builds, minimal base images (distroless, alpine, scratch), non-root users, and build cache optimisation
- Docker image security: scanning with Trivy and Microsoft Defender for Containers — removing secrets from build context, and .dockerignore
- Docker networking: bridge, host, overlay drivers — inter-container communication and Azure VNet integration
- Docker volumes: bind mounts vs named volumes, and mapping to Azure Files shares for persistent container storage
- Docker Compose: multi-container local development stacks — health checks, depends_on, and environment files
- Azure Container Registry (ACR): creating registries, pushing/pulling, geo-replication, repository permissions, and ACR Tasks for automated builds
- ACR vulnerability scanning: Microsoft Defender for Containers integration — continuous image assessment
- Multi-platform builds with buildx: ARM64 + AMD64 images for Azure's Ampere-based Dsv5 VMs
- Container image tagging strategies: semver tags, Git SHA tags, and immutable tags for production registries
- Docker in Azure DevOps Pipelines and GitHub Actions: layer caching strategies, parallel builds, and pushing to ACR from CI
Azure from a DevOps engineer's perspective — provisioning everything as code with Bicep and Terraform, with proper network topology, identity architecture, and security from the start.
- Azure resource model: subscriptions, resource groups, management groups, and the ARM hierarchy
- Azure Virtual Network: subnets, route tables, NSGs, Application Security Groups, VNet peering, and Private Endpoints
- Azure Virtual Machines: VM sizes, VM Scale Sets, Spot VMs, Azure Image Builder, and VM extensions for automation
- Azure Load Balancer vs Application Gateway vs Front Door: Layer 4 vs Layer 7 — WAF integration and SSL offloading
- Azure Storage: Blob (Hot/Cool/Cold/Archive), Azure Files, Azure Queues, and storage security (private endpoints, SAS tokens, Managed Identity)
- Azure SQL Database and Azure Database for PostgreSQL: managed databases — geo-replication, elastic pools, and point-in-time restore
- Azure Cache for Redis: tiers, clustering, geo-replication, and Entra ID authentication
- Microsoft Entra ID: tenants, service principals, Managed Identities (system-assigned and user-assigned), app registrations, and RBAC assignments
- Azure RBAC: built-in roles, custom role definitions, and role assignments at management group, subscription, resource group, and resource scopes
- Azure DNS: public and private DNS zones, DNS private resolver, and split-horizon DNS patterns
- Azure Key Vault: secrets, keys, and certificates — RBAC vs access policies, Key Vault Firewall, and Private Endpoints
- Bicep fundamentals: the Azure-native IaC language — resources, parameters, variables, outputs, and the Bicep-to-ARM relationship
- Bicep modules: reusable, versioned building blocks — VNet, AKS, and App Service modules shared across projects
- Bicep deployment scopes: resource group, subscription, management group, and tenant deployments
- Bicep parameter files and bicepparam: environment-specific configuration for dev, staging, and production
- What-if deployments: previewing Bicep changes before applying — the Bicep equivalent of Terraform plan
- Azure Deployment Stacks: the new native mechanism for managing Bicep deployments as a single lifecycle unit
- Terraform with the AzureRM provider: provisioning Azure resources with Terraform — the multi-cloud IaC standard
- Terraform state on Azure: Azure Blob Storage backend + state locking with Azure Blob lease
- Terraform modules for Azure: Azure Verified Modules library — reusable VNet, AKS, and App Service modules
- Bicep vs Terraform decision framework: Microsoft-first argument for Bicep vs multi-cloud portability of Terraform
- Checkov and tfsec for Azure: static analysis of Bicep and Terraform code for Azure security misconfigurations
- Terragrunt: DRY Terraform configurations across multiple Azure environments
From code commit to production deployment on Azure Container Apps and App Service — automated, secure, and repeatable. Both Azure DevOps Pipelines and GitHub Actions are covered because enterprise environments use both.
- Azure DevOps organisation: projects, repos, pipelines, artifacts, boards, and test plans — the full enterprise platform
- YAML pipelines: stages, jobs, steps, triggers, and the pipeline execution model
- Pipeline agents: Microsoft-hosted agents (Ubuntu/Windows/macOS), self-hosted agents on Azure VMs, and Azure VMSS agents for cost-efficient elastic capacity
- Service connections: connecting Azure DevOps to Azure subscriptions, ACR, GitHub — Workload Identity Federation for keyless authentication
- Variable groups and Azure Key Vault integration: storing pipeline secrets in Key Vault and referencing them without embedding values in YAML
- Pipeline templates: reusable stage, job, and step templates in a central repository — the enterprise pipeline library pattern
- Environments and deployment gates: manual approval, automated quality gates, and deployment history per environment
- Azure Artifacts: internal npm, NuGet, Python, Maven, and Universal Package feeds
- Pipeline security: branch policies, required reviewers for pipeline changes, and least-privilege service connection permissions
- GitHub Actions architecture: workflows, jobs, steps, runners, and the event model
- Azure OIDC login: passwordless authentication from GitHub Actions to Azure using Workload Identity Federation — no stored client secrets
- Azure-specific GitHub Actions: azure/login, azure/arm-deploy, azure/container-apps-deploy, azure/aks-set-context, and azure/webapps-deploy
- Reusable workflows and composite actions: shared GitHub Actions library for Azure deployments across multiple repositories
- GitHub Environments with Azure: deployment protection rules, required reviewers, and environment secrets per Azure environment
- Self-hosted GitHub Actions runners on Azure Container Instances or VM Scale Sets for private network access
- Azure Container Apps: the recommended serverless container platform — environments, revisions, replicas, traffic splitting, and KEDA-based scaling
- Azure App Service: PaaS web hosting — deployment slots, blue/green, auto-scaling, and custom domains
- Azure Container Instances: ephemeral containers for CI/CD jobs and batch processing
- Complete CI/CD pipeline: code push → Trivy scan → Docker build → ACR push → Bicep what-if → Bicep deploy → Container Apps update → health check → Slack notify
- Rollback strategy: Container Apps revision-based rollback and App Service slot swap reversal
- Lambda equivalents on Azure: Azure Functions deployment from Pipelines — Zip deploy and container-based Functions
The three concerns that occupy most of a working Azure DevOps engineer's week: understanding what systems are doing with KQL, keeping them secure and compliant, and controlling the Azure bill.
- Azure Monitor architecture: the unified observability platform — metrics, logs, traces, alerts, and dashboards in one system
- Log Analytics workspace: the central log store — diagnostic settings, and querying with KQL (Kusto Query Language)
- KQL in depth: where, project, summarize, extend, join, render, and time-series analysis — the most important Azure skill for SRE and DevOps
- Application Insights: APM — request tracking, dependency tracking, exception logging, custom events, and the Live Metrics stream
- Azure Monitor Metrics: platform metrics, custom metrics, and metric alerts with dynamic thresholds
- Azure Monitor Alerts: metric alerts, log query alerts, activity log alerts, and action groups (email, webhook, Azure Function, Logic App)
- Azure Dashboards and Workbooks: parameterised, interactive operational reports
- Container Insights: AKS and Container Apps monitoring — CPU/memory per pod, node status, and live container logs
- OpenTelemetry with Azure Monitor: the Azure Monitor OpenTelemetry Distro — exporting OTel traces, metrics, and logs to Application Insights
- Distributed tracing: end-to-end trace correlation across Container Apps, App Service, and Azure Functions
- Azure Key Vault in production: secrets rotation, Key Vault references in App Service and Container Apps, and audit logging
- Managed Identity in practice: assigning user-assigned Managed Identities to Container Apps, VMs, and Functions — eliminating stored credentials
- Microsoft Defender for Cloud: Secure Score, security recommendations, and defender plans for containers, VMs, and SQL
- Microsoft Defender for Containers: runtime threat protection for AKS and Container Apps — vulnerability assessment and anomaly detection
- Azure Policy: compliance rules — built-in policy definitions, custom policies, and policy initiatives
- Private Endpoints: removing public internet exposure for SQL, Storage, Key Vault, ACR, and other PaaS services
- Azure Firewall: managed network security — application rules, network rules, and threat intelligence-based filtering
- Shift-left security in pipelines: Trivy, Checkov, Semgrep, OWASP Dependency-Check, and Microsoft Security DevOps extension
- Microsoft Entra ID Conditional Access: enforcing MFA, device compliance, and location-based access for Azure DevOps and GitHub
- Azure Cost Management + Billing: cost analysis, cost allocation by resource group and tag, and invoice downloads
- Tagging strategy: mandatory cost allocation tags (environment, team, project, owner) enforced via Azure Policy
- Azure Budgets: budget alerts and automated actions — stopping or deallocating resources when thresholds are exceeded
- Azure Advisor: cost recommendations — rightsizing VMs, deleting unused resources, and Reserved Instance opportunities
- Azure Reserved Instances and Savings Plans: 1 or 3-year commitments — 30–72% savings over pay-as-you-go
- Azure Spot VMs: using spot for CI/CD agents, batch jobs, and fault-tolerant stateless workloads
- Container Apps and App Service scaling to zero: eliminating idle costs for non-production environments
- Azure Storage cost optimisation: lifecycle management policies, Blob access tier transitions
- Private Endpoint vs Service Endpoint pricing: understanding the cost implications of different network security approaches
- FinOps principles applied to Azure: the FinOps Foundation Inform/Optimise/Operate framework with Azure tooling
🚀 Advanced Add-On Tracks
Six specialist tracks, each 2–3 additional weeks. Take any track individually after completing the core program. Each aligned with a specific Microsoft or industry certification.
Kubernetes on Azure Kubernetes Service — the most in-demand enterprise container platform. Three weeks to cover it properly: the Kubernetes object model, AKS-specific operations, and the GitOps delivery layer.
- Architecture: API server, etcd, scheduler, controller manager, kubelet, kube-proxy, and container runtime
- Core workload objects: Pods, ReplicaSets, Deployments, StatefulSets, DaemonSets, Jobs, CronJobs — when each is right
- Services: ClusterIP, NodePort, LoadBalancer — DNS-based discovery with CoreDNS
- Ingress: NGINX Ingress Controller and the Azure Application Gateway Ingress Controller (AGIC) — TLS termination and path routing
- Persistent Volumes: PV, PVC, StorageClass — the Azure Disk CSI driver and Azure Files CSI driver for RWO and RWX storage
- Namespaces and RBAC: isolating teams, ClusterRoles vs Roles, ServiceAccounts, and binding Azure AD groups to Kubernetes roles
- Resource requests/limits, LimitRanges, ResourceQuotas, and QoS classes
- Health checks: liveness, readiness, and startup probes — probes that avoid unnecessary restarts
- Pod scheduling: node affinity/anti-affinity, taints, tolerations, topology spread constraints, and PodDisruptionBudgets
- AKS provisioning with Terraform and Bicep: system node pools, user node pools, Spot node pools, and network plugin selection (Azure CNI vs kubenet vs Azure CNI Overlay)
- AKS authentication: Azure AD integration, Azure AD-backed kubectl, and disabling local accounts for compliance
- Workload Identity for AKS: the replacement for AAD Pod Identity — federated credentials for Azure RBAC access from Kubernetes ServiceAccounts
- AKS networking: Azure CNI pod IP assignment, NSG rules for pods, Azure Network Policy, and Calico
- AKS autoscaling: Cluster Autoscaler and KEDA — scaling nodes and pods based on workload demand
- Secrets Store CSI Driver with Azure Key Vault: mounting Key Vault secrets directly as Kubernetes volumes
- AKS add-ons and extensions: AGIC, Container Insights, Secrets Store CSI Driver, and Open Service Mesh
- AKS observability: Managed Prometheus, Azure Managed Grafana, and Log Analytics for cluster and pod logs
- AKS cost optimisation: spot node pools, Start/Stop cluster schedules, and AKS Cost Analysis
- Helm: packaging applications — charts, values files, release management, and Azure-specific Helm charts
- Kustomize: environment-specific overlays — base + overlays for dev/staging/prod on AKS
- Flux CD on AKS: the GitOps operator built into AKS as an extension — source, kustomize, helm, and image automation controllers
- ArgoCD on AKS: Applications, ApplicationSets, App of Apps, and multi-cluster deployments
- Progressive delivery with Argo Rollouts: canary and blue/green on AKS with Application Insights metric analysis
- External Secrets Operator with Azure Key Vault: managing secrets safely in a GitOps repository
- OPA Gatekeeper and Azure Policy for AKS: restricting privileged containers, enforcing resource limits
- Istio add-on on AKS: mTLS, traffic management, and Kiali for mesh observability
Enterprise Azure environments operate under regulatory frameworks — GDPR, ISO 27001, SOC 2, PCI-DSS. This track covers Azure security tooling, DevSecOps pipeline integration, and compliance automation.
- Microsoft Defender for Cloud in depth: Secure Score, regulatory compliance (NIST, CIS, PCI-DSS), and Defender plans for VMs, SQL, Storage, Containers, and App Service
- Microsoft Sentinel: cloud-native SIEM — data connectors (Azure AD, Office 365, Activity), analytics rules, and incident investigation playbooks
- Azure DDoS Protection: Standard tier — adaptive tuning, attack telemetry, and Azure Monitor integration
- Azure Bastion: browser-based SSH and RDP to VMs without public IP addresses — eliminating jump boxes
- Just-in-time VM access: Defender for Cloud JIT — time-limited NSG rules for administrative access
- Customer-managed keys (CMK): bringing your own keys for Storage, SQL, Cosmos DB, and AKS — key rotation and emergency revocation
- Azure Active Directory Identity Protection: risk-based Conditional Access — sign-in risk, user risk, and automated remediation
- Privileged Identity Management (PIM): just-in-time elevation of Azure RBAC roles — approval workflows and access reviews
- Azure Private Link and Private DNS: end-to-end private connectivity to PaaS services from on-premises and hub-spoke networks
- Shift-left security: Trivy (containers), Checkov (Bicep/Terraform), Semgrep (SAST), OWASP Dependency-Check, and the Microsoft Security DevOps Azure DevOps extension
- Microsoft Security DevOps GitHub Action: Credential Scanner, Template Analyzer, and Trivy in GitHub Actions
- SBOM: generating with Syft and Microsoft SBOM Tool — storing in ACR for audit and vulnerability tracking
- Container image signing with Notation (CNCF): signing ACR images with Key Vault-backed certificates and verifying with Ratify on AKS
- SLSA supply chain security on Azure: provenance attestation for container builds in Azure DevOps
- Azure Policy as code: managing Policy assignments with Terraform and Bicep — the policy-as-code DevOps workflow
- Compliance frameworks on Azure: ISO 27001, SOC 2, PCI-DSS, and NIST SP 800-53 initiatives — mapping controls to Azure services
- Incident response on Azure: isolating compromised resources, forensic investigation with Activity Logs and Sentinel, and runbook automation with Azure Automation
Azure's serverless and event-driven services — Functions, Durable Functions, APIM, Event Grid, Service Bus, and Event Hubs — form a complete platform for building event-driven applications without managing servers.
- Azure Functions deep dive: execution model, cold starts, Flex Consumption plan, Durable Functions orchestration (chaining, fan-out/fan-in, human interaction, eternal orchestration)
- Azure Functions triggers and bindings: HTTP, Timer, Service Bus, Event Hubs, Blob, Cosmos DB, Queue Storage — the binding-based development model
- Azure Functions scaling: KEDA-based scaling on Container Apps vs Consumption plan automatic scaling
- Azure API Management (APIM): the enterprise API gateway — policies (rate limiting, transformation, caching, auth), products, subscriptions, and the developer portal
- Azure Event Grid: event routing across Azure services — topics, subscriptions, event filtering, and dead-letter queues
- Azure Service Bus: enterprise messaging — queues, topics, subscriptions, sessions for ordered processing, dead-letter queues
- Azure Event Hubs: high-throughput event streaming — partitions, consumer groups, capture to Blob, and the Kafka-compatible endpoint
- Azure Cosmos DB: globally distributed NoSQL — partition key design, consistency levels, change feed for event-driven patterns, serverless capacity
- Azure Logic Apps: low-code workflow automation — connectors, triggers, actions, and enterprise integration patterns
- Azure Static Web Apps: hosting SPAs with integrated Functions backends — GitHub Actions and Azure DevOps integration
- Event-driven architecture patterns: choreography vs orchestration, the outbox pattern, and saga coordination with Durable Functions
- Serverless observability: Application Insights for Azure Functions — request, dependency, exception tracking, and distributed tracing across Service Bus and Event Grid
Platform Engineering on Azure — building the internal developer platform that enterprise development teams use to self-service environments, deployments, and infrastructure without depending on the central infrastructure team for every change.
- Platform Engineering principles: golden paths, paved roads, and measuring developer experience with DORA and SPACE metrics
- Azure Landing Zones: Microsoft's reference architecture — management groups, policy assignments, hub-spoke networking, and the Enterprise-Scale CAF
- Azure Landing Zone Bicep accelerator: deploying the Microsoft reference landing zone from the ALZ Bicep repository
- Terraform Azure Landing Zones module: the community and Microsoft-maintained Terraform equivalent — when to choose Terraform over Bicep
- Azure Deployment Environments: developer self-service environment provisioning backed by Bicep or Terraform templates in Azure DevOps Catalogs
- Azure Developer CLI (azd): the developer-focused CLI for deploying Azure applications — azd templates, pipelines, and the developer workflow
- Backstage with Azure: internal developer portal — Azure DevOps plugin, ACR plugin, and Azure resource entity provider for service catalogue integration
- Bicep advanced patterns: modules registry with ACR, Bicep extensibility providers, and porting ARM templates to Bicep with decompile
- Terraform advanced patterns for Azure: Azure Verified Modules, provider aliasing for multi-subscription deployments, and AzureRM backend with state encryption
- Policy as code at enterprise scale: Azure Policy exemptions, remediation tasks, and compliance reports in pipelines
- Multi-account Azure strategy: AWS Organizations equivalent — Azure Management Groups, SCPs, delegated admin, and Control Tower customisations
- FinOps on Azure: the FinOps Foundation framework — Inform, Optimise, and Operate phases with Azure Cost Management tooling
Azure is the enterprise home for AI workloads. This track covers the infrastructure engineering required to provision, operate, and secure Azure OpenAI Service, Azure Machine Learning, Databricks, and Synapse in production.
- Azure OpenAI Service infrastructure: deploying GPT-4o and embedding models — model deployments, capacity planning, PTU (provisioned throughput units) vs standard
- Azure OpenAI private networking: Private Endpoints, network isolation, and routing enterprise traffic through Azure Firewall
- Azure AI Studio: hubs, projects, connections, and the compute infrastructure behind model deployments
- Azure AI Search: provisioning the enterprise vector search service — indexes, indexers, skillsets, and semantic ranking
- Azure Machine Learning workspace: compute clusters, compute instances, datastores, environments, and MLflow tracking integration
- AML compute targets: CPU and GPU compute clusters — NC-series and ND-series VMs, autoscaling, and low-priority (spot) nodes
- AML pipelines and components: building reusable ML pipeline steps as Docker containers — the infrastructure side of MLOps
- Model deployment infrastructure: AML Online Endpoints and Batch Endpoints — blue/green model deployments with traffic mirroring
- Azure Data Factory: managed ETL — pipelines, datasets, linked services, and integration runtimes for on-premises data
- Azure Synapse Analytics infrastructure: Spark pools, SQL pools, integration runtimes, and workspace networking with Managed VNet
- Azure Databricks infrastructure: workspace provisioning with Terraform, Unity Catalog, instance pools, and cluster policies for cost control
- Data platform security: Azure Purview data governance, row-level security in Synapse, and Unity Catalog fine-grained access control
- MLOps CI/CD: deploying AML pipelines and model endpoints from Azure DevOps Pipelines
SRE principles applied to Azure — defining SLOs backed by Application Insights data, automating toil with Azure Automation, building chaos experiments with Azure Chaos Studio, and operating production Azure at enterprise scale.
- Azure Monitor Logs in depth: workspace design (centralised vs decentralised), data collection rules (DCR), table retention tiers, and cost management
- KQL mastery: advanced patterns — time series analysis, series_decompose_anomalies(), machine learning functions, and exporting to Power BI
- Azure Managed Grafana: managed Grafana with Azure Monitor, Prometheus, and Log Analytics data sources — operational dashboards without managing Grafana infrastructure
- Azure Monitor Managed Service for Prometheus: scraping AKS metrics into a managed Prometheus-compatible store — PromQL and Grafana integration
- OpenTelemetry Collector on Azure: deploying as a DaemonSet on AKS or as a Container App — telemetry pipelines to Azure Monitor and Prometheus
- Application Insights in depth: custom events, custom metrics, availability tests (URL ping, multi-step), user flow analysis
- Azure Monitor Workbooks: interactive, parameterised reports — SLO dashboards and incident review workbooks
- Azure Monitor alerts at scale: alert processing rules for maintenance windows, programmatic alert management with Terraform
- SLIs, SLOs, and error budgets on Azure: defining SLIs from Application Insights data — building SLO dashboards with KQL and Azure Monitor Workbooks
- Multi-window multi-burn-rate alerting: the Google SRE alerting approach with Azure Monitor metric alerts
- Azure Chaos Studio: managed chaos engineering — fault library (VM shutdown, AKS pod delete, network latency, Service Bus outage), experiment design, and safety guards
- Resilience testing: validating Container Apps scale-out, AKS node pool failover, Azure SQL failover group switchover under chaos
- Azure Automation: runbooks (PowerShell/Python), update management for VMs, and automated remediation triggered by Azure Monitor alerts
- Azure Logic Apps for incident management: automated response — alerting PagerDuty, creating Azure DevOps work items, and Teams notifications
- Toil reduction on Azure: automating repetitive operations with Azure Functions, Logic Apps, and Event Grid-triggered automation
- Blameless post-mortems: Azure incident timeline reconstruction using Activity Logs, Application Insights, and Sentinel — action items in Azure DevOps Boards
- Azure Service Health: configuring alerts for regional outages, planned maintenance, and health advisories — embedding in SRE dashboards
🎓 Microsoft Certifications Aligned
Every component of this program is aligned with one or more Microsoft or industry certifications. Hands-on project experience from each track substantially accelerates your certification path.
AZ-104 — Azure Administrator Associate
VMs, VNet, Storage, IAM, Entra ID, Monitor — the foundational Azure cert
AZ-900 — Azure Fundamentals
Cloud concepts, core Azure services, pricing, and SLAs
CKA — Certified Kubernetes Administrator
The most in-demand Kubernetes certification globally
AZ-500 — Azure Security Engineer Associate
Defender, Sentinel, Key Vault, Managed Identity, and DevSecOps
SC-200 — Microsoft Security Operations
Microsoft Sentinel, Defender XDR, and incident investigation
AZ-204 — Azure Developer Associate
Functions, Durable Functions, APIM, Service Bus, Event Grid, Cosmos DB
AZ-400 — DevOps Engineer Expert
Azure DevOps Pipelines, GitHub Actions, Landing Zones, and FinOps
AI-102 — Azure AI Engineer Associate
Azure OpenAI Service, AI Studio, AI Search, and AI Safety
📅 Schedule & Timings
Weekday Groups
Weekend Groups
📍 Location: In-house training, F-11 Markaz, Islamabad · 📱 Online option available for out-of-city participants