Subscribe to the Non-Human & AI Identity Journal

Container Manifest

A container manifest is metadata that ties multiple image variants to one logical image reference. It is a governance object as much as a technical one, because it determines which image a client retrieves and therefore which artefact actually reaches production.

Expanded Definition

A container manifest is the metadata layer that describes a logical container image and its referenced variants, usually across operating systems, CPU architectures, or build variants. In practice, the manifest does not contain the application itself; it tells a registry or runtime which image digest to serve when a client requests a tag or image reference. That makes it a supply chain control point, not just a packaging detail.

Definitions vary across vendors and registry implementations, especially when discussing single-image manifests versus multi-architecture manifest lists. The security significance is that the manifest governs what is actually pulled into a cluster, build pipeline, or runtime environment, so integrity, provenance, and immutability matter. This is closely aligned with the governance intent of the NIST Cybersecurity Framework 2.0, which emphasises controlled, trustworthy asset handling across the environment.

The most common misapplication is treating a mutable tag as if it were a fixed deployment target, which occurs when teams assume the tag always maps to the same underlying image digest.

Examples and Use Cases

Implementing container manifests rigorously often introduces release-management constraint, requiring organisations to balance deployment flexibility against stronger image control and traceability.

  • A platform team publishes one logical image reference that maps to linux/amd64 and linux/arm64 variants, allowing each node to receive the correct image automatically.
  • A release pipeline pins deployments to a specific manifest digest so that Sigstore-verified artefacts can be reproduced and audited later.
  • A security team reviews the manifest to confirm that only approved image variants are available before production rollout, reducing the chance of an unexpected base image reaching runtime.
  • An incident responder compares the manifest digest observed in the cluster with the registry record to determine whether a tag was retargeted after deployment.
  • A supply chain workflow uses manifest lists to support staged rollouts across heterogeneous infrastructure while keeping the logical image reference stable.

At the policy level, manifest handling also intersects with container governance guidance from the Cloud Native Computing Foundation and image integrity practices described by SLSA, both of which reinforce the need to treat image selection as a controlled decision.

Why It Matters for Security Teams

Container manifests matter because they decide which artefact is actually deployed when automation pulls an image. If teams rely on mutable tags, they can lose reproducibility, introduce unreviewed code paths, or quietly shift from a known-good image to a compromised or misconfigured variant. That risk is especially important in modern CI/CD, where the manifest becomes a policy boundary between approved build output and runtime execution.

For security teams, the key concerns are provenance, integrity, and change control. A signed image without control over its manifest is still vulnerable if the reference can be redirected. This is why image-digest pinning, registry access control, and verification of manifest contents belong in baseline cloud and container governance. The broader control logic is consistent with CIS Kubernetes Benchmark hardening expectations and with secure software supply chain practices.

Organisations typically encounter the operational impact only after a rollback fails, a node pulls the wrong variant, or an attacker changes what a tag resolves to, at which point container manifest control becomes operationally unavoidable to address.

Standards & Framework Alignment

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

NIST CSF 2.0, NIST SP 800-53 Rev 5 and NIST AI RMF set the technical controls, while ISO/IEC 27001:2022 and DORA define the regulatory obligations.

Framework Control / Reference Relevance
NIST CSF 2.0 PR.DS-6 Supports integrity and protection of data and software artefacts in the supply chain.
NIST SP 800-53 Rev 5 CM-3 Baseline change control governs approved software configuration and release artefacts.
ISO/IEC 27001:2022 A.8.9 Configuration management covers controlled handling of deployment artefacts and settings.
NIST AI RMF AI RMF applies when manifests govern AI container images and model-serving artefacts.
DORA Operational resilience rules depend on controlled ICT change and deployable artefacts.

Require formal change approval before any manifest or referenced image variant is promoted.