Skip to content

Commit 464315d

Browse files
committed
Show a "Start Pipeline" button on overview
When a deployment config has no deployments and the deployment config is part of a pipeline, link to the pipeline build config and show a "Start Pipeline" button in place of the "Start Deployment" button.
1 parent cf4e107 commit 464315d

File tree

5 files changed

+144
-71
lines changed

5 files changed

+144
-71
lines changed

app/scripts/controllers/overview.js

+14
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ angular.module('openshiftConsole')
401401
};
402402

403403
var buildConfigForBuild = $filter('buildConfigForBuild');
404+
var isIncompleteBuild = $filter('isIncompleteBuild');
404405
var groupPipelineByDC = function(build) {
405406
if (!buildConfigs) {
406407
return;
@@ -417,6 +418,10 @@ angular.module('openshiftConsole')
417418
_.each(dcNames, function(dcName) {
418419
$scope.recentPipelinesByDC[dcName] = $scope.recentPipelinesByDC[dcName] || [];
419420
$scope.recentPipelinesByDC[dcName].push(build);
421+
if (isIncompleteBuild(build)) {
422+
$scope.incompletePipelinesByDC[dcName] = $scope.incompletePipelinesByDC[dcName] || [];
423+
$scope.incompletePipelinesByDC[dcName].push(build);
424+
}
420425
});
421426
};
422427

@@ -426,6 +431,7 @@ angular.module('openshiftConsole')
426431
}
427432
// reset these maps
428433
$scope.recentPipelinesByDC = {};
434+
$scope.incompletePipelinesByDC = {};
429435
$scope.recentBuildsByOutputImage = {};
430436
_.each(
431437
BuildsService.interestingBuilds(builds),
@@ -436,6 +442,14 @@ angular.module('openshiftConsole')
436442
}
437443
groupPipelineByDC(build);
438444
});
445+
446+
$scope.pipelinesForDC = {};
447+
_.each(buildConfigs, function(buildConfig) {
448+
_.each(BuildsService.usesDeploymentConfigs(buildConfig), function(dcName) {
449+
$scope.pipelinesForDC[dcName] = $scope.pipelinesForDC[dcName] || [];
450+
$scope.pipelinesForDC[dcName].push(buildConfig);
451+
});
452+
});
439453
};
440454

441455

app/scripts/directives/overview/dc.js

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
'use strict';
22

33
angular.module('openshiftConsole')
4-
.directive('overviewDeploymentConfig', function($filter, $uibModal, DeploymentsService, Navigate) {
4+
.directive('overviewDeploymentConfig',
5+
function($filter,
6+
$uibModal,
7+
BuildsService,
8+
DeploymentsService,
9+
Navigate) {
510
return {
611
restrict: 'E',
712
// Inherit scope from OverviewController. This directive is only used for the overview.
@@ -37,6 +42,18 @@ angular.module('openshiftConsole')
3742
return Navigate.resourceURL(name, 'ImageStream', namespace);
3843
};
3944

45+
$scope.startPipeline = function(pipeline) {
46+
BuildsService
47+
.startBuild(pipeline.metadata.name, { namespace: pipeline.metadata.namespace })
48+
.then(_.noop, function(result) {
49+
$scope.alerts["start-pipeline"] = {
50+
type: "error",
51+
message: "An error occurred while starting the pipeline.",
52+
details: $filter('getErrorDetails')(result)
53+
};
54+
});
55+
};
56+
4057
$scope.startDeployment = function() {
4158
DeploymentsService.startLatestDeployment($scope.deploymentConfig, {
4259
namespace: $scope.deploymentConfig.metadata.namespace

app/views/overview/_dc.html

+22-6
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,28 @@ <h2>No deployments.</h2>
5151
</span>
5252
</div>
5353
<div ng-if="!imageChangeTriggers.length">
54-
<p>
55-
No deployments have started for
56-
<a ng-href="{{deploymentConfig | navigateResourceURL}}">{{deploymentConfig.metadata.name}}</a>.
57-
</p>
58-
<div ng-if="'deploymentconfigs' | canI : 'update'" class="mar-top-md">
59-
<button class="btn btn-primary" ng-click="startDeployment(deploymentConfig)">
54+
<div ng-if="pipeline = pipelinesForDC[deploymentConfig.metadata.name][0]">
55+
<p>
56+
This deployment config is part of pipeline
57+
<a ng-href="{{pipeline | navigateResourceURL}}">{{pipeline.metadata.name}}</a>.
58+
</p>
59+
<div ng-if="('buildconfigs/instantiate' | canI : 'create')">
60+
<!-- Disable the button if a pipeline is running. -->
61+
<button
62+
class="btn btn-primary"
63+
ng-click="startPipeline(pipeline)"
64+
ng-disabled="incompletePipelinesByDC[deploymentConfig.metadata.name].length">
65+
Start Pipeline
66+
</button>
67+
</div>
68+
</div>
69+
<div ng-if="!pipelinesForDC[deploymentConfig.metadata.name].length">
70+
<p>
71+
No deployments have started for
72+
<a ng-href="{{deploymentConfig | navigateResourceURL}}">{{deploymentConfig.metadata.name}}</a>.
73+
</p>
74+
75+
<button ng-if="'deploymentconfigs' | canI : 'update'" class="btn btn-primary" ng-click="startDeployment(deploymentConfig)">
6076
Start Deployment
6177
</button>
6278
</div>

dist/scripts/scripts.js

+76-62
Original file line numberDiff line numberDiff line change
@@ -4372,24 +4372,28 @@ _.set(c, [ "routeWarningsByService", a.metadata.name, b.metadata.name ], d);
43724372
}, ia = function(a) {
43734373
var b = H(_.get(a, "spec.output.to"), a.metadata.namespace);
43744374
c.recentBuildsByOutputImage[b] = c.recentBuildsByOutputImage[b] || [], c.recentBuildsByOutputImage[b].push(a);
4375-
}, ja = a("buildConfigForBuild"), ka = function(a) {
4375+
}, ja = a("buildConfigForBuild"), ka = a("isIncompleteBuild"), la = function(a) {
43764376
if (z) {
43774377
var b = ja(a), d = z[b];
43784378
if (d) {
43794379
var f = e.usesDeploymentConfigs(d);
43804380
_.each(f, function(b) {
4381-
c.recentPipelinesByDC[b] = c.recentPipelinesByDC[b] || [], c.recentPipelinesByDC[b].push(a);
4381+
c.recentPipelinesByDC[b] = c.recentPipelinesByDC[b] || [], c.recentPipelinesByDC[b].push(a), ka(a) && (c.incompletePipelinesByDC[b] = c.incompletePipelinesByDC[b] || [], c.incompletePipelinesByDC[b].push(a));
43824382
});
43834383
}
43844384
}
4385-
}, la = function() {
4386-
A && (c.recentPipelinesByDC = {}, c.recentBuildsByOutputImage = {}, _.each(e.interestingBuilds(A), function(a) {
4387-
return E(a) ? void ka(a) :void ia(a);
4388-
}));
43894385
}, ma = function() {
4386+
A && (c.recentPipelinesByDC = {}, c.incompletePipelinesByDC = {}, c.recentBuildsByOutputImage = {}, _.each(e.interestingBuilds(A), function(a) {
4387+
return E(a) ? void la(a) :void ia(a);
4388+
}), c.pipelinesForDC = {}, _.each(z, function(a) {
4389+
_.each(e.usesDeploymentConfigs(a), function(b) {
4390+
c.pipelinesForDC[b] = c.pipelinesForDC[b] || [], c.pipelinesForDC[b].push(a);
4391+
});
4392+
}));
4393+
}, na = function() {
43904394
var a = _.isEmpty(r) && _.isEmpty(t) && _.isEmpty(c.monopodsByService) && _.isEmpty(u) && _.isEmpty(w) && _.isEmpty(x), b = r && y && u && w && x;
43914395
c.renderOptions.showGetStarted = b && a, c.renderOptions.showLoading = !b && a;
4392-
}, na = function() {
4396+
}, oa = function() {
43934397
var a = d.isAlertPermanentlyHidden("overview-quota-limit-reached", c.projectName);
43944398
if (!a && p.isAnyQuotaExceeded(c.quotas, c.clusterQuotas)) {
43954399
if (c.alerts.quotaExceeded) return;
@@ -4428,11 +4432,11 @@ var b = _.get(c, [ a, "" ], {});
44284432
return !_.isEmpty(b);
44294433
});
44304434
};
4431-
var oa = [];
4435+
var pa = [];
44324436
c.getHPA = function(a) {
44334437
if (!B) return null;
44344438
var b = _.get(a, "kind"), c = _.get(a, "metadata.name");
4435-
return _.get(C, [ b, c ], oa);
4439+
return _.get(C, [ b, c ], pa);
44364440
}, window.OPENSHIFT_CONSTANTS.DISABLE_OVERVIEW_METRICS || (o.isAvailable(!0).then(function(a) {
44374441
c.showMetrics = a;
44384442
}), c.$on("metrics-connection-failed", function(a, b) {
@@ -4453,64 +4457,64 @@ return d.permanentlyHideAlert("metrics-connection-failed"), !0;
44534457
} ]
44544458
});
44554459
}));
4456-
var pa = a("isIE")() || a("isEdge")();
4460+
var qa = a("isIE")() || a("isEdge")();
44574461
k.get(b.project).then(_.spread(function(a, b) {
44584462
c.project = a, c.projectContext = b, D.push(f.watch("pods", b, function(a) {
4459-
y = a.by("metadata.name"), aa(), ma(), i.log("pods", y);
4463+
y = a.by("metadata.name"), aa(), na(), i.log("pods", y);
44604464
})), D.push(f.watch("services", b, function(a) {
4461-
c.services = r = a.by("metadata.name"), ga(), aa(), P(), U(), T(), V(), Y(), ha(), ma(), i.log("services (subscribe)", r);
4465+
c.services = r = a.by("metadata.name"), ga(), aa(), P(), U(), T(), V(), Y(), ha(), na(), i.log("services (subscribe)", r);
44624466
}, {
4463-
poll:pa,
4467+
poll:qa,
44644468
pollInterval:6e4
44654469
})), D.push(f.watch("builds", b, function(a) {
4466-
A = a.by("metadata.name"), la(), ma(), i.log("builds (subscribe)", A);
4470+
A = a.by("metadata.name"), ma(), na(), i.log("builds (subscribe)", A);
44674471
})), D.push(f.watch("buildConfigs", b, function(a) {
4468-
z = a.by("metadata.name"), la(), i.log("builds (subscribe)", A);
4472+
z = a.by("metadata.name"), ma(), i.log("builds (subscribe)", A);
44694473
}, {
4470-
poll:pa,
4474+
poll:qa,
44714475
pollInterval:6e4
44724476
})), D.push(f.watch("routes", b, function(a) {
44734477
q = a.by("metadata.name"), O(), ga(), ha(), i.log("routes (subscribe)", c.routesByService);
44744478
}, {
4475-
poll:pa,
4479+
poll:qa,
44764480
pollInterval:6e4
44774481
})), D.push(f.watch("replicationcontrollers", b, function(a) {
4478-
c.replicationControllersByName = u = a.by("metadata.name"), U(), T(), aa(), la(), ma(), i.log("replicationcontrollers (subscribe)", u);
4482+
c.replicationControllersByName = u = a.by("metadata.name"), U(), T(), aa(), ma(), na(), i.log("replicationcontrollers (subscribe)", u);
44794483
})), D.push(f.watch("deploymentconfigs", b, function(a) {
4480-
t = a.by("metadata.name"), P(), T(), ma(), i.log("deploymentconfigs (subscribe)", t);
4484+
t = a.by("metadata.name"), P(), T(), na(), i.log("deploymentconfigs (subscribe)", t);
44814485
})), D.push(f.watch({
44824486
group:"extensions",
44834487
resource:"replicasets"
44844488
}, b, function(a) {
4485-
w = a.by("metadata.name"), aa(), V(), X(), ma(), i.log("replicasets (subscribe)", w);
4489+
w = a.by("metadata.name"), aa(), V(), X(), na(), i.log("replicasets (subscribe)", w);
44864490
})), D.push(f.watch({
44874491
group:"apps",
44884492
resource:"petsets"
44894493
}, b, function(a) {
4490-
x = a.by("metadata.name"), aa(), Y(), ma(), i.log("petsets (subscribe)", x);
4494+
x = a.by("metadata.name"), aa(), Y(), na(), i.log("petsets (subscribe)", x);
44914495
}, {
4492-
poll:pa,
4496+
poll:qa,
44934497
pollInterval:6e4
44944498
})), D.push(f.watch({
44954499
group:"extensions",
44964500
resource:"deployments"
44974501
}, b, function(a) {
4498-
s = a.by("metadata.name"), Q(), X(), ma(), i.log("deployments (subscribe)", s);
4502+
s = a.by("metadata.name"), Q(), X(), na(), i.log("deployments (subscribe)", s);
44994503
})), D.push(f.watch({
45004504
group:"extensions",
45014505
resource:"horizontalpodautoscalers"
45024506
}, b, function(a) {
45034507
B = a.by("metadata.name"), Z();
45044508
}, {
4505-
poll:pa,
4509+
poll:qa,
45064510
pollInterval:6e4
45074511
})), D.push(f.watch("resourcequotas", b, function(a) {
4508-
c.quotas = a.by("metadata.name"), na();
4512+
c.quotas = a.by("metadata.name"), oa();
45094513
}, {
45104514
poll:!0,
45114515
pollInterval:6e4
45124516
})), D.push(f.watch("appliedclusterresourcequotas", b, function(a) {
4513-
c.clusterQuotas = a.by("metadata.name"), na();
4517+
c.clusterQuotas = a.by("metadata.name"), oa();
45144518
}, {
45154519
poll:!0,
45164520
pollInterval:6e4
@@ -12511,72 +12515,82 @@ restrict:"E",
1251112515
scope:!0,
1251212516
templateUrl:"views/overview/_set.html"
1251312517
};
12514-
}), angular.module("openshiftConsole").directive("overviewDeploymentConfig", [ "$filter", "$uibModal", "DeploymentsService", "Navigate", function(a, b, c, d) {
12518+
}), angular.module("openshiftConsole").directive("overviewDeploymentConfig", [ "$filter", "$uibModal", "BuildsService", "DeploymentsService", "Navigate", function(a, b, c, d, e) {
1251512519
return {
1251612520
restrict:"E",
1251712521
scope:!0,
1251812522
templateUrl:"views/overview/_dc.html",
12519-
link:function(e) {
12520-
var f = a("orderObjectsByDate"), g = a("deploymentIsInProgress");
12521-
e.$watch("scalableReplicationControllerByDC", function() {
12522-
var a = _.get(e, "deploymentConfig.metadata.name");
12523-
e.activeReplicationController = _.get(e, [ "scalableReplicationControllerByDC", a ]);
12524-
}), e.$watch("visibleRCByDC", function(a) {
12525-
var b = _.get(e, "deploymentConfig.metadata.name"), c = _.get(a, [ b ], []);
12526-
e.orderedReplicationControllers = f(c, !0), e.inProgressDeployment = _.find(e.orderedReplicationControllers, g);
12527-
}), e.$watch("deploymentConfig", function(a) {
12523+
link:function(f) {
12524+
var g = a("orderObjectsByDate"), h = a("deploymentIsInProgress");
12525+
f.$watch("scalableReplicationControllerByDC", function() {
12526+
var a = _.get(f, "deploymentConfig.metadata.name");
12527+
f.activeReplicationController = _.get(f, [ "scalableReplicationControllerByDC", a ]);
12528+
}), f.$watch("visibleRCByDC", function(a) {
12529+
var b = _.get(f, "deploymentConfig.metadata.name"), c = _.get(a, [ b ], []);
12530+
f.orderedReplicationControllers = g(c, !0), f.inProgressDeployment = _.find(f.orderedReplicationControllers, h);
12531+
}), f.$watch("deploymentConfig", function(a) {
1252812532
var b = _.get(a, "spec.triggers", []);
12529-
e.imageChangeTriggers = _.filter(b, function(a) {
12533+
f.imageChangeTriggers = _.filter(b, function(a) {
1253012534
return "ImageChange" === a.type && _.get(a, "imageChangeParams.automatic");
1253112535
});
12532-
}), e.urlForImageChangeTrigger = function(b) {
12533-
var c = a("stripTag")(_.get(b, "imageChangeParams.from.name")), f = _.get(b, "imageChangeParams.from.namespace", e.deploymentConfig.metadata.namespace);
12534-
return d.resourceURL(c, "ImageStream", f);
12535-
}, e.startDeployment = function() {
12536-
c.startLatestDeployment(e.deploymentConfig, {
12537-
namespace:e.deploymentConfig.metadata.namespace
12538-
}, e);
12536+
}), f.urlForImageChangeTrigger = function(b) {
12537+
var c = a("stripTag")(_.get(b, "imageChangeParams.from.name")), d = _.get(b, "imageChangeParams.from.namespace", f.deploymentConfig.metadata.namespace);
12538+
return e.resourceURL(c, "ImageStream", d);
12539+
}, f.startPipeline = function(b) {
12540+
c.startBuild(b.metadata.name, {
12541+
namespace:b.metadata.namespace
12542+
}).then(_.noop, function(b) {
12543+
f.alerts["start-pipeline"] = {
12544+
type:"error",
12545+
message:"An error occurred while starting the pipeline.",
12546+
details:a("getErrorDetails")(b)
1253912547
};
12540-
var h;
12541-
e.$watch("deploymentConfig.spec.paused", function() {
12542-
h = !1;
12543-
}), e.resumeDeployment = function() {
12544-
h || (h = !0, c.setPaused(e.deploymentConfig, !1, {
12545-
namespace:e.deploymentConfig.metadata.namespace
12548+
});
12549+
}, f.startDeployment = function() {
12550+
d.startLatestDeployment(f.deploymentConfig, {
12551+
namespace:f.deploymentConfig.metadata.namespace
12552+
}, f);
12553+
};
12554+
var i;
12555+
f.$watch("deploymentConfig.spec.paused", function() {
12556+
i = !1;
12557+
}), f.resumeDeployment = function() {
12558+
i || (i = !0, d.setPaused(f.deploymentConfig, !1, {
12559+
namespace:f.deploymentConfig.metadata.namespace
1254612560
}).then(_.noop, function(b) {
12547-
h = !1, e.alerts["resume-deployment"] = {
12561+
i = !1, f.alerts["resume-deployment"] = {
1254812562
type:"error",
1254912563
message:"An error occurred resuming the deployment.",
1255012564
details:a("getErrorDetails")(b)
1255112565
};
1255212566
}));
12553-
}, e.cancelDeployment = function() {
12554-
var a = e.inProgressDeployment;
12567+
}, f.cancelDeployment = function() {
12568+
var a = f.inProgressDeployment;
1255512569
if (a) {
12556-
var d = a.metadata.name, f = _.get(e, "deploymentConfig.status.latestVersion"), h = b.open({
12570+
var c = a.metadata.name, e = _.get(f, "deploymentConfig.status.latestVersion"), g = b.open({
1255712571
animation:!0,
1255812572
templateUrl:"views/modals/confirm.html",
1255912573
controller:"ConfirmModalController",
1256012574
resolve:{
1256112575
modalConfig:function() {
1256212576
return {
12563-
message:"Cancel deployment " + d + "?",
12564-
details:f ? "This will attempt to stop the in-progress deployment and rollback to the previous deployment, #" + f + ". It may take some time to complete." :"This will attempt to stop the in-progress deployment and may take some time to complete.",
12577+
message:"Cancel deployment " + c + "?",
12578+
details:e ? "This will attempt to stop the in-progress deployment and rollback to the previous deployment, #" + e + ". It may take some time to complete." :"This will attempt to stop the in-progress deployment and may take some time to complete.",
1256512579
okButtonText:"Yes, cancel",
1256612580
okButtonClass:"btn-danger",
1256712581
cancelButtonText:"No, don't cancel"
1256812582
};
1256912583
}
1257012584
}
1257112585
});
12572-
h.result.then(function() {
12573-
var a = _.get(e, [ "replicationControllersByName", d ]);
12574-
return a ? g(a) ? void c.cancelRunningDeployment(a, e.projectContext, e) :void (e.alerts["cancel-deployment"] = {
12586+
g.result.then(function() {
12587+
var a = _.get(f, [ "replicationControllersByName", c ]);
12588+
return a ? h(a) ? void d.cancelRunningDeployment(a, f.projectContext, f) :void (f.alerts["cancel-deployment"] = {
1257512589
type:"error",
12576-
message:"Deployment " + d + " is no longer in progress."
12577-
}) :void (e.alerts["cancel-deployment"] = {
12590+
message:"Deployment " + c + " is no longer in progress."
12591+
}) :void (f.alerts["cancel-deployment"] = {
1257812592
type:"error",
12579-
message:"Deployment " + d + " no longer exists."
12593+
message:"Deployment " + c + " no longer exists."
1258012594
});
1258112595
});
1258212596
}

dist/scripts/templates.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -10193,12 +10193,24 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1019310193
"</span>\n" +
1019410194
"</div>\n" +
1019510195
"<div ng-if=\"!imageChangeTriggers.length\">\n" +
10196+
"<div ng-if=\"pipeline = pipelinesForDC[deploymentConfig.metadata.name][0]\">\n" +
10197+
"<p>\n" +
10198+
"This deployment config is part of pipeline\n" +
10199+
"<a ng-href=\"{{pipeline | navigateResourceURL}}\">{{pipeline.metadata.name}}</a>.\n" +
10200+
"</p>\n" +
10201+
"<div ng-if=\"('buildconfigs/instantiate' | canI : 'create')\">\n" +
10202+
"\n" +
10203+
"<button class=\"btn btn-primary\" ng-click=\"startPipeline(pipeline)\" ng-disabled=\"incompletePipelinesByDC[deploymentConfig.metadata.name].length\">\n" +
10204+
"Start Pipeline\n" +
10205+
"</button>\n" +
10206+
"</div>\n" +
10207+
"</div>\n" +
10208+
"<div ng-if=\"!pipelinesForDC[deploymentConfig.metadata.name].length\">\n" +
1019610209
"<p>\n" +
1019710210
"No deployments have started for\n" +
1019810211
"<a ng-href=\"{{deploymentConfig | navigateResourceURL}}\">{{deploymentConfig.metadata.name}}</a>.\n" +
1019910212
"</p>\n" +
10200-
"<div ng-if=\"'deploymentconfigs' | canI : 'update'\" class=\"mar-top-md\">\n" +
10201-
"<button class=\"btn btn-primary\" ng-click=\"startDeployment(deploymentConfig)\">\n" +
10213+
"<button ng-if=\"'deploymentconfigs' | canI : 'update'\" class=\"btn btn-primary\" ng-click=\"startDeployment(deploymentConfig)\">\n" +
1020210214
"Start Deployment\n" +
1020310215
"</button>\n" +
1020410216
"</div>\n" +

0 commit comments

Comments
 (0)