I have a Python application, I want to deploy it first to DEV, then to UAT and finally to PROD. I could build it using Jenkins using Webhooks so that when it clicks on DEV it starts the build (it starts the media). I want this application to be promoted in UAT and PROD afterwards if the build in DEV and UAT goes accordingly. I do not want any manual intervention. Can this be done with Jenkins and how? If not the best alternative?
PS I was thinking about making remote login to my DEV, UAT, PROD servers from my Jenkins server. and starting the build, but I still do not understand how to do this?
source
share