File tree 15 files changed +278
-62
lines changed
15 files changed +278
-62
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ <h1>JavaScript Required</h1>
270
270
< script src ="scripts/controllers/modals/confirmReplaceModal.js "> </ script >
271
271
< script src ="scripts/controllers/modals/processTemplateModal.js "> </ script >
272
272
< script src ="scripts/controllers/modals/linkService.js "> </ script >
273
+ < script src ="scripts/controllers/modals/jenkinsfileExamplesModal.js "> </ script >
273
274
< script src ="scripts/controllers/about.js "> </ script >
274
275
< script src ="scripts/controllers/commandLine.js "> </ script >
275
276
< script src ="scripts/controllers/createPersistentVolumeClaim.js "> </ script >
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ window.OPENSHIFT_CONSTANTS = {
39
39
"roles" : "architecture/additional_concepts/authorization.html#roles" ,
40
40
"service_accounts" : "dev_guide/service_accounts.html" ,
41
41
"users_and_groups" : "architecture/additional_concepts/authentication.html#users-and-groups" ,
42
+ "pipeline-builds" : "architecture/core_concepts/builds_and_image_streams.html#pipeline-build" ,
43
+ "pipeline-plugin" : "using_images/other_images/jenkins.html#openshift-origin-pipeline-plug-in" ,
42
44
// default should remain last, add new links above
43
45
"default" : "welcome/index.html"
44
46
} ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ angular.module('openshiftConsole')
12
12
$routeParams ,
13
13
BuildsService ,
14
14
DataService ,
15
+ ModalsService ,
15
16
Navigate ,
16
17
ProjectsService ) {
17
18
$scope . projectName = $routeParams . project ;
@@ -199,6 +200,10 @@ angular.module('openshiftConsole')
199
200
}
200
201
} ;
201
202
203
+ $scope . showJenkinsfileExamples = function ( ) {
204
+ ModalsService . showJenkinsfileExamples ( ) ;
205
+ } ;
206
+
202
207
$scope . $on ( '$destroy' , function ( ) {
203
208
DataService . unwatchAll ( watches ) ;
204
209
} ) ;
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ angular.module('openshiftConsole')
16
16
ImagesService ,
17
17
DataService ,
18
18
LabelFilter ,
19
+ ModalsService ,
19
20
ProjectsService ,
20
21
keyValueEditorUtils ) {
21
22
$scope . projectName = $routeParams . project ;
@@ -266,6 +267,10 @@ angular.module('openshiftConsole')
266
267
} ) ;
267
268
} ;
268
269
270
+ $scope . showJenkinsfileExamples = function ( ) {
271
+ ModalsService . showJenkinsfileExamples ( ) ;
272
+ } ;
273
+
269
274
$scope . $on ( '$destroy' , function ( ) {
270
275
DataService . unwatchAll ( watches ) ;
271
276
} ) ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ angular . module ( 'openshiftConsole' )
4
+ . controller ( 'JenkinsfileExamplesModalController' , function ( $scope , $uibModalInstance ) {
5
+ $scope . ok = function ( ) {
6
+ $uibModalInstance . close ( 'ok' ) ;
7
+ } ;
8
+ } ) ;
Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ angular.module("openshiftConsole")
16
16
} ) ;
17
17
18
18
return modalInstance . result ;
19
+ } ,
20
+
21
+ showJenkinsfileExamples : function ( ) {
22
+ $uibModal . open ( {
23
+ animation : true ,
24
+ templateUrl : 'views/modals/jenkinsfile-examples-modal.html' ,
25
+ controller : 'JenkinsfileExamplesModalController'
26
+ } ) ;
19
27
}
20
28
} ;
21
29
} ) ;
Original file line number Diff line number Diff line change 6
6
.input-group-addon.wildcard-prefix {
7
7
padding-left : 10px ;
8
8
}
9
+
10
+ .editor-examples {
11
+ padding : 19px ;
12
+ margin-bottom : 20px ;
13
+ border : 1px solid @color-pf-black-300 ;
14
+ .copy-to-clipboard {
15
+ margin-top : 3px ;
16
+ }
17
+ }
Original file line number Diff line number Diff line change @@ -87,18 +87,24 @@ <h3>Configuration <span class="small" ng-if="buildConfigName">created from <a hr
87
87
< dt ng-if-start ="build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath ">
88
88
Jenkinsfile Path:
89
89
</ dt >
90
- < dd ng-if-end >
90
+ < dd >
91
91
< span ng-if ="build | jenkinsfileLink ">
92
92
< a ng-href ="{{build | jenkinsfileLink}} "> {{build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}</ a >
93
93
</ span >
94
94
< span ng-if ="!(build | jenkinsfileLink) ">
95
95
{{build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}
96
96
</ span >
97
97
</ dd >
98
+ < div ng-if-end class ="small ">
99
+ < a href ="" ng-click ="showJenkinsfileExamples() "> What's a Jenkinsfile?</ a >
100
+ </ div >
98
101
< dt ng-if-start ="build.spec.strategy.jenkinsPipelineStrategy.jenkinsfile ">
99
102
Jenkinsfile:
100
103
</ dt >
101
104
< dd > </ dd >
105
+ < div class ="small pull-right mar-top-sm ">
106
+ < a href ="" ng-click ="showJenkinsfileExamples() "> What's a Jenkinsfile?</ a >
107
+ </ div >
102
108
< div ng-if-end ui-ace ="{
103
109
mode: 'groovy',
104
110
theme: 'eclipse',
Original file line number Diff line number Diff line change @@ -234,9 +234,17 @@ <h2>No builds.</h2>
234
234
< dd ng-if ="!(buildConfig | jenkinsfileLink) ">
235
235
{{buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}
236
236
</ dd >
237
+ < div class ="small ">
238
+ < a href ="" ng-click ="showJenkinsfileExamples() "> What's a Jenkinsfile?</ a >
239
+ </ div >
237
240
</ div >
238
241
< div ng-if ="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile ">
239
- < dt > Jenkinsfile:</ dt > < dd > </ dd >
242
+ < div class ="small pull-right mar-top-sm ">
243
+ < a href ="" ng-click ="showJenkinsfileExamples() "> What's a Jenkinsfile?</ a >
244
+ </ div >
245
+ < dt >
246
+ Jenkinsfile:
247
+ </ dt > < dd > </ dd >
240
248
< div ui-ace ="{
241
249
mode: 'groovy',
242
250
theme: 'eclipse',
@@ -249,7 +257,7 @@ <h2>No builds.</h2>
249
257
advanced: {
250
258
highlightActiveLine: false
251
259
}
252
- } " readonly ng-model ="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile " class ="ace-bordered ace-inline ace-read-only mar-top-md "> </ div >
260
+ } " readonly ng-model ="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile " class ="ace-bordered ace-inline ace-read-only "> </ div >
253
261
</ div >
254
262
</ div >
255
263
< dt ng-if-start ="buildConfig.spec.source.binary.asFile "> Binary Input as File:</ dt >
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ <h3>Source Configuration</h3>
232
232
</ div >
233
233
234
234
< div ng-if ="updatedBuildConfig | isJenkinsPipelineStrategy " class ="section ">
235
- < h3 class ="with-divider "> Jenkins Pipeline Configuration</ h3 >
235
+ < h3 ng- class ="{ ' with-divider': !sources.none } "> Jenkins Pipeline Configuration</ h3 >
236
236
< div class ="form-group " ng-if ="buildConfig.spec.source.type === 'Git' ">
237
237
< label for ="jenkinsfile-type "> Jenkinsfile Type</ label >
238
238
< select
@@ -267,15 +267,25 @@ <h3 class="with-divider">Jenkins Pipeline Configuration</h3>
267
267
268
268
< div ng-if ="jenkinsfileOptions.type === 'inline' ">
269
269
< label > Jenkinsfile</ label >
270
- < div ui-ace ="{
271
- mode: 'groovy',
272
- theme: 'eclipse',
273
- onLoad: aceLoaded,
274
- rendererOptions: {
275
- fadeFoldWidgets: true,
276
- showPrintMargin: false
277
- }
278
- } " ng-model ="updatedBuildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile " class ="ace-bordered ace-inline "> </ div >
270
+ < div ui-ace ="{
271
+ mode: 'groovy',
272
+ theme: 'eclipse',
273
+ onLoad: aceLoaded,
274
+ rendererOptions: {
275
+ fadeFoldWidgets: true,
276
+ showPrintMargin: false
277
+ }
278
+ } " ng-model ="updatedBuildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile " class ="ace-bordered ace-inline "> </ div >
279
+ </ div >
280
+ < div class ="mar-top-md mar-bottom-md ">
281
+ < a ng-if ="!view.jenkinsfileExamples " href ="" ng-click ="view.jenkinsfileExamples = true "> What's a Jenkinsfile?</ a >
282
+ </ div >
283
+ < div ng-if ="view.jenkinsfileExamples " class ="editor-examples ">
284
+ < div class ="pull-right mar-top-md ">
285
+ < a href ="" ng-click ="view.jenkinsfileExamples = false "> Hide examples</ a >
286
+ </ div >
287
+ < h4 > Jenkinsfile Examples</ h4 >
288
+ < ng-include src ="'views/edit/jenkinsfile-examples.html' "> </ ng-include >
279
289
</ div >
280
290
</ div >
281
291
< div ng-if ="sources.none && !(updatedBuildConfig | isJenkinsPipelineStrategy) ">
Original file line number Diff line number Diff line change
1
+ < div >
2
+ < p >
3
+ A Jenkinsfile is a Groovy script that defines your pipeline. In the Jenkinsfile, you can declare
4
+ pipeline stages and run one or more steps within each stage. Here are some examples you can use
5
+ in your pipelines.
6
+ </ p >
7
+ < p >
8
+ Declare a new pipeline stage called < var > Build:</ var >
9
+ < copy-to-clipboard
10
+ display-wide ="true "
11
+ clipboard-text ="'stage \'Build\'' ">
12
+ </ copy-to-clipboard >
13
+ </ p >
14
+ < p >
15
+ Start a build for build config < var > my-build-config:</ var >
16
+ < copy-to-clipboard
17
+ display-wide ="true "
18
+ clipboard-text ="'openshiftBuild(buildConfig: \'my-build-config\', showBuildLogs: \'true\')' ">
19
+ </ copy-to-clipboard >
20
+ </ p >
21
+ < p >
22
+ Start a deployment for deployment config < var > my-deployment-config:</ var >
23
+ < copy-to-clipboard
24
+ display-wide ="true "
25
+ clipboard-text ="'openshiftDeploy(deploymentConfig: \'my-deployment-config\')' ">
26
+ </ copy-to-clipboard >
27
+ </ p >
28
+ < p >
29
+ Run the shell command < var > make test:</ var >
30
+ < copy-to-clipboard
31
+ display-wide ="true "
32
+ clipboard-text ="'sh \'make test\'' ">
33
+ </ copy-to-clipboard >
34
+ </ p >
35
+ < p >
36
+ Prompt for manual input:
37
+ < copy-to-clipboard
38
+ display-wide ="true "
39
+ clipboard-text ="'input \'Promote to production?\'' ">
40
+ </ copy-to-clipboard >
41
+ </ p >
42
+ < p >
43
+ Learn more about
44
+ < a ng-href ="{{ 'pipeline-builds' | helpLink}} " target ="_blank "> Pipeline Builds</ a >
45
+ and the
46
+ < a ng-href ="{{ 'pipeline-plugin' | helpLink}} " target ="_blank "> OpenShift Pipeline Plugin</ a > .
47
+ </ p >
48
+ </ div >
Original file line number Diff line number Diff line change
1
+ < div >
2
+ < div class ="modal-body ">
3
+ < h2 > Jenkinsfile Examples</ h2 >
4
+ < ng-include src ="'views/edit/jenkinsfile-examples.html' "> </ ng-include >
5
+ </ div >
6
+ < div class ="modal-footer ">
7
+ < button class ="btn btn-lg btn-default " type ="button " ng-click ="ok() "> OK</ button >
8
+ </ div >
9
+ </ div >
You can’t perform that action at this time.
0 commit comments