For questions about artifacts, which are the products of some process applied to a code repository.
Questions tagged [artifacts]
30 questions
121
votes
5 answers
What is an artifactory?
There are quite some questions and answers that mention "artifactory".
I wouldn't be surprised if it is somehow related to artifacts.
My questions:
What is actually an "artifactory" (in the context of DevOps)?
Why are artifactories used?
Pierre.Vriens
- 7,225
- 14
- 39
- 84
38
votes
2 answers
What is an artifact repository?
What is an artifact repository? If it's just a place to store files, can't I just use a source control system?
Dave Swersky
- 4,068
- 2
- 21
- 33
27
votes
4 answers
What is an artifact (or artefact)?
The question about "What is an artifact repository?" contains an answer with an interesting explanation about the repository part of it.
And from reading the entire answer, I am not sure what exactly an "artifact" means in the context of DevOps.
Any…
Pierre.Vriens
- 7,225
- 14
- 39
- 84
19
votes
4 answers
Are there any drawbacks of using a deb package as if it was a container to deploy an application?
My team is currently trying to decide if we should deploy our Nodejs app as a deb package instead of trying to run it in a container such as Docker.
I got this idea from reading this blog here which makes some good arguments for using a deb package…
avi
- 1,279
- 1
- 13
- 32
18
votes
3 answers
Single Build with Multiple Artifacts
I'm a little confused on the Azure Pipeline steps. My solutions has many projects and one UI project that contains both an ASP.Net-Core WebApi/MVC with Angular.
the Build Solution builds similar to the
steps:
- task: VSBuild@1
displayName: 'Build…
Erik Philips
- 403
- 1
- 4
- 12
12
votes
5 answers
What are reasons for not not using Bitbucket-server for storing artifacts?
I'm working with a company setting up a brand new project, and we're talking about what tools to use for what. I was talking about Artifactory or Nexus for storing built artifacts (APKs in this case), and they asked why they can't just use Bitbucket…
dj_segfault
- 223
- 2
- 7
9
votes
2 answers
Artifactory vs Git for Infrastructure Version Control / Configuration Management
I'm trying to understand the difference between managing configuration files for the purposes of simplifying automated deployment.
We have 5 environments to build. So far 2 have been built with no versioning at all. Right now we're using Artifactory…
Khadijah Celestine
- 193
- 1
- 5
8
votes
2 answers
JFrog Artifactory or JFrog Bintray , when to use one over the other?
We are actually looking for a package management system for our project.
The target is simple, have a centralized system to keep our packages ( apps and middlewares ) and use them with our CI/CD tools (Jenkins, Ansible, Docker ...)
Looking for…
storm
- 1,759
- 3
- 16
- 34
8
votes
2 answers
What is the difference between packages and artifacts?
I would like to understand the difference between package and artifact.
Also In what context we should use these terms.
Shash
- 183
- 1
- 6
8
votes
1 answer
Jenkins Artifactory plugin not downloading in multi-thread
In my company we're having a bad time trying to download with the Artifactory plugin in Jenkins because we have a lot of tiny files in our repository and apparently the plugin works in a single thread, so it takes a REALLY long time. We tested the…
Asaf Haim
- 161
- 2
6
votes
2 answers
Is artifact promotion in this pipeline correct?
I have been tasked with rebuilding my DevOps pipeline and I need some help with a few parts.
We will have our code in BitBucket and have something trigger a server to spin up and validate our PR's. I don't fully understand how to do this at the…
Chris
- 315
- 2
- 8
5
votes
1 answer
Where does TFS 2017 actually store artifacts?
We had been using a TFS build process that copies build output to some fileshare for later use. But with TFS 2017 we want to use that fancy "Publish Artifacts" build stage that has the TFS server provide a .zip file of the artifacts via the RESTful…
Aaron
- 51
- 1
- 2
4
votes
1 answer
node js deployment on production server
I wanted to know standard process to deploy nodejs app on production. As of now I am following the process as below
Pull the source code
git pull git_url
Install npm dependencies
npm install
Build the code
npm run build
run the application
nohup…
Sunil Bhoi
- 61
- 2
4
votes
1 answer
What is the meaning of source artifacts that must be in a scripted form?
Quote from rom https://www.ibm.com/developerworks/library/a-devops6/index.html
The key prerequisite to versioning everything is that all source artifacts must be in a scripted form. This goes for the infrastructure, the data, configuration, and the…
RuizSerra
- 43
- 2
4
votes
1 answer
Why should I store artifacts?
Why should I store artifacts? I'm doing it but i don't know if it still make sense.
My builds are fairly quick
I do git tag versioning
None of my builds depends on another. (all independent micro-services)
Any compelling reason to keep this…
gabrielpe
- 78
- 4