Which of the following kinds of data are suitable as artifacts in a continuous delivery pipeline? (Choose three correct answers.)
Which of the following kinds of data are suitable as artifacts in a continuous delivery pipeline? (Choose three correct answers.)
In a continuous delivery pipeline, suitable artifacts include executable applications such as .exe files or .jar packages, compiled packages to be installed by a Linux package manager, and Docker container images which contain an application. These types of artifacts can be built, tested, and deployed consistently across different environments. Copies of the contents of source code repositories and build configuration files are not typically considered artifacts in this context as they are usually part of the development process but not the final deliverables to be deployed.
Agree it's ADE
ADE "We should build our artifacts once and deploy multiple times. We should version our artifacts (using semantic versioning). And this means all our artifacts: applications, configuration, database scripts, etc. Automate all of this in a pipeline." https://blog.sonatype.com/anatomy-of-a-continuous-delivery-pipeline "Building and publishing artifacts: When all these steps are successful, a unique artifact is built, packaged, and published to a repository. This can be a JAR, .tar.gz file, a container image, or whatever is applicable to the chosen language and platform. ..." https://www.michielrook.nl/2018/01/typical-ci-cd-pipeline-explained/
Correct is ADE