openskills.info
Course Preview

Artifact Management

Artifact management is the practice of storing, versioning, and distributing the build outputs that flow through a software delivery pipeline: container images, packages, libraries, and binaries. A managed artifact repository provides traceability from source commit to deployed artifact.

itDevOps and software delivery

Artifact Management

An artifact is a file or structured object produced or selected for use beyond the process that created it: a library package, container image, operating-system package, firmware bundle, chart, model, archive, checksum, signature, software bill of materials, or provenance statement. Artifact management is the discipline of giving those objects durable identity, controlled storage, trustworthy metadata, and an explicit lifecycle from creation to retirement.

The useful mental model is a custody system for deployable evidence. Source control records what people intended to build. A build system turns declared inputs into outputs. An artifact repository records the exact outputs that testing, release, and deployment systems consume. If deployment silently rebuilds from source, the tested object and the released object may differ. Promotion should therefore move or relabel an existing immutable object, not manufacture a fresh approximation of it.

Why artifact management exists

Build outputs otherwise scatter across developer machines, CI workspaces, generic file shares, and temporary job storage. Names collide, dependencies disappear, retention becomes accidental, and nobody can answer the release questions that matter:

  • Which exact bytes are running?
  • Which source, dependencies, tools, and parameters produced them?
  • Which checks did this object pass?
  • Who may publish, promote, download, or delete it?
  • Can the object be recovered or reproduced after the original build environment is gone?

An artifact repository supplies a stable protocol and metadata model for those answers. Maven distinguishes a local repository, which caches downloads and holds unreleased outputs, from remote repositories used to share public or private releases. Modern registry services add standard repositories for owned artifacts, remote repositories that cache upstream content, and virtual repositories that provide a single policy-controlled read endpoint over several sources.

Continue the course

This section is part of the paid course.

See pricing to subscribe, or log in if you already have access.

Where this skill leads

Relevant careers

See how this topic contributes to broader role-level skill maps.

Sources