当前位置: 首页 > 面试题库 >

Jenkins trigger on-demand slaves in dockers

成和悌
2023-03-14
问题内容

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?


问题答案:
  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!

  1. 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.

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

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

  4. Select the usage option - > only build job with label restricthtml" target="_blank">ion.

  5. 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.



 类似资料:

相关阅读

相关文章

相关问答