diff --git a/app/scripts/directives/editRequestLimit.js b/app/scripts/directives/editRequestLimit.js index 7490bb5b67..6f95ead7ff 100644 --- a/app/scripts/directives/editRequestLimit.js +++ b/app/scripts/directives/editRequestLimit.js @@ -68,21 +68,34 @@ angular.module('openshiftConsole') case 'memory': scope.input.unit = 'Mi'; scope.units = [{ - value: "M", - label: "MB" - }, { - value: "G", - label: "GB" - }, { value: "Mi", label: "MiB" }, { value: "Gi", label: "GiB" + }, { + value: "M", + label: "MB" + }, { + value: "G", + label: "GB" }]; break; } + scope.groupUnits = function(unit) { + switch (unit.value) { + case 'Mi': + case 'Gi': + return 'Binary Units'; + case 'M': + case 'G': + return 'Decimal Units'; + } + + return ''; + }; + var validateLimitRange = function() { // Use usageValue filter to normalize units for comparison. var value = scope.input.amount && usageValue(scope.input.amount + scope.input.unit), diff --git a/app/scripts/directives/oscPersistentVolumeClaim.js b/app/scripts/directives/oscPersistentVolumeClaim.js index d433b4066f..3e3fd01b79 100644 --- a/app/scripts/directives/oscPersistentVolumeClaim.js +++ b/app/scripts/directives/oscPersistentVolumeClaim.js @@ -1,7 +1,9 @@ "use strict"; angular.module("openshiftConsole") - .directive("oscPersistentVolumeClaim", function(DataService){ + .directive("oscPersistentVolumeClaim", + function(DataService, + ModalsService) { return { restrict: 'E', scope: { @@ -10,7 +12,7 @@ angular.module("openshiftConsole") templateUrl: 'views/directives/osc-persistent-volume-claim.html', link: function(scope) { scope.storageClasses = []; - scope.claim.unit = 'Mi'; + scope.claim.unit = 'Gi'; scope.units = [{ value: "Mi", label: "MiB" @@ -21,10 +23,36 @@ angular.module("openshiftConsole") value: "Ti", label: "TiB" }, { - value: "Pi", - label: "PiB" + value: "M", + label: "MB" + }, { + value: "G", + label: "GB" + }, { + value: "T", + label: "TB" }]; scope.claim.selectedLabels = []; + + scope.groupUnits = function(unit) { + switch (unit.value) { + case 'Mi': + case 'Gi': + case 'Ti': + return 'Binary Units'; + case 'M': + case 'G': + case 'T': + return 'Decimal Units'; + } + + return ''; + }; + + scope.showComputeUnitsHelp = function() { + ModalsService.showComputeUnitsHelp(); + }; + DataService.list({group: 'storage.k8s.io', resource: 'storageclasses'}, {}, function(storageClasses) { scope.storageClasses = storageClasses.by('metadata.name'); }, {errorNotification: false}); diff --git a/app/styles/_select.less b/app/styles/_select.less index 7326facce3..9e5b37238a 100644 --- a/app/styles/_select.less +++ b/app/styles/_select.less @@ -35,6 +35,10 @@ min-height: 24px; cursor: pointer; } + .ui-select-choices-group-label:empty { + // Prevent extra space above the first choice when the group label is empty. + padding: 0; + } .ui-select-match-text, .ui-select-placeholder { font-weight: normal; } diff --git a/app/views/_compute-resource.html b/app/views/_compute-resource.html index 80c1616680..70d481428b 100644 --- a/app/views/_compute-resource.html +++ b/app/views/_compute-resource.html @@ -17,7 +17,7 @@ {{$select.selected.label}} - + {{option.label}} diff --git a/app/views/directives/osc-persistent-volume-claim.html b/app/views/directives/osc-persistent-volume-claim.html index 43b465cbd6..1560f60336 100644 --- a/app/views/directives/osc-persistent-volume-claim.html +++ b/app/views/directives/osc-persistent-volume-claim.html @@ -38,21 +38,23 @@
- + + +
A unique name for the storage claim within the project.
@@ -92,38 +94,46 @@
- -
-
- - + +
+
+ + +
+
+ + + {{$select.selected.label}} + + {{option.label}} + + +
+
+
+ Desired storage capacity.
-
- - - {{$select.selected.label}} - - {{option.label}} - - +
+ + Must be a number. + +
+
+ + Must be a positive number. + +
+ -
-
- Desired storage capacity. -
-
- - Must be a positive integer. - -
diff --git a/app/views/modals/about-compute-units-modal.html b/app/views/modals/about-compute-units-modal.html index a616c7c6ad..7fa832d5b8 100644 --- a/app/views/modals/about-compute-units-modal.html +++ b/app/views/modals/about-compute-units-modal.html @@ -22,11 +22,11 @@

CPU

1000 millcores = 1 core -

Memory

+

Memory and Storage

- Memory is measured in binary units like KiB, MiB, and GiB or - decimal units like kB, MB, and GB. + Memory and storage are measured in binary units like KiB, MiB, GiB, and TiB or + decimal units like kB, MB, GB, and TB.

@@ -36,6 +36,7 @@

Binary Units

1024 bytes = 1 KiB 1024 KiB = 1 MiB 1024 MiB = 1 GiB +1024 GiB = 1 TiB
@@ -44,6 +45,7 @@

Decimal Units

1000 bytes = 1 kB 1000 kB = 1 MB 1000 MB = 1 GB +1000 GB = 1 TB
diff --git a/dist/scripts/scripts.js b/dist/scripts/scripts.js index 43c490375b..6be54b17cf 100644 --- a/dist/scripts/scripts.js +++ b/dist/scripts/scripts.js @@ -10063,15 +10063,15 @@ _.set(a, "model.service", c); }); } }; -}), angular.module("openshiftConsole").directive("oscPersistentVolumeClaim", [ "DataService", function(a) { +}), angular.module("openshiftConsole").directive("oscPersistentVolumeClaim", [ "DataService", "ModalsService", function(a, b) { return { restrict:"E", scope:{ claim:"=model" }, templateUrl:"views/directives/osc-persistent-volume-claim.html", -link:function(b) { -b.storageClasses = [], b.claim.unit = "Mi", b.units = [ { +link:function(c) { +c.storageClasses = [], c.claim.unit = "Gi", c.units = [ { value:"Mi", label:"MiB" }, { @@ -10081,13 +10081,34 @@ label:"GiB" value:"Ti", label:"TiB" }, { -value:"Pi", -label:"PiB" -} ], b.claim.selectedLabels = [], a.list({ +value:"M", +label:"MB" +}, { +value:"G", +label:"GB" +}, { +value:"T", +label:"TB" +} ], c.claim.selectedLabels = [], c.groupUnits = function(a) { +switch (a.value) { +case "Mi": +case "Gi": +case "Ti": +return "Binary Units"; + +case "M": +case "G": +case "T": +return "Decimal Units"; +} +return ""; +}, c.showComputeUnitsHelp = function() { +b.showComputeUnitsHelp(); +}, a.list({ group:"storage.k8s.io", resource:"storageclasses" }, {}, function(a) { -b.storageClasses = a.by("metadata.name"); +c.storageClasses = a.by("metadata.name"); }, { errorNotification:!1 }); @@ -12461,19 +12482,31 @@ break; case "memory": b.input.unit = "Mi", b.units = [ { -value:"M", -label:"MB" -}, { -value:"G", -label:"GB" -}, { value:"Mi", label:"MiB" }, { value:"Gi", label:"GiB" +}, { +value:"M", +label:"MB" +}, { +value:"G", +label:"GB" } ]; } +b.groupUnits = function(a) { +switch (a.value) { +case "Mi": +case "Gi": +return "Binary Units"; + +case "M": +case "G": +return "Decimal Units"; +} +return ""; +}; var j = function() { var a = b.input.amount && f(b.input.amount + b.input.unit), c = b.limitRangeMin && f(b.limitRangeMin), d = b.limitRangeMax && f(b.limitRangeMax), e = !0, g = !0; a && c && (e = a >= c), a && d && (g = a <= d), b.form.amount.$setValidity("limitRangeMin", e), b.form.amount.$setValidity("limitRangeMax", g); diff --git a/dist/scripts/templates.js b/dist/scripts/templates.js index 880f9fd261..6bb2be38c4 100644 --- a/dist/scripts/templates.js +++ b/dist/scripts/templates.js @@ -81,7 +81,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "\n" + "\n" + "{{$select.selected.label}}\n" + - "\n" + + "\n" + "{{option.label}}\n" + "\n" + "\n" + @@ -7534,7 +7534,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "\n" + "
\n" + "\n" + + "\n" + "\n" + + "\n" + "
\n" + "A unique name for the storage claim within the project.\n" + "
\n" + @@ -7568,16 +7570,16 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "
\n" + "
\n" + "\n" + - "
\n" + - "
\n" + + "
\n" + + "
\n" + "\n" + - "\n" + + "\n" + "
\n" + "
\n" + "\n" + "\n" + "{{$select.selected.label}}\n" + - "\n" + + "\n" + "{{option.label}}\n" + "\n" + "\n" + @@ -7586,11 +7588,19 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "
\n" + "Desired storage capacity.\n" + "
\n" + - "
\n" + + "
\n" + + "\n" + + "Must be a number.\n" + + "\n" + + "
\n" + + "
\n" + "\n" + - "Must be a positive integer.\n" + + "Must be a positive number.\n" + "\n" + "
\n" + + "
\n" + + "What are GiB?\n" + + "
\n" + "
\n" + "
\n" + "\n" + @@ -9825,9 +9835,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "
\n" +
     "1000 millcores  =  1 core\n" +
     "
\n" + - "

Memory

\n" + + "

Memory and Storage

\n" + "

\n" + - "Memory is measured in binary units like KiB, MiB, and GiB or decimal units like kB, MB, and GB.\n" + + "Memory and storage are measured in binary units like KiB, MiB, GiB, and TiB or decimal units like kB, MB, GB, and TB.\n" + "

\n" + "
\n" + "
\n" + @@ -9836,6 +9846,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "1024 bytes = 1 KiB\n" + "1024 KiB = 1 MiB\n" + "1024 MiB = 1 GiB\n" + + "1024 GiB = 1 TiB\n" + "\n" + "
\n" + "
\n" + @@ -9844,6 +9855,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "1000 bytes = 1 kB\n" + "1000 kB = 1 MB\n" + "1000 MB = 1 GB\n" + + "1000 GB = 1 TB\n" + "\n" + "
\n" + "
\n" + diff --git a/dist/styles/main.css b/dist/styles/main.css index d44cf0e3e8..ad60c483a7 100644 --- a/dist/styles/main.css +++ b/dist/styles/main.css @@ -4762,6 +4762,7 @@ td.visible-print,th.visible-print{display:table-cell!important} .ui-select-bootstrap .ui-select-choices-row.active>span{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff} .ui-select-bootstrap .ui-select-choices-row.active .text-muted{color:#f5f5f5} .ui-select-bootstrap .ui-select-choices-row-inner{min-height:24px;cursor:pointer} +.ui-select-bootstrap .ui-select-choices-group-label:empty{padding:0} .ui-select-bootstrap .ui-select-match-text,.ui-select-bootstrap .ui-select-placeholder{font-weight:400} .ui-select-bootstrap .ui-select-match-text{padding-right:20px} .ui-select-bootstrap .ui-select-match-text span{display:block;text-overflow:ellipsis}