Hello Ankur, On Wed, Jan 16, 2019 at 21:31:24 -0800, ankur gupta wrote: > https://docs.gocd.org/current/extension_points/plugin_user_guide.html > As per the documentation, I see that plugin cannot be added directly from > UI...is there any development feature for the same in future ?
Not really. The reason is that plugins are loaded into an OSGi container (a form of isolation across plugins) and each load of a plugin increases the number of dynamically loaded classes, decreasing the Java metaspace and could cause a long-running server to run out of memory. Ideally, the plugins run out of process and they can just be replaced when needed. So, it's not about just adding it to the UI, unfortunately. If you're developing a GoCD plugin, then the steps mentioned here will allow you to temporarily get into a mode where plugins are reloaded: https://github.com/gocd/docker-registry-artifact-plugin/issues/10#issuecomment-449039753 Hope that helps, Aravind -- You received this message because you are subscribed to the Google Groups "go-cd" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
