Subscribe to the Non-Human & AI Identity Journal

Mutable Image Tag

A mutable image tag is a registry reference that can point to different image contents over time. It is convenient for release workflows, but it is weak as a trust mechanism because it does not prove the artifact is the one that was approved.

Expanded Definition

A mutable image tag is a registry pointer that can be reassigned to different image contents over time. In day-to-day delivery pipelines, that makes it convenient for release labels such as latest or stable, but it also means the tag itself is not a trustworthy identity for the artifact.

In NHI and supply chain security, the important distinction is between a mutable reference and an immutable artifact digest. A tag answers “what name is the registry currently using?”, while a digest answers “which exact bytes were approved?”. Standards and vendor guidance vary on how strictly teams should enforce immutability, but the direction is consistent: trust should attach to verifiable artifact identity, not a label that can drift. This is especially relevant when image pulls are performed by automated agents, because execution authority can be redirected to a different build without any visible change in deployment configuration. See also the NIST Cybersecurity Framework 2.0 for integrity-oriented control thinking around software assets.

The most common misapplication is treating a tag as an approval boundary, which occurs when deployment tooling assumes the label alone guarantees the same image will be pulled later.

Examples and Use Cases

Implementing image references rigorously often introduces release friction, requiring organisations to weigh deployment convenience against stronger provenance and repeatability.

  • A CI/CD pipeline pushes a new build to the tag Ultimate Guide to NHIs and then a deployment job pulls it later, unknowingly changing the runtime artifact.
  • A platform team uses latest for development environments, but requires digest-pinned references for production so approvals map to a specific immutable image.
  • An incident responder checks whether a service account pulled an image by tag after a registry update, then compares the deployed digest against build records to verify integrity.
  • An internal policy permits mutable tags only for non-production testing, while release pipelines sign and promote digest references for controlled rollout.
  • A cluster admission control rule rejects workloads that reference mutable tags in high-trust namespaces, forcing explicit artifact versioning.

For artifact verification patterns, teams often pair image pinning with registry and provenance controls described in the Ultimate Guide to NHIs, while the NIST Cybersecurity Framework 2.0 provides the broader governance lens for protecting software integrity.

Why It Matters in NHI Security

Mutable image tags become an NHI problem because agents, CI runners, deployment controllers, and service accounts often consume images automatically. If a tag is silently repointed, the consuming NHI may execute different code than the one that was reviewed, approved, or scanned. That breaks traceability and weakens accountability across the software delivery chain.

The risk is not theoretical. NHI Mgmt Group reports that 79% of organisations have experienced secrets leaks, and 77% of those incidents caused tangible damage, which shows how often identity-linked operational shortcuts become real losses. Similar dynamics apply to mutable tags: the convenience of “always pull the latest” can hide drift, mask rollback failures, and complicate forensics when one workload version is replaced by another without a clear change record.

Practitioners should combine tag policy, digest pinning, and provenance checks with access controls on registries and deployers. Organisationally, this becomes unavoidable after a compromised build, a bad rollback, or an unexpected production change has already occurred, at which point the mutable tag is no longer just a convenience but the clue investigators must unwind.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Agentic AI Top 10 address the attack and risk surface, while NIST CSF 2.0 and NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 Agentic systems need deterministic artifact execution, not drifting image labels.
NIST CSF 2.0 PR.DS Mutable tags undermine data and software integrity protections in delivery pipelines.
NIST AI RMF AI systems depend on controlled artifact provenance for trustworthy operation.

Govern model and container artifacts so approved builds remain traceable and reproducible.