Skip to content

Commit fca006a

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): 6ea5608efac317565723c6ecf28030b3f0fec8b9
1 parent b7eca0d commit fca006a

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

pkg/assets/bindata.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -11392,7 +11392,7 @@ pod:"="
1139211392
},
1139311393
link:function(b) {
1139411394
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;
1139611396
b.content = d;
1139711397
},
1139811398
templateUrl:"views/directives/_warnings-popover.html"
@@ -12706,7 +12706,7 @@ e.cacheScrollableNode(document.getElementById(a.fixedHeight ? a.logViewerID + "-
1270612706
}, 0);
1270712707
}
1270812708
};
12709-
} ]), angular.module("openshiftConsole").directive("statusIcon", [ function() {
12709+
} ]), angular.module("openshiftConsole").directive("statusIcon", function() {
1271012710
return {
1271112711
restrict:"E",
1271212712
templateUrl:"views/directives/_status-icon.html",
@@ -12719,7 +12719,7 @@ link:function(a, b, c) {
1271912719
a.spinning = !angular.isDefined(c.disableAnimation);
1272012720
}
1272112721
};
12722-
} ]), angular.module("openshiftConsole").directive("ellipsisPulser", [ function() {
12722+
}), angular.module("openshiftConsole").directive("ellipsisPulser", [ function() {
1272312723
return {
1272412724
restrict:"E",
1272512725
scope:{
@@ -12730,7 +12730,7 @@ msg:"@"
1273012730
},
1273112731
templateUrl:"views/directives/_ellipsis-pulser.html"
1273212732
};
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) {
1273412734
return {
1273512735
restrict:"E",
1273612736
scope:{
@@ -12757,7 +12757,11 @@ var b = f(a), c = a.spec.containers.length;
1275712757
return b === c;
1275812758
}
1275912759
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";
1276112765
}
1276212766
function m() {
1276312767
var b = {};
@@ -14440,21 +14444,25 @@ pod:f.metadata.name,
1444014444
message:"The pod has been stuck in the pending state for more than five minutes."
1444114445
}), "Running" === f.status.phase && f.status.containerStatuses && _.each(f.status.containerStatuses, function(a) {
1444214446
return !!a.state && (c(a) && (e(f) ? g.push({
14447+
severity:"error",
1444314448
reason:"NonZeroExitTerminatingPod",
1444414449
pod:f.metadata.name,
1444514450
container:a.name,
1444614451
message:"The container " + a.name + " did not stop cleanly when terminated (exit code " + a.state.terminated.exitCode + ")."
1444714452
}) :g.push({
14453+
severity:"warning",
1444814454
reason:"NonZeroExit",
1444914455
pod:f.metadata.name,
1445014456
container:a.name,
1445114457
message:"The container " + a.name + " failed (exit code " + a.state.terminated.exitCode + ")."
1445214458
})), b(a) && g.push({
14459+
severity:"error",
1445314460
reason:"Looping",
1445414461
pod:f.metadata.name,
1445514462
container:a.name,
1445614463
message:"The container " + a.name + " is crashing frequently. It must wait before it will be restarted again."
1445714464
}), void (d(a) && g.push({
14465+
severity:"warning",
1445814466
reason:"Unprepared",
1445914467
pod:f.metadata.name,
1446014468
container:a.name,
@@ -21098,7 +21106,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2109821106

2109921107
$templateCache.put('views/directives/_warnings-popover.html',
2110021108
"<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" +
2110221110
"</span>\n" +
2110321111
"<span class=\"sr-only\">{{content}}</span>\n" +
2110421112
"</span>"
@@ -23362,9 +23370,6 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2336223370
"<tr>\n" +
2336323371
"<td data-title=\"Name\">\n" +
2336423372
"<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" +
2336823373
"<span ng-if=\"pod | isDebugPod\">\n" +
2336923374
"<i class=\"fa fa-bug info-popover\" aria-hidden=\"true\" data-toggle=\"popover\" data-trigger=\"hover\" dynamic-content=\"Debugging pod {{pod | debugPodSourceName}}\"></i>\n" +
2337023375
"<span class=\"sr-only\">Debugging pod {{pod | debugPodSourceName}}</span>\n" +
@@ -25216,9 +25221,6 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
2521625221
"<div class=\"list-view-pf-description\">\n" +
2521725222
"<div class=\"list-group-item-heading\">\n" +
2521825223
"<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" +
2522225224
"<small>created <span am-time-ago=\"pod.metadata.creationTimestamp\"></span></small>\n" +
2522325225
"</div>\n" +
2522425226
"<div class=\"list-group-item-text\">\n" +

0 commit comments

Comments
 (0)