Projects tied to a NODE

17 views
Skip to first unread message

Eric Naitove

unread,
Sep 21, 2015, 8:51:15 AM9/21/15
to Jenkins Users
Is there a way to list all my NODES and the specific Projects tied to each NODE?

Victor Martinez

unread,
Sep 21, 2015, 4:36:21 PM9/21/15
to Jenkins Users
You could use some groovy script:


println "JobName|Assigned label"
Jenkins.instance.items.each {
  println "${it.name}|${it.assignedLabel}"
}

Further details:

I hope it helps 

Cheers
Reply all
Reply to author
Forward
0 new messages