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

Makefile
A file containing build rules and commands that automates compilation and common project tasks using the make utility.
GitOps
A practice where Git repositories serve as the single source of truth for both application code and infrastructure configuration.
Containerization
A lightweight virtualization method that packages applications with their dependencies into isolated, portable containers.
Docker Compose
A tool for defining and running multi-container Docker applications using a YAML configuration file.
Service Discovery
A mechanism that automatically detects and tracks the network locations of service instances in distributed systems.
Service Mesh
An infrastructure layer that handles service-to-service communication, providing load balancing, encryption, and observability.
View All DevOps Terms โ†’