๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

DevOps Intermediate

What is Rolling Update?

A deployment strategy that gradually replaces old application instances with new ones, maintaining availability throughout.

Rolling updates replace instances one at a time (or in small batches). At any point during the update, some instances run the old version and some run the new version. This ensures zero downtime but requires backward compatibility.

Kubernetes performs rolling updates by default: it creates new pods, waits for them to be ready, then terminates old pods. Parameters include maxSurge (extra pods during update) and maxUnavailable (pods that can be down simultaneously).

Related Terms

Istio
An open-source service mesh that provides traffic management, security, and observability for microservices on Kubernetes.
Error Budget
The acceptable amount of unreliability allowed for a service, calculated as 100% minus the Service Level Objective.
Container Orchestration
The automated management of containerized applications including deployment, scaling, networking, and health monitoring across clusters.
Incident Management
The process of detecting, responding to, and resolving service disruptions to minimize impact and restore normal operations.
Continuous Deployment
A practice where every code change that passes automated tests is automatically deployed to production.
Container Registry
A storage and distribution service for container images, similar to a package repository but for Docker images.
View All DevOps Terms โ†’