Jenkins trigger on-demand slaves in dockers

2020-03-26 05:50发布

I'm looking for a way to run Jenkins jobs/build inside Jenkins slaves, dynamically (on-demand) started docker. Attaching schema for visual understanding. What I'm actually looking for and my flow looks like:

1) Triggering Jenkins job (manually/git/gerrit)
2) Jenkins master (running in docker) starts slave machine docker (and pass script/instructions of the build)
3) Build is running on Jenkins slave (or slaves if parallel/pipeline)
4) Result returned to Jenkins master
5) Jenkins slave docker stops

Jenkins Flow

Is it possible to do it this way?

2条回答
聊天终结者
2楼-- · 2020-03-26 06:28
  1. Docker slave image creation steps like installing openssh, user creation, mentioned in the below link. Install docker plugin from the below link.

    Click here!

  2. Go to jenkins global configuration, Under cloud headings, docker configuration will be there, enter docker host url with port number, credential not required. give some values for connection timeout & read timeout.

  3. Under docker template - Enter the docker image name which we created in the point number 1.

  4. Set Label number (Give this label name during Jenkins job creation and restrict to this slave name),

  5. Select the usage option - > only build job with label restriction.

  6. No of executor -> minimum 1. Select launch method as ssh, enter the user credential to login, which we created in docker image in the step number 1.

create a job restrict to docker slave label, run, ondemand it wil spun up container.

查看更多
虎瘦雄心在
3楼-- · 2020-03-26 06:28

Use this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Yet+Another+Docker+Plugin

After instalation (it requires Java 1.8) naviaget to configuration. There are two steps:

  1. configure docker "cloud"
  2. add "instances" (docker images) you want to run the build on

Every image should have label assigned - use this label in you job configuration to tell Jenkins explicitlyon which node the job should be run

查看更多
登录 后发表回答