Re: Jenkins node selection

2017-02-08 Thread Kristian
This also works in a multibranch pipeline job. Just do it like David wrote:

*
node("some_slave_label") {
...
}
*

2017-02-07 21:50 GMT+01:00 David Karr :
> On Tuesday, February 7, 2017 at 12:36:59 PM UTC-8, Tejinder Kaur Gill wrote:
>>
>> How can we specify the node on which Jenkins multibranch pipeline job will
>> run,by default it run on master nd creating space issue on master ,need to
>> configure on some slave .
>
>
> I'm frankly not certain about multibranch vs. "plain" pipeline, but in an
> ordinary pipeline script, you can pass a "label" to the node function, so
> instead of this:
> node {
>...
> }
>
>  You can do (for instance):
> node("docker") {
>  ...
> }
>
> By default, this will reference a node with that name, but you really should
> add "labels" to your slave definitions, expressing the kinds of
> functionality that slave can handle.  If there's one particular slave that
> should be used for docker builds, then put that label value on it.
>
> --
> 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/5903e94d-5a48-4fea-b812-d0197bd60ef8%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/CAO5HUhODA-prd2Yd1wJFd3spEzz0OZUzcyVn0R9K-3-cxQAs0w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins node selection

2017-02-07 Thread David Karr
On Tuesday, February 7, 2017 at 12:36:59 PM UTC-8, Tejinder Kaur Gill wrote:
>
> How can we specify the node on which Jenkins multibranch pipeline job will 
> run,by default it run on master nd creating space issue on master ,need to 
> configure on some slave .
>

I'm frankly not certain about multibranch vs. "plain" pipeline, but in an 
ordinary pipeline script, you can pass a "label" to the node function, so 
instead of this:
node {
   ...
}

 You can do (for instance):
node("docker") {
 ...
}

By default, this will reference a node with that name, but you really 
should add "labels" to your slave definitions, expressing the kinds of 
functionality that slave can handle.  If there's one particular slave that 
should be used for docker builds, then put that label value on it.

-- 
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/5903e94d-5a48-4fea-b812-d0197bd60ef8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins node selection

2017-02-07 Thread Tejinder Kaur Gill
How can we specify the node on which Jenkins multibranch pipeline job will 
run,by default it run on master nd creating space issue on master ,need to 
configure on some slave .

-- 
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/8fb9b7b9-3974-48aa-a1eb-92f9823f561c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.