惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
博客园_首页
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
月光博客
月光博客
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
C
Check Point Blog
V
V2EX
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Reading a Kubernetes bill: what each line item actually m...
Luke · 2026-04-23 · via DEV Community

The bill arrived on a Tuesday, up 38% on last month, and finance wanted to know why by Friday. The attachment was 2,400 lines of m5.2xlarge, persistent-disk-ssd, network-inter-region-egress. Nothing that mapped to a namespace, a team, or anything anyone in the room recognised.

If you run Kubernetes in production you've had this week, or you will. And the thing that makes it hard isn't the size of the number. It's that the cloud bill and the cluster are describing two entirely different systems in two entirely different languages, and the translation is your problem.

Right-sizing requests is where most of the advice lands, and it's not wrong, just downstream. You can't fix what you can't attribute. So before getting into tuning, it's worth looking at where the money actually goes, and why each category tends to quietly grow without anyone noticing.

Compute is the obvious one, usually 60 to 75% of the bill, and almost none of it is spent on the thing you'd expect. The mental model most people start with is that pods cost money, but pods don't appear on any invoice. Nodes do. A 16-vCPU node running at 40% average utilisation costs exactly the same as one running at 95%, and the scheduler will happily keep it alive as long as something on it has a reservation. Requests, in other words, are what you're really paying for, not usage.

This is where the familiar failures live. Someone sized a deployment during a load test six months ago, and the peak was real, but the other 99% of the time the pod uses a tenth of what it reserves. Every replica now holds ten times what it needs, and the autoscaler keeps the nodes warm to honour it. Then the node pools fragment: one for GPUs, one for high-memory workloads, one for ARM, each with its own minimum size and its own idle headroom, and you're paying the tax on all of them. Bin-packing looks fine on paper because bin-packing reads requests, not reality, and if the requests are fiction then so is the packing. Scale-up is fast, scale-down is deliberately slow, and a 9am spike can leave you holding nodes until lunchtime.

The honest answer to "why is compute so high" is almost never "we have too much traffic". It's that reservations exceed usage across fragmented pools, and the scheduler can only be as good as the numbers you hand it.

Storage is a different shape of problem, because storage doesn't spike, it accretes. It looks cheap per GB on the pricing page and it is, individually, and that's exactly why nobody notices when it quietly doubles. The default reclaim policy for most PersistentVolumes is Retain, which means scaling a StatefulSet from ten replicas to three leaves seven volumes behind, and they'll still be there next year unless someone goes looking. Snapshots compound the same way: a Helm chart installed in 2022 set up daily snapshots with a comment in the readme saying "configure retention in production", and of course nobody did, and now there are fourteen hundred of them. Log volumes behave the same. Retention configured at the application layer doesn't shrink the disk underneath, and disks can only grow, not shrink, on most providers. A Postgres instance given 500GB "to be safe" that uses 40GB will stay at 500GB forever.

Compute spikes get noticed because someone gets paged. Storage bloat is invisible until someone actually opens the console, which is rarely.

Then there's egress, which is the line that causes the most genuine surprise when it arrives, because it's the one least visible from inside the cluster. Prometheus has no idea what AWS is going to charge you for a cross-AZ hop. And cross-AZ is the big one: frontends in one zone, caches in another, databases in a third, with every request making two or three zone crossings both ways, each direction billed separately on most providers. A service doing ten thousand requests a second with a 2KB response between zones works out to roughly $400 a month in egress alone, and there's rarely just one service doing this.

Inter-region replication is the other classic. A DR plan was drafted, replication was set up, the plan was quietly shelved six months later, and the replication kept running. Image pulls do it too, in a smaller way, especially during cluster upgrades or autoscale churn where the same 2GB image gets pulled onto a fresh node for the fifteenth time that week. None of this shows up anywhere until the invoice lands.

The long tail is a thousand small cuts. A Service of type LoadBalancer provisions a dedicated cloud LB at fifteen to twenty-five dollars a month baseline, and teams create them freely, so the cluster ends up with eighty of them where an ingress controller would have covered sixty. Managed databases sit at minimum spec for services that got deprecated eighteen months ago, holding four megabytes of data on four gigabytes of instance. NAT gateways charge per GB processed, which means every byte leaving a private subnet, every image pull, every telemetry payload to a SaaS vendor, gets billed twice: once through the NAT, once as egress. And none of this is on any cluster dashboard, because none of it is a cluster concept.

Which is the thing worth sitting with, really, because it's the whole problem in miniature. The cloud bill speaks in SKUs: n2-standard-8, pd-ssd, inter-zone-egress. The cluster speaks in namespaces, workloads, teams, environments. Out of the box, nothing translates between them. There's no native way to answer "how much did the payments team spend last month" without a lot of manual correlation work, and that's not a tooling gap you can close by tuning CPU limits. Right-sizing is a real 15% win on the wrong axis. The bigger win, the one that changes how the conversation with finance goes, is knowing which 15% of workloads generate 60% of the spend, who owns them, and whether they're actually earning their keep. Once that's visible, the decisions get a lot easier. Until it is, you're arguing about requests in a vacuum.

I've been working on this problem for a while, which is what this site is about. Happy to answer specific questions in the comments.