@@ -5168,22 +5168,25 @@ target:"_blank"
5168
5168
_.each(h, p), _.each(i, p);
5169
5169
}), e) :e;
5170
5170
}, 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
+ });
5182
5182
}, t = function(a, b) {
5183
5183
var c = function(a) {
5184
5184
var b = a.status.total || a.status;
5185
5185
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;
5187
5190
});
5188
5191
};
5189
5192
return _.some(a, c) || _.some(b, c);
@@ -6210,25 +6213,30 @@ q.cancel(a);
6210
6213
});
6211
6214
});
6212
6215
}));
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] = {};
6232
6240
angular.forEach(a.max, function(a, b) {
6233
6241
d[b] = d[b] || {}, d[b].max = a;
6234
6242
}), angular.forEach(a.min, function(a, b) {
@@ -6241,9 +6249,9 @@ d[b] = d[b] || {}, d[b].defaultRequest = a;
6241
6249
d[b] = d[b] || {}, d[b].maxLimitRequestRatio = a;
6242
6250
});
6243
6251
});
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 );
6247
6255
});
6248
6256
}));
6249
6257
} ]), 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",
15137
15145
"requests.memory":"Memory (Request)",
15138
15146
resourcequotas:"Resource Quotas",
15139
15147
secrets:"Secrets",
15140
- services:"Services"
15148
+ services:"Services",
15149
+ "services.loadbalancers":"Service Load Balancers",
15150
+ "services.nodeports":"Service Node Ports"
15141
15151
}, d = {
15142
15152
configmaps:"config maps",
15143
15153
cpu:"CPU (request)",
@@ -15151,7 +15161,9 @@ persistentvolumeclaims:"persistent volume claims",
15151
15161
replicationcontrollers:"replication controllers",
15152
15162
"requests.cpu":"CPU (request)",
15153
15163
"requests.memory":"memory (request)",
15154
- resourcequotas:"resource quotas"
15164
+ resourcequotas:"resource quotas",
15165
+ "services.loadbalancers":"service load balancers",
15166
+ "services.nodeports":"service node ports"
15155
15167
};
15156
15168
return b ? c[a] || a :d[a] || a;
15157
15169
};
@@ -27623,7 +27635,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
27623
27635
"<div class=\"table-responsive\">\n" +
27624
27636
"<table class=\"table\">\n" +
27625
27637
"<thead>\n" +
27626
- "<th>Resource type </th>\n" +
27638
+ "<th>Resource Type </th>\n" +
27627
27639
"<th>Used (this project)</th>\n" +
27628
27640
"<th>Used (all projects)</th>\n" +
27629
27641
"<th>Max</th>\n" +
@@ -27637,11 +27649,13 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
27637
27649
"</tr>\n" +
27638
27650
"\n" +
27639
27651
"<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" +
27641
27654
" }\">\n" +
27642
27655
"<td>\n" +
27643
27656
"{{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" +
27645
27659
"</td>\n" +
27646
27660
"<td>\n" +
27647
27661
"<span ng-if=\"!namespaceUsageByClusterQuota[quota.metadata.name].used\">—</span>\n" +
@@ -27704,7 +27718,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
27704
27718
"<div class=\"table-responsive\">\n" +
27705
27719
"<table class=\"table\">\n" +
27706
27720
"<thead>\n" +
27707
- "<th>Resource type </th>\n" +
27721
+ "<th>Resource Type </th>\n" +
27708
27722
"<th>Used</th>\n" +
27709
27723
"<th>Max</th>\n" +
27710
27724
"</thead>\n" +
@@ -27717,11 +27731,13 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
27717
27731
"</tr>\n" +
27718
27732
"\n" +
27719
27733
"<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" +
27721
27736
" }\">\n" +
27722
27737
"<td>\n" +
27723
27738
"{{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" +
27725
27741
"</td>\n" +
27726
27742
"<td>\n" +
27727
27743
"<span ng-if=\"!quota.status.used\">—</span>\n" +
@@ -27748,7 +27764,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
27748
27764
"<div class=\"table-responsive\">\n" +
27749
27765
"<table class=\"table\">\n" +
27750
27766
"<thead>\n" +
27751
- "<th>Resource type </th>\n" +
27767
+ "<th>Resource Type </th>\n" +
27752
27768
"<th>\n" +
27753
27769
"<span class=\"nowrap\">\n" +
27754
27770
"Min\n" +
@@ -113372,6 +113388,7 @@ pre.clipped.scroll{max-height:150px;overflow:auto;width:100%}
113372
113388
.environment-variables.table.table-bordered>tbody>tr>td:last-child .env-var-value a{font-family:"Open Sans",Helvetica,Arial,sans-serif}
113373
113389
.pretty-json{font-family:Menlo,Monaco,Consolas,monospace;white-space:pre-wrap}
113374
113390
.info-popover,.warnings-popover{cursor:help;vertical-align:middle;margin-left:2px}
113391
+ .info-popover.pficon-info,.warnings-popover.pficon-info{color:#4d5258}
113375
113392
copy-to-clipboard .input-group.limit-width{max-width:300px}
113376
113393
.tech-preview-header{justify-content:space-between}
113377
113394
@media (max-width:479px){.col-xxs-12{width:100%}
@@ -114331,6 +114348,8 @@ td[role=presentation].arrow:after{content:"\2193"}
114331
114348
.key-value-table>tbody>tr>td.value .truncated-content{white-space:pre}
114332
114349
.table-word-break-all td{word-break:break-all;word-break:break-word;overflow-wrap:break-word}
114333
114350
.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}
114334
114353
.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}
114335
114354
.tile h1,.tile h2,.tile h3{margin:10.5px 0px}
114336
114355
.tile-click{cursor:pointer;position:relative}
0 commit comments