I have Jenkins installed on a Linux server. It can run builds on itself. I want to create either a Freestyle Project or an External Job that transfers a bash script and runs it on two separate linux servers. Where in the GUI do I configure the destination server when I create a build? I have added "nodes" in the GUI. I can see the free space of the servers in the Jenkins GUI, so I know the credentials work. But when I create a build, I see no field that would tell Jenkins to push the bash scripts and run them on certain servers.
Are Jenkins nodes just servers that lend computing power to the master server? Or are they the targets of Jenkins builds? I believe that Jenkins "slaves" provide computing power to the Jenkins master server.
Normally Jenkins is used to integrate code. What do you call the servers that Jenkins pushes code into? They would be called Chef clients or Puppet agents if I was using Chef or Puppet for integrating code. I've been doing my own research, but I don't seem to know the specific vocabulary.
Yes, a project that runs a job on multiple slaves is a multi-configuration (or "matrix") project.http://stackoverflow.com/questions/7515730/jenkins-and-multi-configuration-matrix-jobs gives a good description of the differences between the two.https://wiki.jenkins-ci.org/display/JENKINS/Building+a+matrix+project also describes multi-configuration jobs.Mark Waite
On Mon, Feb 1, 2016 at 5:28 AM Kiran wrote:
If I have a single job that I want to run on many computers, that is a multi-configuration job?
--
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/24c25552-d279-4138-8984-b6003015871f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
If the job just deploys a file to different servers (and uses no slaves) is a Freestyle project?