@@ -11392,7 +11392,7 @@ pod:"="
11392
11392
},
11393
11393
link:function(b) {
11394
11394
var c, d = "", e = a(b.pod);
11395
- for (c = 0; c < e.length; c++) d && (d += "<br>"), d += e[c].message;
11395
+ for (c = 0; c < e.length; c++) d && (d += "<br>"), "error" === e[c].severity && (b.hasError = !0), d += e[c].message;
11396
11396
b.content = d;
11397
11397
},
11398
11398
templateUrl:"views/directives/_warnings-popover.html"
@@ -12706,7 +12706,7 @@ e.cacheScrollableNode(document.getElementById(a.fixedHeight ? a.logViewerID + "-
12706
12706
}, 0);
12707
12707
}
12708
12708
};
12709
- } ]), angular.module("openshiftConsole").directive("statusIcon", [ function() {
12709
+ } ]), angular.module("openshiftConsole").directive("statusIcon", function() {
12710
12710
return {
12711
12711
restrict:"E",
12712
12712
templateUrl:"views/directives/_status-icon.html",
@@ -12719,7 +12719,7 @@ link:function(a, b, c) {
12719
12719
a.spinning = !angular.isDefined(c.disableAnimation);
12720
12720
}
12721
12721
};
12722
- } ] ), angular.module("openshiftConsole").directive("ellipsisPulser", [ function() {
12722
+ }), angular.module("openshiftConsole").directive("ellipsisPulser", [ function() {
12723
12723
return {
12724
12724
restrict:"E",
12725
12725
scope:{
@@ -12730,7 +12730,7 @@ msg:"@"
12730
12730
},
12731
12731
templateUrl:"views/directives/_ellipsis-pulser.html"
12732
12732
};
12733
- } ]), angular.module("openshiftConsole").directive("podDonut", [ "$timeout", "hashSizeFilter", "isPullingImageFilter", "isTerminatingFilter", "isTroubledPodFilter ", "numContainersReadyFilter", "Logger", "ChartsService", function(a, b, c, d, e, f, g, h) {
12733
+ } ]), angular.module("openshiftConsole").directive("podDonut", [ "$timeout", "hashSizeFilter", "isPullingImageFilter", "isTerminatingFilter", "podWarningsFilter ", "numContainersReadyFilter", "Logger", "ChartsService", function(a, b, c, d, e, f, g, h) {
12734
12734
return {
12735
12735
restrict:"E",
12736
12736
scope:{
@@ -12757,7 +12757,11 @@ var b = f(a), c = a.spec.containers.length;
12757
12757
return b === c;
12758
12758
}
12759
12759
function l(a) {
12760
- return d(a) ? "Terminating" :e(a) ? "Warning" :c(a) ? "Pulling" :"Running" !== a.status.phase || k(a) ? _.get(a, "status.phase", "Unknown") :"Not Ready";
12760
+ if (d(a)) return "Terminating";
12761
+ var b = e(a);
12762
+ return _.some(b), {
12763
+ severity:"error"
12764
+ } ? "Failed" :b.length ? "Warning" :c(a) ? "Pulling" :"Running" !== a.status.phase || k(a) ? _.get(a, "status.phase", "Unknown") :"Not Ready";
12761
12765
}
12762
12766
function m() {
12763
12767
var b = {};
@@ -14440,21 +14444,25 @@ pod:f.metadata.name,
14440
14444
message:"The pod has been stuck in the pending state for more than five minutes."
14441
14445
}), "Running" === f.status.phase && f.status.containerStatuses && _.each(f.status.containerStatuses, function(a) {
14442
14446
return !!a.state && (c(a) && (e(f) ? g.push({
14447
+ severity:"error",
14443
14448
reason:"NonZeroExitTerminatingPod",
14444
14449
pod:f.metadata.name,
14445
14450
container:a.name,
14446
14451
message:"The container " + a.name + " did not stop cleanly when terminated (exit code " + a.state.terminated.exitCode + ")."
14447
14452
}) :g.push({
14453
+ severity:"warning",
14448
14454
reason:"NonZeroExit",
14449
14455
pod:f.metadata.name,
14450
14456
container:a.name,
14451
14457
message:"The container " + a.name + " failed (exit code " + a.state.terminated.exitCode + ")."
14452
14458
})), b(a) && g.push({
14459
+ severity:"error",
14453
14460
reason:"Looping",
14454
14461
pod:f.metadata.name,
14455
14462
container:a.name,
14456
14463
message:"The container " + a.name + " is crashing frequently. It must wait before it will be restarted again."
14457
14464
}), void (d(a) && g.push({
14465
+ severity:"warning",
14458
14466
reason:"Unprepared",
14459
14467
pod:f.metadata.name,
14460
14468
container:a.name,
@@ -21098,7 +21106,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
21098
21106
21099
21107
$templateCache.put('views/directives/_warnings-popover.html',
21100
21108
"<span ng-if=\"content\">\n" +
21101
- "<span dynamic-content=\"{{content | middleEllipses:350:'...<br>...'}}\" data-toggle=\"popover\" data-trigger=\"hover\" data-html=\"true\" class=\"pficon pficon-warning-triangle-o warnings-popover \" aria-hidden=\"true\">\n" +
21109
+ "<span dynamic-content=\"{{content | middleEllipses:350:'...<br>...'}}\" data-toggle=\"popover\" data-trigger=\"hover\" data-html=\"true\" class=\"pficon warnings-popover\" ng-class=\"{' pficon-warning-triangle-o': !hasError, 'pficon-error-circle-o': hasError} \" aria-hidden=\"true\">\n" +
21102
21110
"</span>\n" +
21103
21111
"<span class=\"sr-only\">{{content}}</span>\n" +
21104
21112
"</span>"
@@ -23362,9 +23370,6 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
23362
23370
"<tr>\n" +
23363
23371
"<td data-title=\"Name\">\n" +
23364
23372
"<a href=\"{{pod | navigateResourceURL}}\">{{pod.metadata.name}}</a>\n" +
23365
- "<span ng-if=\"pod | isTroubledPod\">\n" +
23366
- "<pod-warnings pod=\"pod\"></pod-warnings>\n" +
23367
- "</span>\n" +
23368
23373
"<span ng-if=\"pod | isDebugPod\">\n" +
23369
23374
"<i class=\"fa fa-bug info-popover\" aria-hidden=\"true\" data-toggle=\"popover\" data-trigger=\"hover\" dynamic-content=\"Debugging pod {{pod | debugPodSourceName}}\"></i>\n" +
23370
23375
"<span class=\"sr-only\">Debugging pod {{pod | debugPodSourceName}}</span>\n" +
@@ -25216,9 +25221,6 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
25216
25221
"<div class=\"list-view-pf-description\">\n" +
25217
25222
"<div class=\"list-group-item-heading\">\n" +
25218
25223
"<a ng-href=\"{{pod | navigateResourceURL}}\"><span ng-bind-html=\"pod.metadata.name | highlightKeywords : filterKeywords\"></span></a>\n" +
25219
- "<span ng-if=\"pod | isTroubledPod\">\n" +
25220
- "<pod-warnings pod=\"pod\"></pod-warnings>\n" +
25221
- "</span>\n" +
25222
25224
"<small>created <span am-time-ago=\"pod.metadata.creationTimestamp\"></span></small>\n" +
25223
25225
"</div>\n" +
25224
25226
"<div class=\"list-group-item-text\">\n" +
0 commit comments