Reputation: 473
Here is the situation, we have in the company a shared folder when we put the installer of an application (two files .sh one for bin and the other for conf) it's a manual action.
We are trying to make this action automatic from jenkins.
I have to give arguments: if we use artifactory to store data by sending data from jenkis with http request, what will be the plus? We can make automatic the action of putting data into our shared folder (if you can tell me more about the possibilities to make this last action, it will be great)
Any ideas?
Upvotes: 2
Views: 3524
Reputation: 22893
There are tons of benefits in using a proper binary repository manager vs a shared drive. Here are just a few:
Metadata. That's the king of arguments, and for me the most important difference between a dumb storage and Artifactory. You want to store as much information about your binaries as you can. Who built it? When it was built? Using what tool? What happened to this artifact? Did it pass QA? Why it is in a certain repository? Who moved it here? etc. Based on this metadata you can:
Needless to say, all the manipulations on metadata (deploying files with it, setting it on existing files, retrieving it, searching the files by metadata, etc.) can be fully automated with REST API and with Artifactory Jenkins plugin.
I am with JFrog, the company behind Bintray and [artifactory], see my profile for details and links.
Upvotes: 9