Kubernetes Cluster Cost Estimator

What a cluster costs a month, at rates you supply. No price table is bundled on purpose: a price list in a static site is stale the week it ships, and a wrong number that looks authoritative is worse than no number.

Take these from your own bill rather than from a list price, which a committed-use or reserved discount makes meaningless.

Paste below, or drop a file anywhere on this panel

Or drop a file anywhere on this panel. Nothing is uploaded: the analysis runs in this tab.

The answer appears here

Paste on the left and press Estimate. Nothing leaves this tab.

Common mistakes

These are the ones that fail silently. The config is accepted, nothing raises an error, and the consequence arrives later.

  1. Costing nodes and stopping there

    Load balancers, persistent volumes, snapshots, egress and the control plane are frequently a larger share than compute, and none appears on the node bill.

    Instead:Include all of them. Egress in particular surprises people.

  2. Sizing from requests rather than usage

    Requests are what the scheduler reserves, and over-set requests mean paying for nodes that run nothing. Usage is what the workload needs.

    Instead:Compare the two. The gap is the waste.

  3. Using a bundled price table

    Rates vary by region, commitment and discount and go stale quickly.

    Instead:Enter your own rates, which is why this page asks for them.

Kubernetes schedules on requests, so unrequested capacity is unusable

The gap between what a cluster costs and what its pods request is not headroom. Nothing can be scheduled onto it, because the scheduler places pods by request rather than by usage.

Right-size requests before shrinking the cluster

Low utilisation against requests usually means the requests are wrong rather than that the cluster is too big, and shrinking first turns a cost problem into an availability one. Under-requesting is the other failure and is worse: it causes CPU throttling and OOM kills rather than a larger bill. Measure actual usage first.

Whichever of CPU and memory binds first is the one to size against

A cluster is full when either dimension is exhausted, and the other one is then wasted whatever it costs. This page reports which binds, because optimising the other one changes nothing.

Why no price table is bundled

A list price is wrong for your commitments, your region and your discounts, and a bundled copy is stale the week it ships. This is the same decision the Kafka cost estimator on this site took. Egress in particular is worth entering carefully: cross-zone traffic is the usual hidden cost, and topology-aware routing keeps it in-zone for one annotation.

More kubernetes tools

Kubernetes YAML Generator Answer a few questions, get a manifest Kubernetes YAML Validator Is this YAML valid, and where is it wrong? Kubernetes Rollout & Probe Timing Restart loops, capacity dips and stuck drains Kubernetes Service Checker Will this Service have any endpoints? Kubernetes Network Policy Viewer What can reach what, and what just broke Kubernetes Manifest Diff What actually changed Kubernetes Resource Calculator What these manifests actually reserve Kubernetes RBAC Viewer Who can actually do what Kubernetes Deployment Generator See the capacity dip before you deploy Kubernetes Service Generator port, targetPort, and which one you meant Kubernetes StatefulSet Generator Stable names, and volumes that outlive you Kubernetes QoS Class Calculator And where you sit in the eviction order Kubernetes Node Capacity Planner Allocatable is not capacity Kubernetes Max Pods per Node Calculator The ENI limit, not the 110 default Kubernetes Label Selector Tester Which key failed, not just that one did Kubernetes Taint & Toleration Tester Tolerations permit, they do not attract Kubernetes Resource Name Validator RFC 1123 subdomain, label, or 1035 Kubernetes Label & Annotation Validator Why your image tag is not a legal label Kubernetes CrashLoopBackOff Guide The status is a timer, not a cause Kubernetes TLS Certificate Decoder When it expires, and what it covers Kubernetes ServiceAccount Token Decoder Bound or legacy, and when it dies Kubernetes imagePullSecret Generator The registry URL nobody gets right Kubernetes cert-manager Certificates Issuer scope, and the rate limit that costs a week Kubernetes Flux HelmRelease Generator With the source it cannot work without Kubernetes Helm Chart Generator Chart.yaml, values, and working templates Kubernetes Argo CD Application Generator The defaults that are off, turned on Kubernetes Ingress Generator pathType, and the TLS secret that fails quietly Kubernetes HPA Generator Why it says unknown and never scales Kubernetes SecurityContext Generator Pod level, container level, and which wins Kubernetes Probe Generator How long it gets to start before liveness kills it Kubernetes PVC Generator Access modes your storage can actually do Kubernetes ResourceQuota Generator And the LimitRange that stops it breaking deploys Kubernetes CronJob Generator The fields that decide whether it runs Kubernetes NetworkPolicy Generator With the DNS rule already in it Kubernetes RBAC Generator And what it actually grants Kubernetes PodDisruptionBudget Generator Can this budget ever be satisfied? Kubernetes API Deprecation Checker What breaks on the next upgrade Kubernetes Kubeconfig Viewer Read it without handing it to anyone Kubernetes Quantity Parser What 512Mi, 100m and 1e3 actually mean Kubernetes Multi-Document YAML Splitter One file per object, in apply order Kubernetes .env to ConfigMap & Secret Split the credentials out on the way Kubernetes Secret Decoder See what is actually in there Kubernetes Ingress to Gateway API Which annotations silently stop working Kubernetes Manifest Visualizer What points at what, and what points at nothing Kubernetes Patch Tester Which --type, and what it deletes Kubernetes kubectl JSONPath Tester kubectl's dialect, not generic JSONPath Kubernetes Node Affinity Tester Required excludes, preferred only scores Kubernetes Helm Values Diff A missing key is a third value Kubernetes Pod and Service CIDR Fixed at cluster creation Kubernetes Secret Encoder base64 is not encryption Kubernetes API Version Checker Will this apply on that cluster Kubernetes Go Template Tester Go truthiness is not JavaScript's Kubernetes Kustomize Build Transformers run in kustomize's order Kubernetes Helm Chart Validator version is SemVer, appVersion is not

Elsewhere on the site