Day-0, Day-1, and Day-2 operations: the enterprise guide to Kubernetes lifecycles



Key points:
- Define immutable infrastructure: Treat Day-0 planning and Day-1 deployments as declarative code using tools like Terraform to prevent configuration drift before it starts.
- Automate Day-2 fleet operations: Relying on manual YAML edits or terminal commands fails at scale. Implement agentic control planes to manage configuration across AWS EKS and GCP GKE simultaneously.
- Prioritize intent-based FinOps: Shift Day-2 cost governance from manual spread-sheet audits to automated, intent-based policies that reclaim idle cluster resources without developer intervention.
The narrative around Kubernetes has fundamentally changed. Five years ago, enterprise engineering teams were obsessed with the novelty of container orchestration. Today, Kubernetes is just standard plumbing. The core challenge is no longer figuring out how to deploy a cluster; it is figuring out how to survive the infinite lifecycle of managing it at scale.
Operations form the backbone of successful infrastructure delivery, but the specific requirements of each phase (Day-0, Day-1, and Day-2) demand completely different tooling, mindsets, and workflows. If you treat a Kubernetes migration as a bounded project with a neat finish line, your platform engineers will inevitably drown in configuration drift, manual upgrades, and spiraling cloud costs.
For platform architects managing enterprise fleets, understanding how to transition from initial planning to long-term automated fleet orchestration is the only way to maintain high availability without endlessly expanding your engineering headcount. Let's break down exactly what each phase entails, where the traditional bottlenecks lie, and the agentic abstractions required to scale them.
Day-0 operations: the planning phase
Day-0 operations cover the architectural design and strategic planning for your application lifecycle. This phase occurs before a single compute node is ever spun up. It involves defining the infrastructure topology, selecting the control plane architecture, and setting the strict security perimeters.
Key activities in Day-0 operations include:
- Architecture and network design: You must define VPCs, subnet structures, ingress controllers, and service mesh requirements. Platform teams need to map out how microservices will interact securely across isolated cloud regions.
- Toolchain selection: Standardize the platform stack early. This means selecting Terraform for Infrastructure as Code (IaC), ArgoCD or GitHub Actions for CI/CD, and defining the specific Kubernetes orchestrator you will use.
- Compliance mapping: Establish Role-Based Access Control (RBAC) schemas and map out audit logging requirements to satisfy frameworks like SOC2 or HIPAA.
Day-1 operations: the deployment phase
Day-1 transitions the architecture from design to reality. It focuses entirely on the initial provisioning of the infrastructure and the execution of the deployment pipelines. In modern platform engineering, Day-1 must be completely automated using declarative code.
Key activities in Day-1 operations include executing the IaC templates to spin up the cluster, configuring worker nodes, and attaching managed services like AWS RDS or ElastiCache.
# Example Terraform snippet for Day-1 EKS Node Group provisioning
resource "aws_eks_node_group" "production_nodes" {
cluster_name = aws_eks_cluster.main.name
node_group_name = "standard-workers"
node_role_arn = aws_iam_role.node_group_role.arn
subnet_ids = aws_subnet.private[*].id
scaling_config {
desired_size = 3
max_size = 10
min_size = 2
}
}
Once the code applies successfully, you validate the system by running integration tests to verify network policies, DNS resolution, and load balancer health.
The 1,000-cluster reality: why day-2 is the bottleneck
Provisioning a single cluster on Day-1 is a solved problem. However, in enterprise environments with dozens or hundreds of clusters spanning multiple cloud providers, Day-2 operations quickly become the primary engineering bottleneck.
A platform engineer updating a scaling policy or patching a critical CVE cannot manually rewrite YAML or execute terminal commands across a fragmented fleet. Relying on manual execution leads to severe configuration drift, security vulnerabilities, and runaway cloud waste.
If you need to communicate the financial impact of this bottleneck to your leadership team, share our executive guide to Day-2 operations and Kubernetes scale.
🚀 Real-world proof
Alan struggled with managing complex multi-cloud infrastructure and excruciatingly slow deployment cycles across their environments before adopting automated infrastructure abstraction.
⭐ The result: Reduced deployment time from over 1 hour to 8 minutes while completely standardizing their environments. Read the Alan case study.
Day-2 operations: the ongoing maintenance phase
Day-2 operations encompass the long-term management, scaling, and optimization of the system. This phase represents the vast majority of the application lifecycle and is where Site Reliability Engineers spend most of their time fighting toil.
Key activities in Day-2 operations include:
- Automated scaling and FinOps: Adjusting resource allocations based on historical usage data. Instead of manually tuning Horizontal Pod Autoscalers (HPA), platform teams must implement automated scaling and right-sizing policies to reclaim idle cluster resources.
- Fleet upgrades and patching: Managing Kubernetes minor version upgrades (e.g., v1.29 to v1.30) and applying zero-day security patches across thousands of nodes without causing production downtime.
- Observability and troubleshooting: Continuously monitoring logs and metrics to resolve incidents rapidly.
Without an overarching management plane, Day-2 troubleshooting looks exactly like this frustrating, error-prone terminal toil:
# Manual Day-2 troubleshooting toil across fleets
# Engineers waste time manually checking pod states across isolated regions:
kubectl get pods -n production --context=arn:aws:eks:us-east-1:123456789:cluster/us-east-fleet
kubectl get pods -n production --context=arn:aws:eks:eu-west-2:123456789:cluster/eu-west-fleetStandardizing day-2 with intent-based abstraction
To eliminate manual toil in Day-2 operations, organizations must move beyond provider-specific configuration files and context switching.
Qovery acts as an agentic control plane that centralizes Day-2 operations. Instead of writing separate configurations for every cluster, developers declare their intent. Qovery then enforces deployment standards, cost governance, and security policies globally.
# .qovery.yml - Agentic Day-2 Abstraction
# Eliminates the need to manually configure HPA and node scaling per cluster
application:
backend-service:
build_mode: DOCKER
cpu: 1000m
memory: 2048MB
auto_scaling:
enabled: true
min_instances: 2
max_instances: 10
cpu_trigger: 75
# Qovery handles the underlying HPA abstraction globally
By implementing an agentic control plane, organizations ensure their Day-2 operations scale securely without requiring a massive hiring spree of dedicated Kubernetes specialists.
FAQs
What is the difference between Day-1 and Day-2 operations in Kubernetes?
Day-1 operations involve the initial provisioning and deployment of the infrastructure and applications, usually via Infrastructure as Code. Day-2 operations cover the ongoing, long-term maintenance of the system, including scaling, FinOps cost optimization, upgrades, and troubleshooting.
Why are Day-2 operations a bottleneck for platform engineering?
As fleets scale to hundreds of clusters across multiple cloud providers, maintaining security patches, upgrading Kubernetes versions, and preventing configuration drift becomes highly complex. Without automation, SREs are overwhelmed by manual YAML configurations and terminal toil.
How can enterprises automate Day-2 Kubernetes operations?
Enterprises automate Day-2 operations by implementing an agentic control plane. This intent-based abstraction layer centralizes global policies, automatically reclaims idle resources, and manages configuration across multi-cloud fleets, reducing the need for manual intervention.

Suggested articles
.webp)











