Re: Run one pipeline script on all nodes?

2018-04-08 Thread Mark Waite
On Sunday, April 8, 2018 at 8:07:03 AM UTC-6, Mark Waite wrote: > > > On Sun, Apr 8, 2018 at 4:05 AM 'Sandra Parsick' wrote: > >> Hello Mailinglist, >> >> is it possible to run a pipeline script on all Jenkins nodes? >> >> > It depends what you mean by "all Jenkins nodes". Jenkins includes the

Jenkins Kubernetes agents fail handshake with master.

2018-04-08 Thread Ryan Timoney
I've got Jenkins running on an instance on Google Compute Engine. I've got a Kubernetes cluster set up on GKE to run agents on. I followed the steps here: https://cloud.google.com/solutions/configuring-jenkins-kubernetes-engin

Re: How to change the current workspace in a pipeline script?

2018-04-08 Thread Mark Waite
On Sun, Apr 8, 2018 at 4:00 AM 'Sandra Parsick' via Jenkins Users < jenkinsci-users@googlegroups.com> wrote: > Hello, > > I'd like to change the current workspace in a pipeleine script. > See the ws() directive https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/#code-ws-code-allocat

Re: Run one pipeline script on all nodes?

2018-04-08 Thread Mark Waite
On Sun, Apr 8, 2018 at 4:05 AM 'Sandra Parsick' via Jenkins Users < jenkinsci-users@googlegroups.com> wrote: > Hello Mailinglist, > > is it possible to run a pipeline script on all Jenkins nodes? > > It depends what you mean by "all Jenkins nodes". Jenkins includes the concept of "permanent agent

Blue Ocean and Git connectivity issue

2018-04-08 Thread Theo W
Hi, I am currently running jenkins/blueocean in Docker along with Gitea as my Git server. When creating a new pipeline, I run into a message saying that there is an Error :

Run one pipeline script on all nodes?

2018-04-08 Thread 'Sandra Parsick' via Jenkins Users
Hello Mailinglist, is it possible to run a pipeline script on all Jenkins nodes? Thanks and best regards, Sandra -- 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

How to change the current workspace in a pipeline script?

2018-04-08 Thread 'Sandra Parsick' via Jenkins Users
Hello, I'd like to change the current workspace in a pipeleine script. My naive approach is the following script pipeline { agent any environment { WORKSPACE = '/home/sparsick' } stages { stage('Build') { steps { sh 'echo $WORKSPACE'