đ Everything about EKS & AI Infrastructure Newsletter "#55" âď¸â¤đ¨âđť
AI is speeding up how we ship on AWS, EKS, and GPUsâbut also forcing us to rethink what our experience is actually for.

Dear EKS & AI Infrastructure enthusiasts,
Welcome to Everything about EKS & AI Infrastructure #55. This week sits at the intersection of two very different feelings: on one side, we have genuinely hard, exciting problems in front of usâoptimizing LLM serving without burning $10K per experiment, squeezing more out of GPUs on EKS, making multi-arch and multi-cluster setups actually manageable. On the other side, the way we get to those solutions is changing so fast that itâs hard to tell where our hard-won experience ends and the agentâs autocomplete begins. This edition leans into that tension: AI-driven performance engineering, GPU- and EKS-heavy architectures, and the very human question of what it means to build platforms in a world where the tooling is sprinting ahead of us.
- Performance Engineering in Modern AI SystemsđŠď¸
đŠď¸ Why LLM serving optimization costs $10K per experimentâand how emulation fixes it
Testing a single LLM serving configuration takes 2-4 hours on a GPU cluster and costs thousands of dollars. Want to optimize your vLLM setup? Youâll burn through budget before learning anything useful. The team behind Vidur, just released Revati, which solves this by running actual vLLM and SGLang code on CPUs instead of reimplementing logic manually. CUDA calls get intercepted and stubbed out, so new features work automaticallyâno maintenance tax.
The clever part is âtime jumps.â Instead of waiting for GPU kernels to finish (which would be just as slow), Revati fast-forwards the virtual clock by the predicted kernel duration. The hard problem is keeping distributed workers synchronizedâif one GPU jumps time while another is still processing, the system hangs. They solved it with a barrier protocol that preserves causality, achieving 5-17Ă speedup with less than 5% prediction error on latency distributions.
If youâre running vLLM on EKS and trying to figure out the right tensor parallelism or batch size, this changes the workflow: test configurations locally, deploy only the winners to your GPU nodes. Iteration goes from expensive trial-and-error to cheap exploration before you spin up a P5 instance.â
- Starred Content â
â Simplify Kubernetes Cluster Management Using ACK, kro, and Amazon EKS (by Islam Mahgoub, Kumudhan Cherarajan, Markos Kandylis, Ramesh Mathikumar, and SĂŠbastien Allamand)
Most teams managing multiple EKS clusters juggle Terraform, Helm, and scattered scripts. This post shows how to manage an entire fleet using only the Kubernetes API: ACK controllers create AWS resources from CRs, kro handles dependencies, and Argo CD deploys via GitOps.â
The interesting part is kroâs ResourceGraphDefinition. Creating an EKS cluster requires a VPC, subnets, IAM roles, and strict ordering. kro wraps this into a single custom resource that manages dependencies automatically using CEL expressions. For multi-account setups, ACK controllers assume roles in workload accounts and create resources there. The workflow: raise a PR with a cluster manifest, Argo CD applies it, kro orchestrates everything, cluster spins up with add-ons installed.â
One caveat: kro isnât production-ready yet. But if youâre managing 10+ clusters and tired of fragmented tooling, this pattern is worth watching.â
â Observing and Scaling MLOps Infrastructure on Amazon EKS (by Elamaran Shanmugam, Isha Dua, and Sanjeev Ganjihal)
Most teams running ML workloads on EKS hit the same wall: traditional monitoring doesnât show you whatâs actually slow. Is your training job stuck because of GPU memory bandwidth, gradient sync delays, or just bad scheduler placement? You canât tell from CPU and memory graphs. This post walks through building observability that actually works for MLâlayering infrastructure metrics (Node Exporter), Kubernetes state (kube-state-metrics), and hardware-specific telemetry. NVIDIA GPUs need DCGM for CUDA utilization; AWS Neuron chips need NeuronCore metrics. Different hardware, different signals.
The more interesting bit is autoscaling. You canât scale ML pods on CPU thresholdsâit doesnât match how the workload behaves. The post shows how to use Prometheus Adapter to feed ML-specific metrics (active inference requests, JupyterHub sessions) into the Horizontal Pod Autoscaler, so your Ray or MLflow deployments scale when demand actually shifts, not when some arbitrary CPU percentage gets crossed. If your GPU pods are still scaling like stateless web apps, this is worth readingâthe failure modes are different, and the tooling needs to reflect that.
â Automating EKS Cluster Upgrades with Lambda and EventBridge
Manually upgrading EKS clusters across environments is one of those chores everyone dreadsâeasy to mess up, hard to standardize, and painful to repeat. This post lays out a clean automation pattern: use EventBridge Scheduler to trigger AWS Lambda functions that orchestrate control plane upgrades, add-on updates, and managed node group rollouts via CloudFormation, all while respecting Pod Disruption Budgets so workloads stay available. The companion GitHub repo (automate-eks-upgrades) ships the implementation, so you can deploy and adapt it instead of starting from scratch.
What I like about this is that it treats upgrades as a recurring workflow, not a one-off project. You get logged, repeatable runs, fewer manual steps, and a clear separation between âwhenâ upgrades happen (EventBridge) and âhowâ theyâre executed (Lambda + CloudFormation). If youâre running multiple EKS clusters and still doing upgrades by hand or copy-pasting eksctl commands, this is a sharp baseline to adopt and then evolve.
â Multi-Architecture Workloads on Amazon ECS Managed Instances
This AWS Builder Community article by Abhishek Nanda walks through something a lot of teams are quietly wrestling with: how to run x86, ARM, and GPU workloads in one place without building three separate infrastructures. Using Amazon ECS Managed Instances, you can mix Graviton (ARM) for cost-efficient services, x86 for legacy or specialized workloads, and GPU instances for ML inferenceâall in a single ECS cluster, while AWS handles provisioning, scaling, and patching of the underlying EC2 fleet.
What I like here is the practicality: the guide shows how to wire up capacity providers for different architectures, combine Spot and On-Demand for flexibility, and let ECS place tasks on the right hardware without you micromanaging individual node groups. If youâre already comfortable with EKS but havenât revisited ECS in a while, this is a good reminder that âmanaged EC2 with multi-arch supportâ is now a first-class option, especially for teams mixing web, data, and GPU workloads.
â NVIDIA GPU to AWS EC2 Instance Mapping (by Gary Stafford)
Gary Stafford published a super handy reference chart mapping NVIDIA GPUs (T4, L4, L40S, H100, B100, and friends) to the AWS EC2 instance families that actually ship them. If youâre trying to choose between G, P, and new accelerated instance types for LLM inference, fine-tuning, or real-time workloads, this kind of mapping saves a ton of console-diving and doc reading. It also surfaces practical questions like âis upgrading from L4 to L40S worth it for my workload?â and âwhat do I really get in memory bandwidth going from Ada to Blackwell?â
This is especially useful if youâre running mixed GPU fleets behind EKS or ECS and need to standardize on a small set of SKUs for cost and ops sanity. Instead of guessing, you can line up GPU memory, bandwidth, and instance pricing in one place and pick the right tier for batch vs real-time inference. Bookmark material.
- Announcements đ˘
đ˘ Claude Opus 4.6: Multi-agent teams and 1M token context
Anthropic just released Opus 4.6, built for navigating large codebases, deeper planning, and expert-level judgment across domains. The standout features: multiple agents working in parallel on the same task in Claude Code, adaptive thinking and context compaction for longer-running tasks on the API, and a 1M token context window (in research preview)âthe first Opus-class model to hit that scale.
đ˘ Kiro adds Opus 4.6 support for spec-driven development
Kiro integrated Opus 4.6 immediately, combining it with their spec-driven development workflow. If youâre using Kiro for AI-SDLC, the jump to Opus 4.6 means better reasoning during architecture and deployment phases, and the ability to handle more complex multi-agent orchestration. Worth experimenting with if youâre already running agent-driven builds.
Community & Career đ¤
đ¤ Amazon Nova AI Hackathon: $40K in prizes for building production AI agents
AWS is running a hackathon focused on Amazon Nova Actâtheir new model designed for automating production UI workflows. Build AI agents that interact with real interfaces, compete for $40,000 in cash prizes plus $55,000 in AWS credits. Deadline is March 9, 2026. If youâve been experimenting with agentic workflows or UI automation (or just want an excuse to try Nova Act), this is a solid forcing function with real prizes and credits to offset experimentation costs.
đ¤ From Workshop to Production in 14 Days: AI-SDLC in Practice (by Adam Divall)
Adam Divall attended a Kiro CLI workshop at AWS re:Invent 2025 and built a production-ready AWS MAP portal in 14 days using AI-driven Software Development Lifecycle (AI-SDLC). Instead of traditional development, he used 5 specialized agentsâProduct Owner, Domain Architect, Technical Architect, Full-Stack Engineer, and Deployment Engineerâeach handling distinct phases from requirements to deployment. The result: 6-8Ă faster delivery, 14 content pages, interactive calculators, a Bedrock-powered chatbot, and full auth infrastructure running for under $30/month.
What stands out is the Deployment Engineer agent autonomously resolving 80% of deployment issues without human interventionâno context switching, no boilerplate work, just strategic decisions and validation. Adam walks through the full build process, tooling choices, and what actually worked versus what didnât. If youâve been wondering what agent-driven development looks like beyond demos and toy projects, this is a real example with costs, timelines, and lessons learned from putting it in production.
đ¤ Terraform Weekly #260 (by Anton Babenko)
This issue focuses on how real teams run Terraform in production: Preplyâs IaC setup with Atlantis, versioning Terraform binaries/providers cleanly, and governance patterns for Terraform at scale. Thereâs also a handy piece on automating Route 53 DNS updates when ALBs are reprovisionedâuseful if youâre cycling load balancers in front of EKS or GPU-backed services. If Terraform is part of your AWS platform story, this is a solid issue to skim and the newsletter is worth subscribing to.
đ¤ Learn Kubernetes Weekly #168
This issue is packed with the kind of debugging and systems stories platform teams actually care about: a great post on tracing a cluster-wide network outage back to OOM-killed daemons and serial console bottlenecks, a hands-on guide to deploying an OpenTelemetry-native LGTM stack (Loki, Grafana, Tempo, Mimir) on Kubernetes, and a wild case study on shrinking a container image from 800 GB to 2 GB through ruthless trimming and multi-stage builds. Thereâs also Lynq, a SQL-like tool for querying Kubernetes state directly from inside the cluster, which feels like kubectl meets SELECT * FROM pods in all the right ways.
- Highlights â¨
⨠On-demand and scheduled scaling of Amazon MSK Express clusters
Kafka workloads rarely run at steady stateâthey spike during business hours, burst during events, and go quiet overnight. This AWS blog shows how to automate horizontal scaling for MSK Express clusters using two strategies: on-demand scaling based on CloudWatch metrics (CPU, throughput, custom business metrics), and scheduled scaling triggered by cron expressions for predictable patterns. The solution leverages MSK Expressâs intelligent rebalancing, which redistributes partitions 180x faster than standard brokers, so adding or removing capacity becomes a single API call instead of manual partition management.
The blog walks through deploying the solution with AWS CDK, configuring thresholds, and tuning monitoring frequency to balance responsiveness against Lambda and CloudWatch costs. If youâre running Kafka on AWS and manually adjusting broker counts or overprovisioning for peak traffic, this is a practical answer to matching capacity to actual demand.
⨠GitOps-Friendly Secret Management with External Secrets Operator and Argo CD (by Artem Lajko)
There are plenty of ways to handle secrets in Kubernetesâplain Secrets, Sealed Secrets, Vault, and moreâbut at scale, most teams want two things: GitOps for configuration and no secrets in Git. This article shows how to get there with External Secrets Operator plus Argo CD, using a hub-and-spoke model with dedicated vaults and both agentless and agent-based setups. The nice part is that it doesnât stay theoretical; Artem Lajko shares what actually worked (and what hurt) while building the Kubara framework in real enterprise environments. If youâre trying to standardize secret management across clusters without bolting on yet another custom tool, this is worth a read.
đ Sponsor Section
At the moment, we donât have a sponsor for this edition, but we look forward to working with companies and organizations that support the EKS & AI Infrastructure community in future editions. If you or your company is interested in sponsoring, please contact us at đ§ thecloudtechforall@gmail.com
đ Words from the Author
I read Adityaâs post this week about being good at something that suddenly became âfree and abundant,â and it hit me in a very specific, uncomfortable way.
For most of my life, the story in my head has been simple: if I work hard, learn fast, and care more than average, things will roughly make sense. Effort turns into skill, skill turns into value, value turns into some kind of security. Not perfect, not fair, but at least vaguely linear.
This new wave of AI breaks that story.
Itâs not just that tools got better. Itâs that the gap between âIâve practiced this for yearsâ and âI just tried this for the first time with an agentâ is collapsing in real time. And if youâve built your identity around being âthe person who knows how to do hard things,â thatâs not a small adjustment. Itâs an existential one.
Iâve noticed something strange in myself lately:
On the surface, Iâm more productive than ever. I can write, experiment, ship, and learn faster than I thought possible. But underneath, thereâs this quiet question: what part of this is actually me?
Not the prompt. Not the output. Me.
Thereâs also a different kind of loneliness that comes with this. So much of my growth came from struggling with things alongside other peopleâlate-night messages, shared confusion, slow progress. Now a lot of that struggle is happening in private chats with a model, and the human partâthe messy, shared partâshrinks if weâre not intentional about it.
I donât have a neat lesson here. I just know this:
I donât want my value as a person to be âI can do things an AI can now do faster.â
I donât want my days to be a quiet competition with a tool that doesnât even know I exist.
I donât want to wake up one day and realize I optimized everything except the parts of life that actually matter.
So Iâm trying something different this year:
I still care about the work. I still love the craft. But Iâm paying more attention to who Iâm becoming while everything is speeding upâhow I treat people, how honest I am about my fears, how generous I am with what Iâve learned, how often I say âthank youâ while people are still here to hear it.
If this era is showing me anything, itâs that skills can be automated frighteningly fast. The things that canât be automatedâhow we show up for each other, what we choose to care about, what weâre willing to say out loudâsuddenly feel a lot more important.
If youâre feeling excited and scared and a bit lost at the same time, same here. Maybe the goal isnât to resolve that tension quickly, but to live honestly inside it for a whileâand see who we become on the other side.
Thank you for reading Everything about EKS & AI Infrastructure Newsletter #55
Happy Building! đ




