-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9dd3049
commit dad942c
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ This is a Golang CLI to convert the a Jenkinsfile based on 3.x to 4.x based on t | |
|
||
## Download | ||
|
||
Target a specific version and platform for the binary. For version `v0.1.0` and linux, you would: | ||
Target a specific version and platform for the binary. For version `v0.1.1` and linux, you would: | ||
|
||
```cli | ||
curl -L https://github.com/opendevstack/ods-jenkinsfile-converter/releases/download/v0.1.0/converter -o converter | ||
curl -L https://github.com/opendevstack/ods-jenkinsfile-converter/releases/download/v0.1.1/converter -o converter | ||
sudo mv converter /usr/local/bin | ||
``` | ||
|
||
|
@@ -61,7 +61,7 @@ You can run the binary for your platform. To preview the changes that will be do | |
This tool will carry out the following changes in an ODS 3.x Jenkinsfile: | ||
|
||
- [X] Update `@Library('[email protected]') _` to `@Library('[email protected]') _` | ||
- [X] Point to agent images with the 4.x tag, e.g. change imageStreamTag: `ods/jenkins-agent-golang:3.x` to imageStreamTag: `ods/jenkins-agent-golang:4.x`. | ||
- [X] Point to agent images with the 4.x tag, e.g. change imageStreamTag: `ods/jenkins-agent-golang:3.x` to imageStreamTag: `ods/jenkins-agent-golang:4.x` or imageStreamTag: `ods/jenkins-agent-golang:3.0.0` to imageStreamTag: `ods/jenkins-agent-golang:4.0.0`. | ||
- [X] `odsComponentStageImportOpenShiftImageOrElse` has been deprecated, and is now aliased to the new method, `odsComponentFindOpenShiftImageOrElse`. | ||
- [X] `odsComponentStageRolloutOpenShiftDeployment` rolls out all deployment resources together now. If you had multiple DeploymentConfig resources previously, you had to target each one by specifying the config option resourceName. This is no longer possible - instead the stage iterates over all DeploymentConfig resources with the component label (app=${projectId}-${componentId}). Changes must be made to pipelines that have multiple deployments, such as components based on the ds-jupyter-notebook and ds-rshiny quickstarter. | ||
|
||
|