# Kubernetes Cost Optimization: Explained

> Deep dive into Kubernetes cost optimization: node pool scheduling, resource requests, cluster autoscaler tuning, namespace cost allocation, and multi-cluster strategies.

Source: https://zop.dev/learn/kubernetes-cost-optimization
Published: 2026-07-01 · Author: avinash-gaurav · Tags: zopnight, learn

---

Kubernetes has become the default platform for deploying containerized applications, but it has also become one of the most expensive items on the cloud bill. The abstraction layer that makes Kubernetes flexible for developers also obscures the underlying infrastructure costs.

For non-production clusters, the waste is even higher because these clusters often mirror production sizing but handle negligible traffic.

Optimizing Kubernetes costs requires working at three levels: the cluster level (node pool sizing and scheduling), the workload level (resource requests and limits), and the organizational level (namespace cost allocation and accountability).

This guide keeps the theory short and spends most of its length on what you can actually do. Every recommendation here is one ZopNight can help you execute, starting from a read-only connection.

## Node pool scheduling

The most impactful Kubernetes cost optimization is scheduling non-production cluster node pools to scale to zero outside business hours. The control plane cost is minimal (free on GKE and AKS, $0.10/hour on EKS), but worker nodes running c5.2xlarge or equivalent instances cost hundreds of dollars per month each. Scaling a 5-node dev cluster to zero at night saves approximately $2,000/month per cluster. ZopNight handles the complexity: cordoning nodes, draining pods, scaling the node group, and reversing the process in the morning.

## Resource requests and limits

Kubernetes schedules pods based on resource requests (guaranteed minimum) and limits (maximum allowed). Without requests, the scheduler cannot pack pods efficiently, it does not know how much each pod needs. Without limits, a single pod can consume an entire node. Set requests based on observed P50 utilization and limits based on P99. Use vertical pod autoscaler (VPA) in recommendation mode to get data-driven suggestions. Avoid setting requests equal to limits unless you need guaranteed QoS, it prevents the scheduler from over-committing.

## Cluster autoscaler tuning

The default cluster autoscaler settings are conservative, keeping nodes around even when utilization is low. For non-production clusters, reduce the scale-down delay from 10 minutes to 2-3 minutes, lower the utilization threshold, and enable scale-to-zero for node pools. For production, keep conservative settings but ensure the autoscaler can add nodes quickly for traffic spikes. Use multiple node pools with different instance types to optimize for different workload profiles.

## Namespace cost allocation

Allocate Kubernetes costs to teams by namespace. Use labels and annotations to track which team owns each namespace. Multiply the resource requests in each namespace by the per-unit cost of the underlying nodes. This gives each team visibility into their Kubernetes spending and creates accountability for optimization. Tools like ZopNight aggregate this data alongside other cloud costs for a unified view.

## Key takeaways

- Scheduling non-production node pools to zero is the highest-impact K8s optimization.
- Set resource requests on every pod to enable efficient scheduling and packing.
- Allocate costs by namespace to drive team-level accountability.

## Where ZopNight fits

ZopNight turns this from reading into doing. It ships 490 built-in audit rules across AWS (216), GCP (127), and Azure (147), 124 of those recommendations are wired to act end to end, 28 one-click and 96 guided, and it starts read-only so you can see the opportunity before you act on any of it. The most direct place to begin is scheduling non-production resources to your working hours, which is covered in the [FinOps](https://zop.dev/learn/finops) guide and shown concretely for [AWS EC2](https://zop.dev/zopnight/aws/ec2).

## How ZopNight schedules non-production resources

The loop that does this is deliberately mechanical, and it starts read-only. You connect your cloud provider with a read-only role, and ZopNight discovers every non-production resources across your regions and accounts. It records a per-action permission verdict for each one, so you can see where it can list a resource but not yet stop it, and you review that inventory, filter it by status or type, and search for the specific resources you care about before anything is scheduled.

Scheduling itself is a cron you write once in plain terms, stop at 7 PM, start at 8 AM on weekdays, pinned to your timezone so the jobs fire at local business hours rather than UTC. A weekly 24-hour grid shows the schedule visually so you catch gaps and overlaps before you save, and an estimate of active versus inactive hours appears before you commit. Resources attach individually or bundle into groups like "dev-cluster" or "staging-db" so a whole environment follows one cadence.

Actions run in dependency order, so a database comes up before the app server that depends on it. When something needs to stay up, an override forces a non-production resources ON or OFF for a defined window, carries a reason so teammates understand why it exists, and expires automatically so nothing is left running by accident. If a start or stop fails, ZopNight retries up to three times and falls back to a dead-letter queue rather than silently dropping the action, and every state change lands in an audit trail that records whether a schedule, an override, or a specific user triggered it.

## Getting started

Getting started is intentionally low-stakes:

- Connect your cloud provider with a read-only role. Nothing is scheduled or changed at this stage.
- Let ZopNight discover your non-production resources and review exactly what it found, filtered by account, region, and status.
- Create a schedule in your timezone and attach the non-production resources or groups you want it to cover.
- Watch the first cycle run, with Slack, Teams, or Google Chat notifications on every start, stop, and failure, then layer in idle cleanup and guided rightsizing.

Production stays excluded by default throughout, and because discovery and recommendations are read-only, you can prove the value before you enable a single action.

## Frequently asked questions

### Does scaling node pools to zero affect my deployments?

Kubernetes deployments, services, and config maps persist in etcd regardless of node count. When nodes scale back up, the scheduler places pending pods on the new nodes automatically.

### Should I use one large cluster or many small clusters?

For non-production, separate clusters per environment enable independent scheduling. For production, fewer larger clusters improve utilization through bin-packing. The right answer depends on your isolation requirements and team structure.
