I am looking for a way to connect jenkins with azure microsoft DB-with mongo api to jenkins.
Not able to get a suitable plugin for this. Please help.
*this is urgent. Requesting for a quick reply. Thanks.
I am looking for a way to connect jenkins with azure microsoft DB-with mongo api to jenkins.
Not able to get a suitable plugin for this. Please help.
*this is urgent. Requesting for a quick reply. Thanks.
Use the same technique that you would use from a command line. No need for a plugin.
Since the database probably requires credentials for the connection, you may want to review the withCredentials
Pipeline step so that you can provide a Jenkins credential that is used in the sh
, bat
, or powershell
step that performs operations with your database.
You might also consider a google search for “Database DevOps”. Several database tool vendors share their insights on ways that their specific tools can help database development.
Thanks a lot Marks for your reply. I will implement the suggested solution and get back if needed.Cheers!