๐ŸŽ 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

SRE (Site Reliability Engineering)
An engineering discipline that applies software engineering principles to infrastructure and operations to create reliable systems.
ELK Stack
A popular log management platform combining Elasticsearch (search), Logstash (processing), and Kibana (visualization).
Feature Flag
A technique that allows enabling or disabling features in production without deploying new code, enabling safe rollouts and A/B testing.
Container Registry
A storage and distribution service for container images, similar to a package repository but for Docker images.
GitOps
A practice where Git repositories serve as the single source of truth for both application code and infrastructure configuration.
Microservices
An architectural style where an application is composed of small, independent services that communicate over APIs.
View All DevOps Terms โ†’