Re: How to disable Plugin Management from Web GUI

2017-08-30 Thread Li Z
Thanks Stephen! It works. I will test to see what kind of side-effects it will have. On Tuesday, August 29, 2017 at 11:02:34 PM UTC-7, Li Z wrote: > > Currently, we are deploying Jenkins server using Jenkins Docker image and > extending the image by adding some needed plugin using Dockerfile.

Re: How to disable Plugin Management from Web GUI

2017-08-30 Thread Stephen Connolly
You could remove the jenkins.management.PluginsLink extension from the ExtensionList.lookup(hudson.model.ManagementLink.class) using an init.groovy script... but it is unclear to me whether that would have unintended side-effects... something like def list = ExtensionList.lookup(hudson.model.Mana

How to disable Plugin Management from Web GUI

2017-08-29 Thread Li Z
Currently, we are deploying Jenkins server using Jenkins Docker image and extending the image by adding some needed plugin using Dockerfile. We do not want Jenkins' users (admins), manually install plugins from Web GUI. Is possible to disable and remove Manage Plugin link from Jenkins Web GUI