Skip to content

Commit b7ed175

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): d8331ea4e4910a556771ae1e5416e389ab8a3fa5
1 parent 398ca1a commit b7ed175

File tree

1 file changed

+62
-43
lines changed

1 file changed

+62
-43
lines changed

pkg/assets/bindata.go

+62-43
Original file line numberDiff line numberDiff line change
@@ -5168,22 +5168,25 @@ target:"_blank"
51685168
_.each(h, p), _.each(i, p);
51695169
}), e) :e;
51705170
}, s = function(a, b) {
5171-
function f() {
5172-
0 === k && (j = r(a, g, h), i.resolve({
5173-
quotaAlerts:j
5174-
}));
5175-
}
5176-
var g, h, i = c.defer(), j = [], k = 2;
5177-
return d.list("resourcequotas", b, function(a) {
5178-
g = a.by("metadata.name"), e.log("quotas", g), k--, f();
5179-
}), d.list("appliedclusterresourcequotas", b, function(a) {
5180-
h = a.by("metadata.name"), e.log("cluster quotas", h), k--, f();
5181-
}), i.promise;
5171+
var f, g, h = [];
5172+
return h.push(d.list("resourcequotas", b).then(function(a) {
5173+
f = a.by("metadata.name"), e.log("quotas", f);
5174+
})), h.push(d.list("appliedclusterresourcequotas", b).then(function(a) {
5175+
g = a.by("metadata.name"), e.log("cluster quotas", g);
5176+
})), c.all(h).then(function() {
5177+
var b = r(a, f, g);
5178+
return {
5179+
quotaAlerts:b
5180+
};
5181+
});
51825182
}, t = function(a, b) {
51835183
var c = function(a) {
51845184
var b = a.status.total || a.status;
51855185
return _.some(b.hard, function(a, c) {
5186-
return "resourcequotas" !== c && (!f(a) && g(a) <= g(b.used[c]));
5186+
if ("resourcequotas" === c) return !1;
5187+
if (a = g(a), !a) return !1;
5188+
var d = g(_.get(b, [ "used", c ]));
5189+
return !!d && a <= d;
51875190
});
51885191
};
51895192
return _.some(a, c) || _.some(b, c);
@@ -6210,25 +6213,30 @@ q.cancel(a);
62106213
});
62116214
});
62126215
}));
6213-
} ]), angular.module("openshiftConsole").controller("QuotaController", [ "$routeParams", "$scope", "DataService", "ProjectsService", "Logger", function(a, b, c, d, e) {
6214-
b.projectName = a.project, b.limitRanges = {}, b.limitsByType = {}, b.labelSuggestions = {}, b.alerts = b.alerts || {}, b.quotaHelp = "Limits resource usage within this project.", b.emptyMessageLimitRanges = "Loading...", b.limitRangeHelp = "Defines minimum and maximum constraints for runtime resources such as memory and CPU.", b.renderOptions = b.renderOptions || {}, b.renderOptions.hideFilterWidget = !0;
6215-
var f = [];
6216-
d.get(a.project).then(_.spread(function(d, g) {
6217-
b.project = d, c.list("resourcequotas", g, function(a) {
6218-
b.quotas = a.by("metadata.name"), e.log("quotas", b.quotas);
6219-
}), c.list("appliedclusterresourcequotas", g, function(c) {
6220-
b.clusterQuotas = c.by("metadata.name"), b.namespaceUsageByClusterQuota = {}, _.each(b.clusterQuotas, function(c, d) {
6221-
if (c.status) {
6222-
var e = _.find(c.status.namespaces, {
6223-
namespace:a.project
6224-
});
6225-
b.namespaceUsageByClusterQuota[d] = e.status;
6226-
}
6227-
}), e.log("cluster quotas", b.clusterQuotas);
6228-
}), c.list("limitranges", g, function(a) {
6229-
b.limitRanges = a.by("metadata.name"), b.emptyMessageLimitRanges = "There are no limit ranges set on this project.", angular.forEach(b.limitRanges, function(a, c) {
6230-
b.limitsByType[c] = {}, angular.forEach(a.spec.limits, function(a) {
6231-
var d = b.limitsByType[c][a.type] = {};
6216+
} ]), angular.module("openshiftConsole").controller("QuotaController", [ "$filter", "$routeParams", "$scope", "DataService", "ProjectsService", "Logger", function(a, b, c, d, e, f) {
6217+
c.projectName = b.project, c.limitRanges = {}, c.limitsByType = {}, c.labelSuggestions = {}, c.alerts = c.alerts || {}, c.quotaHelp = "Limits resource usage within this project.", c.emptyMessageLimitRanges = "Loading...", c.limitRangeHelp = "Defines minimum and maximum constraints for runtime resources such as memory and CPU.", c.renderOptions = c.renderOptions || {}, c.renderOptions.hideFilterWidget = !0;
6218+
var g = [], h = a("usageValue");
6219+
c.isAtLimit = function(a, b) {
6220+
var c = a.status.total || a.status, d = h(_.get(c, [ "hard", b ]));
6221+
if (!d) return !1;
6222+
var e = h(_.get(c, [ "used", b ]));
6223+
return !!e && e >= d;
6224+
}, e.get(b.project).then(_.spread(function(a, e) {
6225+
c.project = a, d.list("resourcequotas", e, function(a) {
6226+
c.quotas = a.by("metadata.name"), f.log("quotas", c.quotas);
6227+
}), d.list("appliedclusterresourcequotas", e, function(a) {
6228+
c.clusterQuotas = a.by("metadata.name"), c.namespaceUsageByClusterQuota = {}, _.each(c.clusterQuotas, function(a, d) {
6229+
if (a.status) {
6230+
var e = _.find(a.status.namespaces, {
6231+
namespace:b.project
6232+
});
6233+
c.namespaceUsageByClusterQuota[d] = e.status;
6234+
}
6235+
}), f.log("cluster quotas", c.clusterQuotas);
6236+
}), d.list("limitranges", e, function(a) {
6237+
c.limitRanges = a.by("metadata.name"), c.emptyMessageLimitRanges = "There are no limit ranges set on this project.", angular.forEach(c.limitRanges, function(a, b) {
6238+
c.limitsByType[b] = {}, angular.forEach(a.spec.limits, function(a) {
6239+
var d = c.limitsByType[b][a.type] = {};
62326240
angular.forEach(a.max, function(a, b) {
62336241
d[b] = d[b] || {}, d[b].max = a;
62346242
}), angular.forEach(a.min, function(a, b) {
@@ -6241,9 +6249,9 @@ d[b] = d[b] || {}, d[b].defaultRequest = a;
62416249
d[b] = d[b] || {}, d[b].maxLimitRequestRatio = a;
62426250
});
62436251
});
6244-
}), e.log("limitRanges", b.limitRanges);
6245-
}), b.$on("$destroy", function() {
6246-
c.unwatchAll(f);
6252+
}), f.log("limitRanges", c.limitRanges);
6253+
}), c.$on("$destroy", function() {
6254+
d.unwatchAll(g);
62476255
});
62486256
}));
62496257
} ]), angular.module("openshiftConsole").controller("MonitoringController", [ "$routeParams", "$location", "$scope", "$filter", "BuildsService", "DataService", "ImageStreamResolver", "KeywordService", "LabelsService", "Logger", "MetricsService", "Navigate", "PodsService", "ProjectsService", "$rootScope", function(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) {
@@ -15137,7 +15145,9 @@ replicationcontrollers:"Replication Controllers",
1513715145
"requests.memory":"Memory (Request)",
1513815146
resourcequotas:"Resource Quotas",
1513915147
secrets:"Secrets",
15140-
services:"Services"
15148+
services:"Services",
15149+
"services.loadbalancers":"Service Load Balancers",
15150+
"services.nodeports":"Service Node Ports"
1514115151
}, d = {
1514215152
configmaps:"config maps",
1514315153
cpu:"CPU (request)",
@@ -15151,7 +15161,9 @@ persistentvolumeclaims:"persistent volume claims",
1515115161
replicationcontrollers:"replication controllers",
1515215162
"requests.cpu":"CPU (request)",
1515315163
"requests.memory":"memory (request)",
15154-
resourcequotas:"resource quotas"
15164+
resourcequotas:"resource quotas",
15165+
"services.loadbalancers":"service load balancers",
15166+
"services.nodeports":"service node ports"
1515515167
};
1515615168
return b ? c[a] || a :d[a] || a;
1515715169
};
@@ -27623,7 +27635,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2762327635
"<div class=\"table-responsive\">\n" +
2762427636
"<table class=\"table\">\n" +
2762527637
"<thead>\n" +
27626-
"<th>Resource type</th>\n" +
27638+
"<th>Resource Type</th>\n" +
2762727639
"<th>Used (this project)</th>\n" +
2762827640
"<th>Used (all projects)</th>\n" +
2762927641
"<th>Max</th>\n" +
@@ -27637,11 +27649,13 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2763727649
"</tr>\n" +
2763827650
"\n" +
2763927651
"<tr ng-repeat=\"(resourceType, specMax) in quota.spec.quota.hard\" ng-if=\"resourceType !== 'resourcequotas'\" ng-class=\"{\n" +
27640-
" warning: (quota.status.total.used[resourceType] | usageValue) >= (quota.status.total.hard[resourceType] | usageValue)\n" +
27652+
" warning: isAtLimit(quota, resourceType),\n" +
27653+
" disabled: (quota.status.total.hard[resourceType] || specMax) === '0'\n" +
2764127654
" }\">\n" +
2764227655
"<td>\n" +
2764327656
"{{resourceType | humanizeQuotaResource : true}}\n" +
27644-
"<span ng-if=\"(quota.status.total.used[resourceType] | usageValue) >= (quota.status.total.hard[resourceType] | usageValue)\" data-toggle=\"tooltip\" title=\"Quota limit reached\" class=\"pficon pficon-warning-triangle-o\" style=\"cursor: help; vertical-align: middle\"></span>\n" +
27657+
"<span ng-if=\"isAtLimit(quota, resourceType)\" data-toggle=\"tooltip\" title=\"Quota limit reached.\" class=\"pficon pficon-warning-triangle-o warnings-popover\"></span>\n" +
27658+
"<span ng-if=\"(quota.status.total.hard[resourceType] || specMax) === '0'\" data-toggle=\"tooltip\" title=\"You are not allowed to create resources of this type.\" class=\"pficon pficon-info warnings-popover\"></span>\n" +
2764527659
"</td>\n" +
2764627660
"<td>\n" +
2764727661
"<span ng-if=\"!namespaceUsageByClusterQuota[quota.metadata.name].used\">&mdash;</span>\n" +
@@ -27704,7 +27718,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2770427718
"<div class=\"table-responsive\">\n" +
2770527719
"<table class=\"table\">\n" +
2770627720
"<thead>\n" +
27707-
"<th>Resource type</th>\n" +
27721+
"<th>Resource Type</th>\n" +
2770827722
"<th>Used</th>\n" +
2770927723
"<th>Max</th>\n" +
2771027724
"</thead>\n" +
@@ -27717,11 +27731,13 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2771727731
"</tr>\n" +
2771827732
"\n" +
2771927733
"<tr ng-repeat=\"(resourceType, specMax) in quota.spec.hard\" ng-if=\"resourceType !== 'resourcequotas'\" ng-class=\"{\n" +
27720-
" warning: (quota.status.used[resourceType] | usageValue) >= (quota.status.hard[resourceType] | usageValue)\n" +
27734+
" warning: isAtLimit(quota, resourceType),\n" +
27735+
" disabled: (quota.status.hard[resourceType] || specMax) === '0'\n" +
2772127736
" }\">\n" +
2772227737
"<td>\n" +
2772327738
"{{resourceType | humanizeQuotaResource : true}}\n" +
27724-
"<span ng-if=\"(quota.status.used[resourceType] | usageValue) >= (quota.status.hard[resourceType] | usageValue)\" data-toggle=\"tooltip\" title=\"Quota limit reached\" class=\"pficon pficon-warning-triangle-o\" style=\"cursor: help; vertical-align: middle\"></span>\n" +
27739+
"<span ng-if=\"isAtLimit(quota, resourceType)\" data-toggle=\"tooltip\" title=\"Quota limit reached.\" class=\"pficon pficon-warning-triangle-o warnings-popover\"></span>\n" +
27740+
"<span ng-if=\"(quota.status.hard[resourceType] || specMax) === '0'\" data-toggle=\"tooltip\" title=\"You are not allowed to create resources of this type.\" class=\"pficon pficon-info warnings-popover\"></span>\n" +
2772527741
"</td>\n" +
2772627742
"<td>\n" +
2772727743
"<span ng-if=\"!quota.status.used\">&mdash;</span>\n" +
@@ -27748,7 +27764,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2774827764
"<div class=\"table-responsive\">\n" +
2774927765
"<table class=\"table\">\n" +
2775027766
"<thead>\n" +
27751-
"<th>Resource type</th>\n" +
27767+
"<th>Resource Type</th>\n" +
2775227768
"<th>\n" +
2775327769
"<span class=\"nowrap\">\n" +
2775427770
"Min\n" +
@@ -113372,6 +113388,7 @@ pre.clipped.scroll{max-height:150px;overflow:auto;width:100%}
113372113388
.environment-variables.table.table-bordered>tbody>tr>td:last-child .env-var-value a{font-family:"Open Sans",Helvetica,Arial,sans-serif}
113373113389
.pretty-json{font-family:Menlo,Monaco,Consolas,monospace;white-space:pre-wrap}
113374113390
.info-popover,.warnings-popover{cursor:help;vertical-align:middle;margin-left:2px}
113391+
.info-popover.pficon-info,.warnings-popover.pficon-info{color:#4d5258}
113375113392
copy-to-clipboard .input-group.limit-width{max-width:300px}
113376113393
.tech-preview-header{justify-content:space-between}
113377113394
@media (max-width:479px){.col-xxs-12{width:100%}
@@ -114331,6 +114348,8 @@ td[role=presentation].arrow:after{content:"\2193"}
114331114348
.key-value-table>tbody>tr>td.value .truncated-content{white-space:pre}
114332114349
.table-word-break-all td{word-break:break-all;word-break:break-word;overflow-wrap:break-word}
114333114350
.table-word-break-all td.word-break-normal{word-break:normal;overflow-wrap:normal}
114351+
.table>tbody>tr.disabled>td,.table>tbody>tr.disabled>th,.table>tbody>tr>td.disabled,.table>tbody>tr>th.disabled,.table>tfoot>tr.disabled>td,.table>tfoot>tr.disabled>th,.table>tfoot>tr>td.disabled,.table>tfoot>tr>th.disabled,.table>thead>tr.disabled>td,.table>thead>tr.disabled>th,.table>thead>tr>td.disabled,.table>thead>tr>th.disabled{background-color:#f5f5f5}
114352+
.table-hover>tbody>tr.disabled:hover>td,.table-hover>tbody>tr.disabled:hover>th,.table-hover>tbody>tr:hover>.disabled,.table-hover>tbody>tr>td.disabled:hover,.table-hover>tbody>tr>th.disabled:hover{background-color:#e8e8e8}
114334114353
.tile{background:#fff;padding:20px;margin-bottom:20px;word-wrap:break-word;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow-x:hidden}
114335114354
.tile h1,.tile h2,.tile h3{margin:10.5px 0px}
114336114355
.tile-click{cursor:pointer;position:relative}

0 commit comments

Comments
 (0)