Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(buildDockerAndPublishImage) downgrade docker-builder to 2.0.2 #282

Merged
merged 2 commits into from
Jan 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vars/buildDockerAndPublishImage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def call(String imageName, Map config=[:]) {
// This container must be named `jnlp` and should use the default entrypoint/cmd (command/args) inherited from inbound-agent parent image
containerTemplate(
name: 'jnlp',
image: config.builderImage ?: 'jenkinsciinfra/builder:2.0.4',
image: config.builderImage ?: 'jenkinsciinfra/builder:2.0.2',
resourceRequestCpu: '2',
resourceLimitCpu: '2',
resourceRequestMemory: '2Gi',
Expand Down
2 changes: 1 addition & 1 deletion vars/buildDockerAndPublishImage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<li>Boolean automaticSemanticVersioning: (Optional, defaults to "false") Should we create a release for every merge to the mainBranch. This uses "jx-release-version" to determine the version number based on the commit history.</li>
<li>String gitCredentials: (Optional, defaults to "") If "automaticSemanticVersioning" is set, name of the credential to use when tagging the git repository. Support User/password or GitHub App credential types.</li>
<li>String metadataFromSh: (Optional, defaults to "") If "automaticSemanticVersioning" is set, use a script to calculate the build metadata to be appended to the generated version.</li>
<li>String builderImage: (Optional, defaults to "jenkinsciinfra/builder:2.0.4") Docker Image to be used for the container "builder" of the CI pod template.</li>
<li>String builderImage: (Optional, defaults to "jenkinsciinfra/builder:2.0.2") Docker Image to be used for the container "builder" of the CI pod template.</li>
</ul>
</li>
</ul>
Expand Down