アーティファクトはビルドプロセスの出力(コンパイルされたバイナリ、パッケージ、Dockerイメージ)であり、デプロイされるものです。アーティファクト管理 — これらのアーティファクトをレジストリ/リポジトリを通して保存、バージョン管理、昇格させることは、信頼性が高く追跡可能なデプロイメントにとって重要です。
アーティファクトとは
The BUILD produces ARTIFACTS — the deployable outputs:
→ Docker IMAGES, compiled binaries, JARs/WARs, npm packages, zip bundles, etc.
→ These are what actually get DEPLOYED (not the source code directly).
アーティファクトリポジトリ/レジストリ
Artifacts are stored in REPOSITORIES/REGISTRIES (versioned, central storage):
→ Container registries: Docker Hub, AWS ECR, GitHub/GitLab Container Registry
→ Package repositories: npm registry, Maven, PyPI, Artifactory, Nexus
→ The pipeline BUILDS an artifact, PUSHES it to the registry, and DEPLOYS from there.
