Skip to content

Commit cd4bfdc

Browse files
author
OpenShift Bot
authored
Merge pull request #887 from jwforres/quota-scope-messages
Merged by openshift-bot
2 parents 843d4ae + 3eb8f16 commit cd4bfdc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

app/scripts/filters/resources.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1237,10 +1237,10 @@ angular.module('openshiftConsole')
12371237
})
12381238
.filter('scopeDetails', function(sentenceCaseFilter) {
12391239
var scopeMessages = {
1240-
"Terminating": "Matches pods that have an active deadline.",
1241-
"NotTerminating": "Matches pods that do not have an active deadline.",
1242-
"BestEffort": "Matches pods that have best effort quality of service.",
1243-
"NotBestEffort": "Matches pods that do not have best effort quality of service."
1240+
"Terminating": "Affects pods that have an active deadline. These pods usually include builds, deployers, and jobs.",
1241+
"NotTerminating": "Affects pods that do not have an active deadline. These pods usually include your applications.",
1242+
"BestEffort": "Affects pods that do not have resource limits set. These pods have a best effort quality of service.",
1243+
"NotBestEffort": "Affects pods that have at least one resource limit set. These pods do not have a best effort quality of service."
12441244
};
12451245
return function(scope) {
12461246
return scopeMessages[scope] || sentenceCaseFilter(scope);

dist/scripts/scripts.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -13265,10 +13265,10 @@ return a.readinessProbe || a.livenessProbe;
1326513265
};
1326613266
}).filter("scopeDetails", [ "sentenceCaseFilter", function(a) {
1326713267
var b = {
13268-
Terminating:"Matches pods that have an active deadline.",
13269-
NotTerminating:"Matches pods that do not have an active deadline.",
13270-
BestEffort:"Matches pods that have best effort quality of service.",
13271-
NotBestEffort:"Matches pods that do not have best effort quality of service."
13268+
Terminating:"Affects pods that have an active deadline. These pods usually include builds, deployers, and jobs.",
13269+
NotTerminating:"Affects pods that do not have an active deadline. These pods usually include your applications.",
13270+
BestEffort:"Affects pods that do not have resource limits set. These pods have a best effort quality of service.",
13271+
NotBestEffort:"Affects pods that have at least one resource limit set. These pods do not have a best effort quality of service."
1327213272
};
1327313273
return function(c) {
1327413274
return b[c] || a(c);

0 commit comments

Comments
 (0)