Skip to content

Commit 46942ad

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): a230883459f8e19525d96f1105e11dc222c17a5f
1 parent 1c16529 commit 46942ad

File tree

1 file changed

+140
-51
lines changed

1 file changed

+140
-51
lines changed

pkg/assets/bindata.go

+140-51
Original file line numberDiff line numberDiff line change
@@ -1748,52 +1748,95 @@ return b.weight / c * 100 + "%";
17481748
}
17491749

17501750
function BindService(a, b, c) {
1751-
var d = this;
1752-
d.steps = [ {
1751+
var d, e, f, g, h, i = this, j = a("statusCondition"), k = function() {
1752+
var a, b;
1753+
_.each(i.serviceInstances, function(c) {
1754+
var d = "True" === _.get(j(c, "Ready"), "status");
1755+
d && (!a || c.metadata.creationTimestamp > a.metadata.creationTimestamp) && (a = c), d || b && !(c.metadata.creationTimestamp > b.metadata.creationTimestamp) || (b = c);
1756+
}), i.serviceToBind = _.get(a, "metadata.name") || _.get(b, "metadata.name");
1757+
}, l = function() {
1758+
if (i.serviceClasses && i.serviceInstances) {
1759+
var a = _.toArray(i.serviceInstances);
1760+
a.sort(function(a, b) {
1761+
var c = _.get(i.serviceClasses, [ a.spec.serviceClassName, "osbMetadata", "displayName" ]) || a.spec.serviceClassName, d = _.get(i.serviceClasses, [ a.spec.serviceClassName, "osbMetadata", "displayName" ]) || b.spec.serviceClassName;
1762+
return c === d && (c = _.get(a, "metadata.name", ""), d = _.get(b, "metadata.name", "")), c.localeCompare(d);
1763+
}), i.orderedServiceInstances = a;
1764+
}
1765+
}, m = function() {
1766+
if (d && e && f && g && h) {
1767+
var a = d.concat(e).concat(f).concat(g).concat(h);
1768+
i.applications = _.sortByAll(a, [ "metadata.name", "kind" ]);
1769+
}
1770+
};
1771+
i.$onInit = function() {
1772+
i.steps = [], "Instance" === i.target.kind ? i.steps.push({
1773+
id:"applications",
1774+
label:"Applications",
1775+
view:"views/directives/bind-service/select-application.html"
1776+
}) :i.steps.push({
17531777
id:"services",
17541778
label:"Services",
17551779
view:"views/directives/bind-service/select-service.html"
1756-
}, {
1780+
}), i.steps.push({
17571781
label:"Results",
17581782
id:"results",
17591783
view:"views/directives/bind-service/results.html"
1760-
} ], d.$onInit = function() {
1761-
d.gotoStep(d.steps[0]);
1784+
});
1785+
var c = {
1786+
namespace:_.get(i.target, "metadata.namespace")
17621787
};
1763-
var e = a("statusCondition");
1764-
d.$onChanges = function(a) {
1765-
if (a.serviceInstances && !d.serviceToBind) {
1766-
var b, c;
1767-
_.each(d.serviceInstances, function(a) {
1768-
var d = "True" === _.get(e(a, "Ready"), "status");
1769-
d && (!b || a.metadata.creationTimestamp > b.metadata.creationTimestamp) && (b = a), d || c && !(a.metadata.creationTimestamp > c.metadata.creationTimestamp) || (c = a);
1770-
}), d.serviceToBind = _.get(b, "metadata.name") || _.get(c, "metadata.name");
1771-
}
1772-
if ((a.serviceInstances || a.serviceClasses) && d.serviceClasses && d.serviceInstances) {
1773-
var f = _.toArray(d.serviceInstances);
1774-
f.sort(function(a, b) {
1775-
var c = _.get(d.serviceClasses, [ a.spec.serviceClassName, "osbMetadata", "displayName" ]) || a.spec.serviceClassName, e = _.get(d.serviceClasses, [ a.spec.serviceClassName, "osbMetadata", "displayName" ]) || b.spec.serviceClassName;
1776-
return c === e && (c = _.get(a, "metadata.name", ""), e = _.get(b, "metadata.name", "")), c.localeCompare(e);
1777-
}), d.orderedServiceInstances = f;
1778-
}
1788+
b.list({
1789+
group:"servicecatalog.k8s.io",
1790+
resource:"serviceclasses"
1791+
}, {}).then(function(a) {
1792+
i.serviceClasses = a.by("metadata.name"), l();
1793+
}), "Instance" === i.target.kind ? (i.shouldBindToApp = "true", i.serviceToBind = i.target.metadata.name, b.list("deploymentconfigs", c).then(function(a) {
1794+
d = _.toArray(a.by("metadata.name")), m();
1795+
}), b.list("replicationcontrollers", c).then(function(b) {
1796+
f = _.reject(b.by("metadata.name"), a("hasDeploymentConfig")), m();
1797+
}), b.list({
1798+
group:"extensions",
1799+
resource:"deployments"
1800+
}, c).then(function(a) {
1801+
e = _.toArray(a.by("metadata.name")), m();
1802+
}), b.list({
1803+
group:"extensions",
1804+
resource:"replicasets"
1805+
}, c).then(function(b) {
1806+
g = _.reject(b.by("metadata.name"), a("hasDeployment")), m();
1807+
}), b.list({
1808+
group:"apps",
1809+
resource:"statefulsets"
1810+
}, c).then(function(a) {
1811+
h = _.toArray(a.by("metadata.name")), m();
1812+
})) :b.list({
1813+
group:"servicecatalog.k8s.io",
1814+
resource:"instances"
1815+
}, c).then(function(a) {
1816+
i.serviceInstances = a.by("metadata.name"), i.serviceToBind || k(), l();
1817+
}), i.gotoStep(i.steps[0]);
17791818
};
1780-
var f = function(a) {
1781-
var b = _.find(d.steps, {
1819+
var n = a("humanizeKind");
1820+
i.groupByKind = function(a) {
1821+
return n(a.kind);
1822+
};
1823+
var o = function(a) {
1824+
var b = _.find(i.steps, {
17821825
id:a
17831826
});
1784-
d.gotoStep(b);
1827+
i.gotoStep(b);
17851828
};
1786-
d.gotoStep = function(a) {
1787-
_.each(d.steps, function(a) {
1829+
i.gotoStep = function(a) {
1830+
_.each(i.steps, function(a) {
17881831
a.selected = !1;
1789-
}), d.currentStep && (d.currentStep.visited = !0), d.currentStep = a, d.currentStep.selected = !0;
1790-
}, d.stepClick = function(a) {
1791-
d.wizardComplete || a.visited && d.gotoStep(a);
1832+
}), i.currentStep && (i.currentStep.visited = !0), i.currentStep = a, i.currentStep.selected = !0;
1833+
}, i.stepClick = function(a) {
1834+
i.wizardComplete || a.visited && i.gotoStep(a);
17921835
};
1793-
var g = a("generateName"), h = function() {
1794-
var a = _.get(d.serviceInstances[d.serviceToBind], "metadata.name"), b = _.trunc(a, c.maxlength - 6);
1795-
d.generatedSecretName = g(b + "-");
1796-
var e = {
1836+
var p = a("generateName"), q = function() {
1837+
var a = i.serviceToBind, b = _.trunc(a, c.maxlength - 6);
1838+
i.generatedSecretName = p(b + "-");
1839+
var d = {
17971840
kind:"Binding",
17981841
apiVersion:"servicecatalog.k8s.io/v1alpha1",
17991842
metadata:{
@@ -1803,30 +1846,30 @@ spec:{
18031846
instanceRef:{
18041847
name:a
18051848
},
1806-
secretName:d.generatedSecretName
1849+
secretName:i.generatedSecretName
18071850
}
18081851
};
1809-
return e;
1852+
return d;
18101853
};
1811-
d.bindService = function() {
1812-
var a = {
1813-
namespace:_.get(d.serviceInstances[d.serviceToBind], "metadata.namespace")
1854+
i.bindService = function() {
1855+
var a = "Instance" === i.target.kind ? i.target :i.serviceInstances[i.serviceToBind], c = {
1856+
namespace:_.get(a, "metadata.namespace")
18141857
};
18151858
b.create({
18161859
group:"servicecatalog.k8s.io",
18171860
resource:"bindings"
1818-
}, null, h(), a).then(function(c) {
1819-
d.binding = c, b.watchObject({
1861+
}, null, q(), c).then(function(a) {
1862+
i.binding = a, b.watchObject({
18201863
group:"servicecatalog.k8s.io",
18211864
resource:"bindings"
1822-
}, _.get(d.binding, "metadata.name"), a, function(a) {
1823-
d.binding = a;
1824-
}), d.wizardComplete = !0, d.error = null, f("results");
1865+
}, _.get(i.binding, "metadata.name"), c, function(a) {
1866+
i.binding = a;
1867+
}), i.wizardComplete = !0, i.error = null, o("results");
18251868
}, function(a) {
1826-
d.error = a;
1869+
i.error = a;
18271870
});
1828-
}, d.closeWizard = function() {
1829-
_.isFunction(d.onClose) && d.onClose();
1871+
}, i.closeWizard = function() {
1872+
_.isFunction(i.onClose) && i.onClose();
18301873
};
18311874
}
18321875

@@ -2158,6 +2201,10 @@ e.$onChanges = function() {
21582201
e.notifications = c.getNotifications(e.apiObject, e.state), e.displayName = g(), e.description = h(), e.instanceBindings = i();
21592202
}, e.getSecretForBinding = function(a) {
21602203
return a && _.get(e, [ "state", "secrets", a.spec.secretName ]);
2204+
}, e.closeOverlayPanel = function() {
2205+
_.set(e, "overlay.panelVisible", !1);
2206+
}, e.showOverlayPanel = function(a, b) {
2207+
_.set(e, "overlay.panelVisible", !0), _.set(e, "overlay.panelName", a), _.set(e, "overlay.state", b);
21612208
}, e.deprovision = function() {
21622209
var a = {
21632210
alerts:{
@@ -14493,8 +14540,6 @@ controller:[ "$filter", "DataService", "DNS1123_SUBDOMAIN_VALIDATION", BindServi
1449314540
controllerAs:"ctrl",
1449414541
bindings:{
1449514542
target:"<",
14496-
serviceInstances:"<",
14497-
serviceClasses:"<",
1449814543
onClose:"<"
1449914544
},
1450014545
templateUrl:"views/directives/bind-service.html"
@@ -22713,7 +22758,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2271322758
"<button type=\"button\" class=\"btn btn-default wizard-pf-cancel wizard-pf-dismiss\" ng-class=\"{'btn-cancel': ctrl.steps.length > 2}\" ng-disabled=\"ctrl.currentStep.id === 'results'\" ng-click=\"ctrl.closeWizard()\">\n" +
2271422759
"Cancel\n" +
2271522760
"</button>\n" +
22716-
"<button type=\"button\" class=\"btn btn-primary wizard-pf-next\" ng-if=\"ctrl.currentStep.id !== 'results'\" ng-click=\"ctrl.bindService()\">\n" +
22761+
"<button type=\"button\" class=\"btn btn-primary wizard-pf-next\" ng-if=\"ctrl.currentStep.id !== 'results'\" ng-disabled=\"ctrl.serviceSelection.$invalid\" ng-click=\"ctrl.bindService()\">\n" +
2271722762
"Bind\n" +
2271822763
"</button>\n" +
2271922764
"<button type=\"button\" class=\"btn btn-primary wizard-pf-close wizard-pf-dismiss\" ng-if=\"ctrl.currentStep.id === 'results'\" ng-click=\"ctrl.closeWizard()\">\n" +
@@ -22768,6 +22813,42 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2276822813
);
2276922814

2277022815

22816+
$templateCache.put('views/directives/bind-service/select-application.html',
22817+
"<h3 class=\"mar-top-none\">Select an application to bind to service <strong>{{ctrl.serviceClasses[ctrl.target.spec.serviceClassName].osbMetadata.displayName || ctrl.target.spec.serviceClassName}}</strong></h3>\n" +
22818+
"Binding to a provisioned service will create a secret containing the information necessary for your application to use the service.\n" +
22819+
"<form name=\"ctrl.serviceSelection\" class=\"mar-bottom-lg\">\n" +
22820+
"<fieldset ng-disabled=\"ctrl.isDisabled\">\n" +
22821+
"<div class=\"radio\">\n" +
22822+
"<label>\n" +
22823+
"<input type=\"radio\" ng-model=\"ctrl.shouldBindToApp\" value=\"true\">\n" +
22824+
"Bind to an application\n" +
22825+
"</label>\n" +
22826+
"<div class=\"pad-left-xl mar-bottom-md mar-top-sm\">\n" +
22827+
"<ui-select ng-model=\"ctrl.appToBind\" ng-disabled=\"ctrl.shouldBindToApp !== 'true'\" ng-required=\"ctrl.shouldBindToApp === 'true'\">\n" +
22828+
"<ui-select-match placeholder=\"Select an application\">\n" +
22829+
"<span>\n" +
22830+
"{{$select.selected.metadata.name}}\n" +
22831+
"<small class=\"text-muted\">&ndash; {{$select.selected.kind | humanizeKind : true}}</small>\n" +
22832+
"</span>\n" +
22833+
"</ui-select-match>\n" +
22834+
"<ui-select-choices repeat=\"application in (ctrl.applications) | filter : { metadata: { name: $select.search } } track by (application | uid)\" group-by=\"ctrl.groupByKind\">\n" +
22835+
"<span ng-bind-html=\"application.metadata.name | highlight : $select.search\"></span>\n" +
22836+
"</ui-select-choices>\n" +
22837+
"</ui-select>\n" +
22838+
"</div>\n" +
22839+
"<label>\n" +
22840+
"<input type=\"radio\" ng-model=\"ctrl.shouldBindToApp\" value=\"false\">\n" +
22841+
"Create a secret in my project\n" +
22842+
"<div class=\"help-block\">\n" +
22843+
"You can reference this secret later from any application either as environment variables or configuration files mounted as volumes.\n" +
22844+
"</div>\n" +
22845+
"</label>\n" +
22846+
"</div>\n" +
22847+
"</fieldset>\n" +
22848+
"</form>"
22849+
);
22850+
22851+
2277122852
$templateCache.put('views/directives/bind-service/select-service.html',
2277222853
" <h3 class=\"mar-top-none\">Select a service to bind to <strong>{{ctrl.target.metadata.name}}</strong></h3>\n" +
2277322854
"Binding to a provisioned service will create a secret containing the information necessary for your application to use the service.\n" +
@@ -29088,7 +29169,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2908829169
"</div>\n" +
2908929170
"<overlay-panel single-column=\"true\" show-panel=\"row.overlay.panelVisible\" show-close=\"true\" handle-close=\"row.closeOverlayPanel\">\n" +
2909029171
"<div ng-if=\"row.overlay.panelName === 'bindService'\">\n" +
29091-
"<bind-service target=\"row.overlay.state.target\" service-instances=\"row.state.serviceInstances\" service-classes=\"row.state.serviceClasses\" on-close=\"row.closeOverlayPanel\"></bind-service>\n" +
29172+
"<bind-service target=\"row.overlay.state.target\" on-close=\"row.closeOverlayPanel\"></bind-service>\n" +
2909229173
"</div>\n" +
2909329174
"</overlay-panel>"
2909429175
);
@@ -29394,6 +29475,9 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2939429475
"<a href=\"\" uib-dropdown-toggle class=\"actions-dropdown-kebab\"><i class=\"fa fa-ellipsis-v\"></i><span class=\"sr-only\">Actions</span></a>\n" +
2939529476
"<ul class=\"dropdown-menu dropdown-menu-right\" uib-dropdown-menu role=\"menu\">\n" +
2939629477
"<li role=\"menuitem\">\n" +
29478+
"<a href=\"\" ng-click=\"row.showOverlayPanel('bindService', {target: row.apiObject})\">Create Binding</a>\n" +
29479+
"</li>\n" +
29480+
"<li role=\"menuitem\">\n" +
2939729481
"<a href=\"\" ng-click=\"row.deprovision()\" role=\"button\">Deprovision</a>\n" +
2939829482
"</li>\n" +
2939929483
"</ul>\n" +
@@ -29426,7 +29510,12 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2942629510
"\n" +
2942729511
"</div>\n" +
2942829512
"</div>\n" +
29429-
"</div>"
29513+
"</div>\n" +
29514+
"<overlay-panel single-column=\"true\" show-panel=\"row.overlay.panelVisible\" show-close=\"true\" handle-close=\"row.closeOverlayPanel\">\n" +
29515+
"<div ng-if=\"row.overlay.panelName === 'bindService'\">\n" +
29516+
"<bind-service target=\"row.overlay.state.target\" on-close=\"row.closeOverlayPanel\"></bind-service>\n" +
29517+
"</div>\n" +
29518+
"</overlay-panel>"
2943029519
);
2943129520

2943229521

0 commit comments

Comments
 (0)