Skip to content

Commit

Permalink
ci(jenkins): add documentation about used containers
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Nov 15, 2022
1 parent 34df3ce commit b4dffc2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ odsComponentPipeline(
containerTemplate(
alwaysPullImage: true,
args: '${computer.jnlpmac} ${computer.name}',
// Source of the image: https://github.com/opendevstack/ods-quickstarters/blob/4.x/common/jenkins-agents/nodejs16/docker/Dockerfile.ubi8
image: 'image-registry.openshift-image-registry.svc:5000/ods/jenkins-agent-nodejs16:4.x',
name: 'jnlp',
// HINT: Before you increase the resources, make sure that the quotas provide the appropriate resources.
Expand All @@ -29,6 +30,9 @@ odsComponentPipeline(
envVars: [
envVar(key: 'HOME', value: '/tmp')
],
// The playwright container is based on the Ubuntu-20.04 (focal) image and comes with the latest Node.js v16,
// as well as all additionally installed dependencies and browser instances.
// see: https://github.com/microsoft/playwright/blob/main/utils/docker/Dockerfile.focal
image: "mcr.microsoft.com/playwright:v1.27.1-focal",
name: 'playwright',
// HINT: Before you increase the resources, make sure that the quotas provide the appropriate resources.
Expand Down

0 comments on commit b4dffc2

Please sign in to comment.