Can we use Jenkins for that?
engineering.simondata.com
Can we use Jenkins for that?
1–10 of 50 posts
Re: Can we use Jenkins for that?
#2Jenkins is very powerful, but I would not trust it (or any of the myriad plugins we have installed) to not have security holes.
Re: Can we use Jenkins for that?
#3We use jenkins for CI, but only on our QA server. I haven't found a way to do CI without giving Jenkins full credentials on our server. Jenkins is very powerful, but I would not trust it (or any of the myriad plugins we have installed) to not have security holes.
Re: Can we use Jenkins for that?
#4The Multi-Configuration Project abstraction (IE build matrices) is clunky and the plugin ecosystem doesn't respect it well (eg. the Gerrit plugin is extremely popular but very brittle here). So you wind up with O(n) projects anyway and still needing to copy and paste configuration among them.
Also Jenkins configuration itself is pretty nuts - settings splattered all over the web UI, backed by XML - compared to the simplicity of modern tools like Travis (which uses YAML).
And Jenkins' UI I would definitely categorize as typically-poor open source UI, having evolved and grown more complex over many years with no strong guiding vision.
Re: Can we use Jenkins for that?
#5Re: Can we use Jenkins for that?
#6Eh, I'm sure there are many things Jenkins is OK at, but it's not that great of build server. The Multi-Configuration Project abstraction (IE build matrices) is clunky and the plugin ecosystem doesn't respect it well (eg. the Gerrit plugin is extremely popular but very brittle here). So you wind up with O(n) projects anyway and still needing to copy and paste configuration among them. Also Jenkins configuration itsel…
Re: Can we use Jenkins for that?
#7Re: Can we use Jenkins for that?
#8Re: Can we use Jenkins for that?
#9Does anyone consider Jenkins as a replacement to CRON?
Re: Can we use Jenkins for that?
#10So I prefer to have clear segregation. Jenkins as a build tool only. Rundeck for deployment. If I had a big need for scheduling, I'd want a dedicated system for doing that too.