Re: Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-30 Thread Ewelina Wilkosz
Hi Edd,

"reload existing configuration" won't restart your Jenkins, it takes a 
second, maybe a couple of seconds to apply new configuration but Jenkins is 
not going down
regarding the API I encourage you to join our gitter chat 
room: https://gitter.im/jenkinsci/configuration-as-code-plugin where API 
calls were discussed yesterday - it's simply easier to go through the 
conversation they had there :)

On Wednesday, August 29, 2018 at 4:32:58 PM UTC+2, Edd Grant wrote:
>
> Hi Ewelina,
>
> Thanks for this, I have installed the configuration-as-code plugin and 
> have had a quick look. I can see there's a "reload existing configuration" 
> button in the UI. Is this accessible via the Jenkins API? I ask as we want 
> to be able to dynamically configure the Jenkins master without having to 
> take it out of service.
>
> Many thanks,
>
> Edd 
>
> On Thursday, 9 August 2018 10:02:04 UTC+1, Ewelina Wilkosz wrote:
>>
>> Hi Edd,
>>
>> maybe you can have a look at 
>> https://github.com/jenkinsci/configuration-as-code-plugin
>> release 1.0 is coming soon, we have a number of alphas already out. maybe 
>> it can solve your issues - if not it's always good to hear what's missing :)
>>
>> On Friday, August 3, 2018 at 10:08:52 AM UTC+2, Edd Grant wrote:
>>>
>>> Hi folks,
>>>
>>> We've spent quite a lot of effort automating the configuration of our 
>>> Jenkins (2.122) master using init.groovy.d scripts. It's working really 
>>> well apart from one caveat, being that (as far as I can tell) we have to 
>>> restart the master in order to kick off the scripts in the init.groovy.d 
>>> directory, thus causing downtime for our users.
>>>
>>> I would really like to find a way to be able to run these scripts on an 
>>> already running Jenkins master. Is there an API endpoint (or some other 
>>> means) which would trigger this process?
>>>
>>> Many thanks,
>>>
>>> Edd 
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/81240cf1-42f7-472d-9767-9ee225c02186%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-29 Thread Edd Grant
Thanks for this Jan, wasn't aware of this, will investigate further.

On Thursday, 9 August 2018 06:59:10 UTC+1, Jan Monterrubio wrote:
>
> You can post the script contents to the script run endpoint I believe. 
>
> “
> A Jenkins Admin can execute groovy scripts remotely by sending an HTTP 
> POST request to /script/ url or /scriptText/.
>
> “
>
> From 
>
> https://wiki.jenkins.io/display/JENKINS/Jenkins+Script+Console#JenkinsScriptConsole-Remoteaccess
>
> On Fri, Aug 3, 2018 at 11:31 AM Cuong Tran  > wrote:
>
>> Can't you run your script under script console /script?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/d6fd715e-63a0-49d4-8454-0c5485a78fed%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f4167889-1ede-4179-ab22-f4fc6c9a0ed7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-29 Thread Edd Grant
Hi Ewelina,

Thanks for this, I have installed the configuration-as-code plugin and have 
had a quick look. I can see there's a "reload existing configuration" 
button in the UI. Is this accessible via the Jenkins API? I ask as we want 
to be able to dynamically configure the Jenkins master without having to 
take it out of service.

Many thanks,

Edd 

On Thursday, 9 August 2018 10:02:04 UTC+1, Ewelina Wilkosz wrote:
>
> Hi Edd,
>
> maybe you can have a look at 
> https://github.com/jenkinsci/configuration-as-code-plugin
> release 1.0 is coming soon, we have a number of alphas already out. maybe 
> it can solve your issues - if not it's always good to hear what's missing :)
>
> On Friday, August 3, 2018 at 10:08:52 AM UTC+2, Edd Grant wrote:
>>
>> Hi folks,
>>
>> We've spent quite a lot of effort automating the configuration of our 
>> Jenkins (2.122) master using init.groovy.d scripts. It's working really 
>> well apart from one caveat, being that (as far as I can tell) we have to 
>> restart the master in order to kick off the scripts in the init.groovy.d 
>> directory, thus causing downtime for our users.
>>
>> I would really like to find a way to be able to run these scripts on an 
>> already running Jenkins master. Is there an API endpoint (or some other 
>> means) which would trigger this process?
>>
>> Many thanks,
>>
>> Edd 
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bf96224b-fea7-4a11-95d7-6e9fab1a5211%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-09 Thread Ewelina Wilkosz
Hi Edd,

maybe you can have a look 
at https://github.com/jenkinsci/configuration-as-code-plugin
release 1.0 is coming soon, we have a number of alphas already out. maybe 
it can solve your issues - if not it's always good to hear what's missing :)

On Friday, August 3, 2018 at 10:08:52 AM UTC+2, Edd Grant wrote:
>
> Hi folks,
>
> We've spent quite a lot of effort automating the configuration of our 
> Jenkins (2.122) master using init.groovy.d scripts. It's working really 
> well apart from one caveat, being that (as far as I can tell) we have to 
> restart the master in order to kick off the scripts in the init.groovy.d 
> directory, thus causing downtime for our users.
>
> I would really like to find a way to be able to run these scripts on an 
> already running Jenkins master. Is there an API endpoint (or some other 
> means) which would trigger this process?
>
> Many thanks,
>
> Edd 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/43ef2e44-00f9-453c-8d58-e1284404a28b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-08 Thread Jan Monterrubio
You can post the script contents to the script run endpoint I believe.

“
A Jenkins Admin can execute groovy scripts remotely by sending an HTTP POST
request to /script/ url or /scriptText/.

“

From
https://wiki.jenkins.io/display/JENKINS/Jenkins+Script+Console#JenkinsScriptConsole-Remoteaccess

On Fri, Aug 3, 2018 at 11:31 AM Cuong Tran  wrote:

> Can't you run your script under script console /script?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/d6fd715e-63a0-49d4-8454-0c5485a78fed%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CADgiF9JN0Syeyytsxc6zhkBbPQfSR74AeRONirOToYUY2CTsNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.