Bug 1414661
| Summary: | Should not use deprecated syntax for defining stage in Jenkinsfile Example | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Yadan Pei <yapei> |
| Component: | Management Console | Assignee: | Samuel Padgett <spadgett> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Yadan Pei <yapei> |
| Severity: | low | Docs Contact: | |
| Priority: | medium | ||
| Version: | 3.5.0 | CC: | aos-bugs, jokerman, mmccomas, tdawson |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-03-08 13:22:52 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Yadan Pei
2017-01-19 07:47:48 UTC
Commit pushed to master at https://github.com/openshift/origin-web-console https://github.com/openshift/origin-web-console/commit/e7999440329af861fb306be660d4fbb64bf26305 Bug 1414661 - Use block syntax for stages in examples Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1414661 This has been merged into ocp and is in OCP v3.5.0.10 or newer. Checked against v3.5.0.14+20b49d0
Now the Jenkinsfile Examples are displayed with latest format(stage is defined in block argument):
node {
stage('Build') {
openshiftBuild(buildConfig: 'my-build-config', showBuildLogs: 'true')
}
stage('Deploy') {
openshiftDeploy(deploymentConfig: 'my-deployment-config')
}
}
Move to VERIFIED
|