Artefacten zijn de outputs van het bouwproces (gecompileerde binaries, packages, Docker images) die worden geïmplementeerd. Artefactbeheer — het opslaan, versiebeheer en promoten van deze artefacten via een registry/repository — is belangrijk voor betrouwbare, traceerbare implementaties.
Wat artefacten zijn
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).
Artefactrepository's/registries
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.
