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

Add in-context Jenkinsfile help #947

Merged
merged 1 commit into from
Nov 29, 2016
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
1 change: 1 addition & 0 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ <h1>JavaScript Required</h1>
<script src="scripts/controllers/modals/confirmReplaceModal.js"></script>
<script src="scripts/controllers/modals/processTemplateModal.js"></script>
<script src="scripts/controllers/modals/linkService.js"></script>
<script src="scripts/controllers/modals/jenkinsfileExamplesModal.js"></script>
<script src="scripts/controllers/about.js"></script>
<script src="scripts/controllers/commandLine.js"></script>
<script src="scripts/controllers/createPersistentVolumeClaim.js"></script>
Expand Down
2 changes: 2 additions & 0 deletions app/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ window.OPENSHIFT_CONSTANTS = {
"roles": "architecture/additional_concepts/authorization.html#roles",
"service_accounts": "dev_guide/service_accounts.html",
"users_and_groups": "architecture/additional_concepts/authentication.html#users-and-groups",
"pipeline-builds": "architecture/core_concepts/builds_and_image_streams.html#pipeline-build",
"pipeline-plugin": "using_images/other_images/jenkins.html#openshift-origin-pipeline-plug-in",
// default should remain last, add new links above
"default": "welcome/index.html"
},
Expand Down
5 changes: 5 additions & 0 deletions app/scripts/controllers/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ angular.module('openshiftConsole')
$routeParams,
BuildsService,
DataService,
ModalsService,
Navigate,
ProjectsService) {
$scope.projectName = $routeParams.project;
Expand Down Expand Up @@ -199,6 +200,10 @@ angular.module('openshiftConsole')
}
};

$scope.showJenkinsfileExamples = function() {
ModalsService.showJenkinsfileExamples();
};

$scope.$on('$destroy', function(){
DataService.unwatchAll(watches);
});
Expand Down
5 changes: 5 additions & 0 deletions app/scripts/controllers/buildConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ angular.module('openshiftConsole')
ImagesService,
DataService,
LabelFilter,
ModalsService,
ProjectsService,
keyValueEditorUtils) {
$scope.projectName = $routeParams.project;
Expand Down Expand Up @@ -266,6 +267,10 @@ angular.module('openshiftConsole')
});
};

$scope.showJenkinsfileExamples = function() {
ModalsService.showJenkinsfileExamples();
};

$scope.$on('$destroy', function(){
DataService.unwatchAll(watches);
});
Expand Down
8 changes: 8 additions & 0 deletions app/scripts/controllers/modals/jenkinsfileExamplesModal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

angular.module('openshiftConsole')
.controller('JenkinsfileExamplesModalController', function($scope, $uibModalInstance) {
$scope.ok = function() {
$uibModalInstance.close('ok');
};
});
8 changes: 8 additions & 0 deletions app/scripts/services/modals.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ angular.module("openshiftConsole")
});

return modalInstance.result;
},

showJenkinsfileExamples: function() {
$uibModal.open({
animation: true,
templateUrl: 'views/modals/jenkinsfile-examples-modal.html',
controller: 'JenkinsfileExamplesModalController'
});
}
};
});
9 changes: 9 additions & 0 deletions app/styles/_forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@
.input-group-addon.wildcard-prefix {
padding-left: 10px;
}

.editor-examples {
padding: 19px;
margin-bottom: 20px;
border: 1px solid @color-pf-black-300;
.copy-to-clipboard {
margin-top: 3px;
}
}
8 changes: 7 additions & 1 deletion app/views/browse/_build-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,24 @@ <h3>Configuration <span class="small" ng-if="buildConfigName">created from <a hr
<dt ng-if-start="build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath">
Jenkinsfile Path:
</dt>
<dd ng-if-end>
<dd>
<span ng-if="build | jenkinsfileLink">
<a ng-href="{{build | jenkinsfileLink}}">{{build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}</a>
</span>
<span ng-if="!(build | jenkinsfileLink)">
{{build.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}
</span>
</dd>
<div ng-if-end class="small">
<a href="" ng-click="showJenkinsfileExamples()">What's a Jenkinsfile?</a>
</div>
<dt ng-if-start="build.spec.strategy.jenkinsPipelineStrategy.jenkinsfile">
Jenkinsfile:
</dt>
<dd></dd>
<div class="small pull-right mar-top-sm">
<a href="" ng-click="showJenkinsfileExamples()">What's a Jenkinsfile?</a>
</div>
<div ng-if-end ui-ace="{
mode: 'groovy',
theme: 'eclipse',
Expand Down
12 changes: 10 additions & 2 deletions app/views/browse/build-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,17 @@ <h2>No builds.</h2>
<dd ng-if="!(buildConfig | jenkinsfileLink)">
{{buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfilePath}}
</dd>
<div class="small">
<a href="" ng-click="showJenkinsfileExamples()">What's a Jenkinsfile?</a>
</div>
</div>
<div ng-if="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile">
<dt>Jenkinsfile:</dt><dd></dd>
<div class="small pull-right mar-top-sm">
<a href="" ng-click="showJenkinsfileExamples()">What's a Jenkinsfile?</a>
</div>
<dt>
Jenkinsfile:
</dt><dd></dd>
<div ui-ace="{
mode: 'groovy',
theme: 'eclipse',
Expand All @@ -249,7 +257,7 @@ <h2>No builds.</h2>
advanced: {
highlightActiveLine: false
}
}" readonly ng-model="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile" class="ace-bordered ace-inline ace-read-only mar-top-md"></div>
}" readonly ng-model="buildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile" class="ace-bordered ace-inline ace-read-only"></div>
</div>
</div>
<dt ng-if-start="buildConfig.spec.source.binary.asFile">Binary Input as File:</dt>
Expand Down
30 changes: 20 additions & 10 deletions app/views/edit/build-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h3>Source Configuration</h3>
</div>

<div ng-if="updatedBuildConfig | isJenkinsPipelineStrategy" class="section">
<h3 class="with-divider">Jenkins Pipeline Configuration</h3>
<h3 ng-class="{ 'with-divider': !sources.none }">Jenkins Pipeline Configuration</h3>
<div class="form-group" ng-if="buildConfig.spec.source.type === 'Git'">
<label for="jenkinsfile-type">Jenkinsfile Type</label>
<select
Expand Down Expand Up @@ -267,15 +267,25 @@ <h3 class="with-divider">Jenkins Pipeline Configuration</h3>

<div ng-if="jenkinsfileOptions.type === 'inline'">
<label>Jenkinsfile</label>
<div ui-ace="{
mode: 'groovy',
theme: 'eclipse',
onLoad: aceLoaded,
rendererOptions: {
fadeFoldWidgets: true,
showPrintMargin: false
}
}" ng-model="updatedBuildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile" class="ace-bordered ace-inline"></div>
<div ui-ace="{
mode: 'groovy',
theme: 'eclipse',
onLoad: aceLoaded,
rendererOptions: {
fadeFoldWidgets: true,
showPrintMargin: false
}
}" ng-model="updatedBuildConfig.spec.strategy.jenkinsPipelineStrategy.jenkinsfile" class="ace-bordered ace-inline"></div>
</div>
<div class="mar-top-md mar-bottom-md">
<a ng-if="!view.jenkinsfileExamples" href="" ng-click="view.jenkinsfileExamples = true">What's a Jenkinsfile?</a>
</div>
<div ng-if="view.jenkinsfileExamples" class="editor-examples">
<div class="pull-right mar-top-md">
<a href="" ng-click="view.jenkinsfileExamples = false">Hide examples</a>
</div>
<h4>Jenkinsfile Examples</h4>
<ng-include src="'views/edit/jenkinsfile-examples.html'"></ng-include>
</div>
</div>
<div ng-if="sources.none && !(updatedBuildConfig | isJenkinsPipelineStrategy)">
Expand Down
48 changes: 48 additions & 0 deletions app/views/edit/jenkinsfile-examples.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<div>
<p>
A Jenkinsfile is a Groovy script that defines your pipeline. In the Jenkinsfile, you can declare
pipeline stages and run one or more steps within each stage. Here are some examples you can use
in your pipelines.
</p>
<p>
Declare a new pipeline stage called <var>Build:</var>
<copy-to-clipboard
display-wide="true"
clipboard-text="'stage \'Build\''">
</copy-to-clipboard>
</p>
<p>
Start a build for build config <var>my-build-config:</var>
<copy-to-clipboard
display-wide="true"
clipboard-text="'openshiftBuild(buildConfig: \'my-build-config\', showBuildLogs: \'true\')'">
</copy-to-clipboard>
</p>
<p>
Start a deployment for deployment config <var>my-deployment-config:</var>
<copy-to-clipboard
display-wide="true"
clipboard-text="'openshiftDeploy(deploymentConfig: \'my-deployment-config\')'">
</copy-to-clipboard>
</p>
<p>
Run the shell command <var>make test:</var>
<copy-to-clipboard
display-wide="true"
clipboard-text="'sh \'make test\''">
</copy-to-clipboard>
</p>
<p>
Prompt for manual input:
<copy-to-clipboard
display-wide="true"
clipboard-text="'input \'Promote to production?\''">
</copy-to-clipboard>
</p>
<p>
Learn more about
<a ng-href="{{ 'pipeline-builds' | helpLink}}" target="_blank">Pipeline Builds</a>
and the
<a ng-href="{{ 'pipeline-plugin' | helpLink}}" target="_blank">OpenShift Pipeline Plugin</a>.
</p>
</div>
9 changes: 9 additions & 0 deletions app/views/modals/jenkinsfile-examples-modal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div>
<div class="modal-body">
<h2>Jenkinsfile Examples</h2>
<ng-include src="'views/edit/jenkinsfile-examples.html'"></ng-include>
</div>
<div class="modal-footer">
<button class="btn btn-lg btn-default" type="button" ng-click="ok()">OK</button>
</div>
</div>
Loading