$linuxjunkies
>

golden image

also: master image, base image, reference image, template image

A pre-configured, fully installed, and tested system snapshot used as a template to rapidly deploy identical systems or containers across an infrastructure.

A golden image is a reference copy of a completely configured operating system, application stack, and settings that serves as a master template for cloning. It eliminates the need to install and configure each system from scratch, ensuring consistency and reducing deployment time.

Golden images are typically created by installing an OS, applying security patches, installing required software, configuring services, and then capturing the entire disk state as a reusable template. This image can be deployed to physical servers, virtual machines, or containers thousands of times with identical results.

For example, a company might create a golden image containing Ubuntu 22.04, Docker, Kubernetes, and their custom monitoring agent. Instead of manually building each server, operations teams clone this image to new hosts, ensuring every deployment is identical and reduces configuration drift.

Common tools for creating and deploying golden images include Packer, cloud-init, container registries (Docker Hub, ECR), and hypervisor cloning features.

Related terms