@@ -1748,52 +1748,95 @@ return b.weight / c * 100 + "%";
1748
1748
}
1749
1749
1750
1750
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({
1753
1777
id:"services",
1754
1778
label:"Services",
1755
1779
view:"views/directives/bind-service/select-service.html"
1756
- }, {
1780
+ }), i.steps.push( {
1757
1781
label:"Results",
1758
1782
id:"results",
1759
1783
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")
1762
1787
};
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]);
1779
1818
};
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, {
1782
1825
id:a
1783
1826
});
1784
- d .gotoStep(b);
1827
+ i .gotoStep(b);
1785
1828
};
1786
- d .gotoStep = function(a) {
1787
- _.each(d .steps, function(a) {
1829
+ i .gotoStep = function(a) {
1830
+ _.each(i .steps, function(a) {
1788
1831
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);
1792
1835
};
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 = {
1797
1840
kind:"Binding",
1798
1841
apiVersion:"servicecatalog.k8s.io/v1alpha1",
1799
1842
metadata:{
@@ -1803,30 +1846,30 @@ spec:{
1803
1846
instanceRef:{
1804
1847
name:a
1805
1848
},
1806
- secretName:d .generatedSecretName
1849
+ secretName:i .generatedSecretName
1807
1850
}
1808
1851
};
1809
- return e ;
1852
+ return d ;
1810
1853
};
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")
1814
1857
};
1815
1858
b.create({
1816
1859
group:"servicecatalog.k8s.io",
1817
1860
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({
1820
1863
group:"servicecatalog.k8s.io",
1821
1864
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");
1825
1868
}, function(a) {
1826
- d .error = a;
1869
+ i .error = a;
1827
1870
});
1828
- }, d .closeWizard = function() {
1829
- _.isFunction(d .onClose) && d .onClose();
1871
+ }, i .closeWizard = function() {
1872
+ _.isFunction(i .onClose) && i .onClose();
1830
1873
};
1831
1874
}
1832
1875
@@ -2158,6 +2201,10 @@ e.$onChanges = function() {
2158
2201
e.notifications = c.getNotifications(e.apiObject, e.state), e.displayName = g(), e.description = h(), e.instanceBindings = i();
2159
2202
}, e.getSecretForBinding = function(a) {
2160
2203
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);
2161
2208
}, e.deprovision = function() {
2162
2209
var a = {
2163
2210
alerts:{
@@ -14493,8 +14540,6 @@ controller:[ "$filter", "DataService", "DNS1123_SUBDOMAIN_VALIDATION", BindServi
14493
14540
controllerAs:"ctrl",
14494
14541
bindings:{
14495
14542
target:"<",
14496
- serviceInstances:"<",
14497
- serviceClasses:"<",
14498
14543
onClose:"<"
14499
14544
},
14500
14545
templateUrl:"views/directives/bind-service.html"
@@ -22713,7 +22758,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
22713
22758
"<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" +
22714
22759
"Cancel\n" +
22715
22760
"</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" +
22717
22762
"Bind\n" +
22718
22763
"</button>\n" +
22719
22764
"<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', []
22768
22813
);
22769
22814
22770
22815
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\">– {{$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
+
22771
22852
$templateCache.put('views/directives/bind-service/select-service.html',
22772
22853
" <h3 class=\"mar-top-none\">Select a service to bind to <strong>{{ctrl.target.metadata.name}}</strong></h3>\n" +
22773
22854
"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', []
29088
29169
"</div>\n" +
29089
29170
"<overlay-panel single-column=\"true\" show-panel=\"row.overlay.panelVisible\" show-close=\"true\" handle-close=\"row.closeOverlayPanel\">\n" +
29090
29171
"<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" +
29092
29173
"</div>\n" +
29093
29174
"</overlay-panel>"
29094
29175
);
@@ -29394,6 +29475,9 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
29394
29475
"<a href=\"\" uib-dropdown-toggle class=\"actions-dropdown-kebab\"><i class=\"fa fa-ellipsis-v\"></i><span class=\"sr-only\">Actions</span></a>\n" +
29395
29476
"<ul class=\"dropdown-menu dropdown-menu-right\" uib-dropdown-menu role=\"menu\">\n" +
29396
29477
"<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" +
29397
29481
"<a href=\"\" ng-click=\"row.deprovision()\" role=\"button\">Deprovision</a>\n" +
29398
29482
"</li>\n" +
29399
29483
"</ul>\n" +
@@ -29426,7 +29510,12 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
29426
29510
"\n" +
29427
29511
"</div>\n" +
29428
29512
"</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>"
29430
29519
);
29431
29520
29432
29521
0 commit comments