[note] OCI Artifact?
๐ What is an OCI Artifact?
The full name of OCI Artifact is Open Container Initiative Artifact. It is a unified format that can be used to store anything โ whether itโs a Docker image, Helm chart, WASM module, ML model, SBOM, policy, or scan report.
Most importantly, anything that follows the OCI format can be uploaded to or downloaded from a registry (e.g., Harbor, DockerHub, Artifact Hub).
๐ OCI Artifact Structure
- Tag โ A human-readable name (e.g.,
nginx:1.0
) that points to a manifest or index. Tags are version labels. - Index โ A list of manifests, often used for multi-platform artifacts.
- Manifest โ Describes an artifact (e.g., Docker image, Helm chart) and references blobs.
- Blobs โ Actual content like .tar.gz, binaries, or configs used by the artifact.
๐ References
[note] OCI Artifact?