8-Week real world Kubernetes on AWS Bootcamp with DevSecOps and AIOps

8 weeks. Beginner to advanced. Real production implementations across Kubernetes on AWS, end-to-end DevSecOps, and AIOps: taught the way it actually works in companies.

Format: Live Classes | Duration: 8 Weeks | Schedule: 4 days/week(Tuesday, Wednesday, Thursday, friday), 2 hours each
Timings: 9:30 PM – 11:30 PM IST | Total Classes: 32 | Language: English


Week 1: Kubernetes Fundamentals on Kind (2-Tier App)

Complete K8s fundamentals with monitoring and GitOps from day one

Topics Covered

  • The story behind Kubernetes β€” the why before the how
  • Kubernetes architecture deep dive (Control Plane, Worker Nodes, etcd, kubelet, kube-proxy)
  • Setting up multi-node clusters with Kind (kind config, port mappings, ingress setup)
  • Core concepts: Pod, Service, Deployment, ReplicaSet
  • Getting comfortable with kubectl β€” imperative vs declarative
  • Understanding YAML manifests in depth
  • Namespaces, Labels, Selectors, Annotations
  • ConfigMaps and Secrets management
  • Pulling private images using ImagePullSecrets
  • Resource Requests, Limits, Quotas, LimitRanges
  • Liveness, Readiness, and Startup probes
  • Init containers and sidecar patterns
  • Pod Disruption Budgets
  • HPA and VPA for autoscaling
  • Rolling upgrades, rollbacks, deployment strategies
  • CrashLoopBackOff and OOMKilled debugging
  • Kubernetes DNS and service discovery internals
  • Reading and interpreting Kubernetes events
  • Using Freelens / k9s for cluster navigation
  • Basic monitoring with Prometheus + Grafana
  • GitOps with ArgoCD
  • End-to-end CI/CD pipeline β€” build, push, deploy
  • Live troubleshooting techniques

πŸ— Project: Full 2-tier e-commerce app on multi-node Kind cluster with ConfigMaps, Secrets, HPA, probes, PDBs, basic Prometheus + Grafana monitoring, and ArgoCD GitOps with CI/CD pipeline


Week 2: Production-Grade EKS with Terraform (3-Tier App + Helm)

Real AWS infrastructure, Terraform-driven EKS, Helm packaging, migrations

Topics Covered

  • Production-grade EKS cluster with Terraform (VPC, node groups, add-ons as modules)
  • Managing multiple environments with Terraform workspaces β€” dev, staging, prod
  • EKS add-ons: VPC CNI, CoreDNS, EBS CSI Driver
  • EKS managed node groups vs self-managed nodes
  • Helm charts deep dive β€” writing, packaging, templating, values hierarchy
  • Helm dependencies and umbrella charts
  • IRSA β€” Kubernetes to AWS IAM with OIDC (Terraform-driven)
  • Running a 3-tier app: Frontend + Backend + RDS PostgreSQL
  • Database migrations using Kubernetes Jobs and Helm hooks
  • Migration CronJobs for scheduled data tasks
  • Init containers for DB readiness checks
  • AWS Load Balancer Controller deployed via Terraform + Helm
  • Ingress with AWS annotations and target group configuration
  • AWS Secrets Manager basic integration
  • Domain, DNS, and SSL/TLS termination with ACM
  • ExternalDNS for automatic Route53 records
  • Kubernetes RBAC hardening β€” ServiceAccounts, ClusterRoles, RoleBindings
  • aws-auth ConfigMap and EKS access entries

πŸ— Project: Production-grade 3-tier e-commerce app on EKS β€” packaged as Helm chart, deployed via Terraform, with migration jobs/CronJobs, IRSA, RDS, custom domain, SSL, and RBAC hardening


Week 3: Microservices, Service Mesh, mTLS, API Gateway

Complex microservices patterns with service mesh, mTLS, and proper gateways

Topics Covered

  • Why microservices on Kubernetes β€” patterns and anti-patterns
  • Inter-service communication β€” ClusterIP vs headless vs service mesh
  • Service mesh fundamentals β€” when to use it, when not to
  • Istio installation and architecture deep dive
  • mTLS for zero-trust service-to-service communication
  • Istio traffic management β€” virtual services, destination rules
  • Canary deployments and traffic splitting with Istio
  • Visualising mesh traffic with Kiali
  • Gateway API β€” the future of ingress
  • API Gateway patterns on Kubernetes
  • Rate limiting, retries, circuit breaking at the mesh level
  • Distributed tracing across microservices via mesh
  • Pod topology spread constraints for multi-AZ resilience
  • Network Policies for zero-trust pod-to-pod communication
  • Egress controls and namespace isolation
  • ArgoCD App-of-Apps and ApplicationSet for microservices GitOps

πŸ— Project: Deploy a proper microservices e-commerce app on EKS with Istio service mesh, mTLS, canary deployments, Gateway API ingress, network policies, and ArgoCD App-of-Apps GitOps


Week 4: Logging, Monitoring, Secret Management, SRE

Full observability stack, Vault for secrets, SLO/SLI/SLA implementation

Topics Covered

  • How logging and monitoring work in real companies
  • Different observability strategies for different workloads
  • Prometheus Operator and ServiceMonitor CRDs deep dive
  • Loki for log storage and querying
  • Fluent Bit for log aggregation on EKS
  • Grafana dashboards for Kubernetes, RDS, Lambda, and cloud resources
  • AlertManager β€” routing alerts to Slack and PagerDuty
  • OpenTelemetry for distributed tracing
  • AWS CloudWatch Container Insights integration
  • Monitoring differences: Fargate vs managed node groups
  • HashiCorp Vault on Kubernetes β€” architecture and deployment
  • Vault Agent Injector for secret injection into pods
  • Vault dynamic secrets for databases
  • External Secrets Operator vs Vault Agent β€” when to use which
  • Secret rotation and lifecycle management
  • SRE implementation β€” SLO, SLI, SLA, error budgets
  • Defining meaningful SLIs for microservices
  • Error budget dashboards and burn rate alerts in Grafana
  • On-call runbook writing and documentation standards
  • Cost visibility β€” Kubecost / OpenCost for namespace-level attribution

πŸ— Project: Full observability + secrets stack on the microservices app β€” Prometheus + Loki + Grafana with SLO dashboards and burn rate alerts, AlertManager Slack integration, distributed tracing, Vault for dynamic secrets, and cost visibility dashboard


Week 5: Scaling, StatefulSets, Storage

Karpenter, KEDA, persistent workloads on production

Topics Covered

  • Karpenter architecture β€” node provisioner vs Cluster Autoscaler
  • Karpenter NodePool and EC2NodeClass configuration
  • Cost optimisation with Spot + On-Demand mixed fleets
  • EKS Auto Mode β€” what it is and when to use it over Karpenter
  • KEDA for event-driven pod autoscaling
  • KEDA scalers β€” SQS, Kafka, Prometheus metrics, cron
  • HPA vs KEDA vs VPA β€” when to use what
  • Persistent Volume (PV), PVC, and StorageClass concepts
  • Dynamic vs static volume provisioning on EKS
  • Running StatefulSets on Kubernetes (PostgreSQL, Kafka examples)
  • Headless Services for StatefulSet DNS
  • EBS vs EFS β€” choosing the right storage for the right workload
  • Troubleshooting multi-attach volume errors
  • Debugging common StatefulSet failures
  • Volume snapshots and backup strategies
  • Stateful workload backup and disaster recovery patterns

πŸ— Project: Microservices app enhanced with Karpenter Spot node scaling, KEDA queue-based pod autoscaling, StatefulSets for Kafka and PostgreSQL with backups and disaster recovery setup


Week 6: DevSecOps on Kubernetes

End-to-end security β€” supply chain, runtime, policy, compliance

Topics Covered

  • DevSecOps fundamentals β€” shift-left vs shift-right security
  • Threat modelling for Kubernetes workloads
  • Docker image optimisation techniques
  • Multi-stage Docker builds for production
  • Distroless and minimal base images for security
  • Trivy for container image vulnerability scanning in CI
  • SBOM generation with Syft and vulnerability scanning with Grype
  • Image signing and verification with Cosign and Sigstore
  • Admission controllers β€” ValidatingAdmissionWebhook and MutatingAdmissionWebhook
  • OPA Gatekeeper for policy-as-code
  • Kyverno for Kubernetes-native policy enforcement
  • Pod Security Standards (Restricted, Baseline, Privileged)
  • Securing the Kubernetes API server and etcd
  • Runtime security with Falco β€” detecting suspicious container behaviour
  • Network security β€” Cilium NetworkPolicies, eBPF-based observability
  • Secrets scanning in CI with gitleaks and trufflehog
  • Secure CI/CD pipelines β€” OIDC-based auth, no long-lived credentials
  • Supply chain security β€” SLSA framework, attestations
  • Compliance β€” CIS Kubernetes Benchmark, kube-bench, kube-hunter
  • RBAC audit and least privilege enforcement
  • Audit logging for the cluster

πŸ— Project: Full DevSecOps pipeline on the microservices app β€” Trivy + Grype + SBOM in CI, Cosign image signing with verification at admission, Kyverno policies enforcing Pod Security Standards, Falco for runtime threats, gitleaks in CI, CIS benchmark audit with kube-bench, and audit logging shipped to Grafana


Week 7: CRDs, Operators, Chaos, Production Incidents

Extending Kubernetes, chaos engineering, real war rooms, interview prep

Topics Covered

  • Custom Resource Definitions (CRDs) β€” extending the Kubernetes API
  • How Karpenter itself is built on CRDs β€” NodePool and EC2NodeClass as real examples
  • Kubernetes Operators β€” encoding operational knowledge into controllers
  • Operator pattern β€” watch, reconcile, act loop explained
  • Building a simple Operator with the Operator SDK
  • Chaos engineering basics
  • LitmusChaos β€” pod failure, network failure, resource hog experiments
  • Designing chaos experiments for production readiness
  • SRE deep dive β€” incident response lifecycle
  • Discussing multiple real production incidents
  • Live war room simulation β€” Incident 1 (OOMKill cascade on order service)
  • Live war room simulation β€” Incident 2 (DB connection pool exhaustion under load)
  • Writing RCAs and postmortems for both incidents
  • Kubernetes system design interview questions
  • How to present the capstone project on your resume and in interviews
  • Scenario-based DevOps interview questions around Kubernetes

πŸ— Project: Build a custom Operator with Operator SDK, run LitmusChaos experiments on the microservices app, two full war room simulations with live troubleshooting, and a complete resume-ready project documentation package


Week 8: AIOps on Kubernetes + RAG Implementation

Running AI workloads on Kubernetes and building intelligent infrastructure

Topics Covered

  • How AI fits into real DevOps workflows β€” automated error detection, log triage, anomaly detection
  • Deploying Ollama on Kubernetes β€” GPU vs CPU node scheduling, resource limits for AI workloads
  • Running local LLMs (Gemma 2B) as a Kubernetes Deployment with persistent model storage
  • Building a RAG pipeline on Kubernetes β€” Qdrant vector database as a StatefulSet
  • Document ingestion pipeline β€” chunking, embedding with nomic-embed-text, storing in Qdrant
  • Semantic search β€” querying vectors to retrieve relevant context before LLM inference
  • Connecting RAG to real infrastructure data β€” feeding live logs, metrics, incident history
  • AI-powered health checker as a Kubernetes CronJob β€” automated failure detection and root cause suggestions
  • Exposing the AI chat interface via Kubernetes Ingress with proper auth
  • Resource-aware scheduling for AI pods β€” nodeSelectors, tolerations, priority classes
  • Observability for AI workloads β€” tracking inference latency, query quality, model health in Grafana
  • Agentic Kubernetes troubleshooting with AI tools

πŸ— Project: Full AIOps monitoring system β€” Spring Boot app with failure injection, Python health checker CronJob, Ollama + Gemma 2B for log analysis, Qdrant RAG pipeline with uploadable knowledge base, and a React dashboard with live AI chat. Everything local. Zero external API calls.

Reach out for Queries, Part payment requests

20,000

Testimonials

Balmiki Badatya

Livingdevops bootcamp covers everything Linux, Docker, EKS, Terraform, Python, and it's all structured so well that nothing feels rushed. The best part is how practical it is every concept comes with real examples that actually make sense instead of just slides and definitions.

Sandeep

I have recently completed the AWS DevOps Bootcamp, and it has been a great experience for my career. The program is well-structured, starting from foundational cloud concepts and progressing into advanced DevOps practices like CI/CD pipelines, infrastructure as code, and containerization. Throughout the bootcamp Akhilesh was very supportive and always ready to clarify doubts and provide industry insights. I would highly recommend this bootcamp to anyone looking to build or advance their career in cloud and DevOps.

Hemant kumar

​"I recently completed the DevOps bootcamp from Akhilesh, and it was a game-changer. His ability to break down complex concepts into actionable steps made the material incredibly easy to digest. I walked away not just with new knowledge, but with the confidence to apply it immediately to my role."

Ameet Khemani

Akhilesh, you are one of the best mentor in today's time. I really learned new things with clear cut understanding and that also in reference with real world examples. I would definitely recommend this course to anyone who want to do better in DevOps.

Avinash V

As a senior Devops professional with 12+ years with mostly in the legacy enterprise environments, Akhilesh’s Devops bootcamp was the ideal bridge to cloud-native mastery with production focused training and projects, live troubleshooting etc. I would highly recommend his bootcamps to anyone who are serious to learn and excel in the Devops field.

Varsha Gore

Akhilesh has provided structured DevOps course details right from the beginning. I could see the detail oriented approach and his sincerity throughout those sessions. He was able to show what to expect and how to troubleshoot. The additional resources were also very helpful.

Sajitha

Your structure of topics & teaching method are really great. This help us to understand the realworld infrastructure and daytoday activities in devops well. Thankyou AKhilesh for sharing knowledge & experience.

Gaurav Dubey

One of the best Devops Project Course. Thanks Akhilesh. I loved the real time troubleshooting part, i hav never seen someone do this

Balmiki Badatya

Livingdevops bootcamp covers everything Linux, Docker, EKS, Terraform, Python, and it's all structured so well that nothing feels rushed. The best part is how practical it is every concept comes with real examples that actually make sense instead of just slides and definitions.

Sandeep

I have recently completed the AWS DevOps Bootcamp, and it has been a great experience for my career. The program is well-structured, starting from foundational cloud concepts and progressing into advanced DevOps practices like CI/CD pipelines, infrastructure as code, and containerization. Throughout the bootcamp Akhilesh was very supportive and always ready to clarify doubts and provide industry insights. I would highly recommend this bootcamp to anyone looking to build or advance their career in cloud and DevOps.

Hemant kumar

​"I recently completed the DevOps bootcamp from Akhilesh, and it was a game-changer. His ability to break down complex concepts into actionable steps made the material incredibly easy to digest. I walked away not just with new knowledge, but with the confidence to apply it immediately to my role."

Ameet Khemani

Akhilesh, you are one of the best mentor in today's time. I really learned new things with clear cut understanding and that also in reference with real world examples. I would definitely recommend this course to anyone who want to do better in DevOps.

Avinash V

As a senior Devops professional with 12+ years with mostly in the legacy enterprise environments, Akhilesh’s Devops bootcamp was the ideal bridge to cloud-native mastery with production focused training and projects, live troubleshooting etc. I would highly recommend his bootcamps to anyone who are serious to learn and excel in the Devops field.

Varsha Gore

Akhilesh has provided structured DevOps course details right from the beginning. I could see the detail oriented approach and his sincerity throughout those sessions. He was able to show what to expect and how to troubleshoot. The additional resources were also very helpful.

Sajitha

Your structure of topics & teaching method are really great. This help us to understand the realworld infrastructure and daytoday activities in devops well. Thankyou AKhilesh for sharing knowledge & experience.

Gaurav Dubey

One of the best Devops Project Course. Thanks Akhilesh. I loved the real time troubleshooting part, i hav never seen someone do this