@rancher/shell 3.0.2-rc.4 → 3.0.2-rc.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. package/assets/images/providers/nutanix.svg +12 -1
  2. package/assets/styles/base/_basic.scss +2 -1
  3. package/assets/styles/base/_helpers.scss +4 -0
  4. package/assets/styles/base/_variables.scss +2 -0
  5. package/assets/styles/global/_labeled-input.scss +5 -13
  6. package/assets/styles/global/_layout.scss +1 -0
  7. package/assets/styles/global/_select.scss +5 -0
  8. package/assets/styles/themes/_dark.scss +1 -3
  9. package/assets/styles/themes/_light.scss +5 -1
  10. package/assets/translations/en-us.yaml +142 -22
  11. package/assets/translations/zh-hans.yaml +0 -3
  12. package/cloud-credential/azure.vue +1 -1
  13. package/components/ActionMenuShell.vue +105 -0
  14. package/components/AppModal.vue +2 -2
  15. package/components/AsyncButton.vue +2 -0
  16. package/components/ButtonGroup.vue +15 -1
  17. package/components/ButtonMultiAction.vue +5 -1
  18. package/components/ClusterBadge.vue +1 -0
  19. package/components/ClusterIconMenu.vue +3 -0
  20. package/components/ClusterProviderIcon.vue +14 -1
  21. package/components/CodeMirror.vue +96 -5
  22. package/components/Collapse.vue +16 -3
  23. package/components/CopyToClipboardText.vue +3 -1
  24. package/components/CruResource.vue +9 -0
  25. package/components/CruResourceFooter.vue +1 -1
  26. package/components/ExplorerMembers.vue +2 -1
  27. package/components/ExplorerProjectsNamespaces.vue +7 -0
  28. package/components/Import.vue +14 -1
  29. package/components/LandingPagePreference.vue +4 -2
  30. package/components/PodSecurityAdmission.vue +8 -6
  31. package/components/PromptChangePassword.vue +1 -0
  32. package/components/PromptRemove.vue +23 -21
  33. package/components/ResourceDetail/Masthead.vue +30 -11
  34. package/components/ResourceDetail/__tests__/Masthead.test.ts +61 -0
  35. package/components/ResourceDetail/index.vue +6 -0
  36. package/components/ResourceTable.vue +6 -14
  37. package/components/ResourceYaml.vue +1 -0
  38. package/components/SelectIconGrid.vue +2 -0
  39. package/components/Setting.vue +115 -0
  40. package/components/SortableTable/THead.vue +2 -0
  41. package/components/SortableTable/index.vue +38 -14
  42. package/components/Tabbed/index.vue +16 -15
  43. package/components/Wizard.vue +108 -104
  44. package/components/YamlEditor.vue +12 -2
  45. package/components/__tests__/Collapse.test.ts +2 -2
  46. package/components/auth/Principal.vue +29 -17
  47. package/components/auth/__tests__/Principal.test.ts +40 -0
  48. package/components/auth/login/ldap.vue +7 -0
  49. package/components/fleet/FleetBundles.vue +1 -1
  50. package/components/fleet/FleetRepos.vue +1 -1
  51. package/components/fleet/FleetResources.vue +0 -2
  52. package/components/fleet/FleetSummary.vue +60 -65
  53. package/components/fleet/ForceDirectedTreeChart/index.vue +5 -1
  54. package/components/fleet/__tests__/FleetSummary.test.ts +49 -9
  55. package/components/form/ArrayList.vue +6 -2
  56. package/components/form/ColorInput.vue +1 -0
  57. package/components/form/KeyValue.vue +11 -12
  58. package/components/form/LabeledSelect.vue +16 -3
  59. package/components/form/Labels.vue +8 -1
  60. package/components/form/Members/MembershipEditor.vue +230 -222
  61. package/components/form/Members/__tests__/MembershipEditor.test.ts +62 -0
  62. package/components/form/Password.vue +3 -0
  63. package/components/form/ProjectMemberEditor.vue +6 -3
  64. package/components/form/ResourceTabs/index.vue +15 -13
  65. package/components/form/SSHKnownHosts/KnownHostsEditDialog.vue +5 -4
  66. package/components/form/SchedulingCustomization.vue +85 -0
  67. package/components/form/Select.vue +4 -2
  68. package/components/form/SelectOrCreateAuthSecret.vue +2 -1
  69. package/components/form/UnitInput.vue +1 -2
  70. package/components/form/__tests__/ArrayList.test.ts +9 -6
  71. package/components/form/__tests__/LabeledSelect.test.ts +37 -0
  72. package/components/form/__tests__/SelectOrCreateAuthSecret.test.ts +34 -0
  73. package/components/formatter/LiveDate.vue +3 -1
  74. package/components/formatter/ServiceType.vue +12 -4
  75. package/components/formatter/WorkloadHealthScale.vue +2 -1
  76. package/components/nav/Header.vue +35 -2
  77. package/components/nav/HeaderPageActionMenu.vue +11 -40
  78. package/components/nav/Jump.vue +8 -2
  79. package/components/nav/NamespaceFilter.vue +5 -4
  80. package/components/nav/Pinned.vue +1 -1
  81. package/components/nav/TopLevelMenu.helper.ts +5 -5
  82. package/components/nav/WindowManager/ContainerLogs.vue +97 -49
  83. package/components/nav/WindowManager/ContainerShell.vue +99 -18
  84. package/components/nav/WindowManager/index.vue +85 -6
  85. package/components/templates/default.vue +2 -47
  86. package/config/features.js +1 -0
  87. package/config/home-links.js +1 -1
  88. package/config/labels-annotations.js +11 -1
  89. package/config/router/navigation-guards/index.js +2 -1
  90. package/config/router/navigation-guards/record-last-route.js +24 -0
  91. package/config/settings.ts +66 -98
  92. package/config/version.js +1 -1
  93. package/core/types-provisioning.ts +7 -0
  94. package/detail/fleet.cattle.io.bundle.vue +7 -0
  95. package/detail/fleet.cattle.io.cluster.vue +0 -3
  96. package/detail/fleet.cattle.io.gitrepo.vue +8 -15
  97. package/detail/provisioning.cattle.io.cluster.vue +8 -2
  98. package/dialog/DeactivateDriverDialog.vue +5 -5
  99. package/dialog/GitRepoForceUpdateDialog.vue +132 -0
  100. package/directives/strip-html-aria-label.js +19 -0
  101. package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +87 -0
  102. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +217 -37
  103. package/edit/auth/__tests__/oidc.test.ts +26 -9
  104. package/edit/auth/ldap/__tests__/config.test.ts +40 -0
  105. package/edit/auth/ldap/config.vue +67 -89
  106. package/edit/auth/oidc.vue +15 -1
  107. package/edit/catalog.cattle.io.clusterrepo.vue +12 -8
  108. package/edit/cis.cattle.io.clusterscan.vue +13 -1
  109. package/edit/fleet.cattle.io.gitrepo.vue +198 -72
  110. package/edit/logging-flow/Match.vue +0 -21
  111. package/edit/management.cattle.io.project.vue +1 -1
  112. package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +10 -3
  113. package/edit/monitoring.coreos.com.prometheusrule/RecordingRule.vue +5 -1
  114. package/edit/monitoring.coreos.com.prometheusrule/index.vue +5 -2
  115. package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +8 -1
  116. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +2 -0
  117. package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.test.ts +55 -15
  118. package/edit/provisioning.cattle.io.cluster/index.vue +39 -39
  119. package/edit/provisioning.cattle.io.cluster/rke2.vue +63 -12
  120. package/edit/provisioning.cattle.io.cluster/tabs/AgentConfiguration.vue +37 -2
  121. package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +3 -2
  122. package/edit/resources.cattle.io.backup.vue +150 -15
  123. package/edit/secret/__tests__/ssh.test.ts +79 -0
  124. package/edit/secret/ssh.vue +7 -1
  125. package/edit/workload/Job.vue +2 -2
  126. package/edit/workload/index.vue +3 -1
  127. package/initialize/install-directives.js +2 -0
  128. package/initialize/install-plugins.js +6 -1
  129. package/list/catalog.cattle.io.app.vue +21 -4
  130. package/list/fleet.cattle.io.bundle.vue +1 -1
  131. package/list/management.cattle.io.setting.vue +34 -129
  132. package/list/provisioning.cattle.io.cluster.vue +11 -3
  133. package/machine-config/vmwarevsphere.vue +15 -8
  134. package/mixins/__tests__/auth-config.test.ts +74 -0
  135. package/mixins/__tests__/chart.test.ts +5 -4
  136. package/mixins/__tests__/create-edit-view.test.ts +38 -0
  137. package/mixins/auth-config.js +9 -1
  138. package/mixins/chart.js +2 -2
  139. package/mixins/create-edit-view/impl.js +4 -1
  140. package/mixins/vue-select-overrides.js +10 -0
  141. package/models/__tests__/catalog.cattle.io.app.test.ts +148 -0
  142. package/models/__tests__/fleet.cattle.io.gitrepo.test.ts +157 -0
  143. package/models/__tests__/secret.test.ts +56 -13
  144. package/models/catalog.cattle.io.app.js +112 -37
  145. package/models/cluster.js +11 -0
  146. package/models/fleet.cattle.io.bundle.js +40 -2
  147. package/models/fleet.cattle.io.gitrepo.js +169 -109
  148. package/models/management.cattle.io.fleetworkspace.js +4 -0
  149. package/models/management.cattle.io.kontainerdriver.js +7 -0
  150. package/models/nodedriver.js +4 -1
  151. package/models/provisioning.cattle.io.cluster.js +24 -0
  152. package/models/secret.js +1 -1
  153. package/package.json +4 -4
  154. package/pages/auth/login.vue +4 -2
  155. package/pages/auth/verify.vue +11 -1
  156. package/pages/c/_cluster/apps/charts/chart.vue +1 -0
  157. package/pages/c/_cluster/apps/charts/index.vue +6 -4
  158. package/pages/c/_cluster/apps/charts/install.vue +1 -1
  159. package/pages/c/_cluster/explorer/ConfigBadge.vue +3 -5
  160. package/pages/c/_cluster/explorer/EventsTable.vue +3 -2
  161. package/pages/c/_cluster/explorer/__tests__/index.test.ts +9 -9
  162. package/pages/c/_cluster/explorer/index.vue +33 -35
  163. package/pages/c/_cluster/explorer/tools/index.vue +17 -4
  164. package/pages/c/_cluster/fleet/index.vue +0 -5
  165. package/pages/c/_cluster/legacy/project/index.vue +1 -1
  166. package/pages/c/_cluster/settings/performance.vue +52 -53
  167. package/pages/c/_cluster/uiplugins/index.vue +21 -22
  168. package/pages/home.vue +17 -12
  169. package/pages/prefs.vue +5 -1
  170. package/plugins/shortkey.js +10 -1
  171. package/plugins/steve/steve-pagination-utils.ts +58 -8
  172. package/promptRemove/management.cattle.io.fleetworkspace.vue +98 -0
  173. package/promptRemove/management.cattle.io.globalrole.vue +1 -1
  174. package/promptRemove/management.cattle.io.project.vue +2 -8
  175. package/promptRemove/management.cattle.io.roletemplate.vue +1 -1
  176. package/promptRemove/mixin/roleDeletionCheck.js +1 -7
  177. package/promptRemove/pod.vue +7 -28
  178. package/rancher-components/Card/Card.vue +9 -1
  179. package/rancher-components/Form/Checkbox/Checkbox.vue +42 -6
  180. package/rancher-components/Form/LabeledInput/LabeledInput.vue +30 -3
  181. package/rancher-components/Form/Radio/RadioButton.vue +18 -3
  182. package/rancher-components/Form/Radio/RadioGroup.vue +39 -5
  183. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +13 -1
  184. package/rancher-components/RcButton/RcButton.test.ts +97 -0
  185. package/rancher-components/RcButton/RcButton.vue +14 -9
  186. package/rancher-components/RcDropdown/RcDropdown.vue +3 -1
  187. package/rancher-components/RcDropdown/RcDropdownItem.vue +8 -14
  188. package/rancher-components/RcDropdown/RcDropdownMenu.vue +66 -0
  189. package/rancher-components/RcDropdown/index.ts +1 -0
  190. package/rancher-components/RcDropdown/types.ts +27 -0
  191. package/rancher-components/RcDropdown/useDropdownContext.ts +5 -2
  192. package/scripts/typegen.sh +1 -0
  193. package/store/__tests__/auth.test.ts +120 -0
  194. package/store/action-menu.js +13 -3
  195. package/store/auth.js +14 -9
  196. package/store/catalog.js +14 -7
  197. package/store/features.js +1 -0
  198. package/store/prefs.js +9 -28
  199. package/store/type-map.utils.ts +4 -0
  200. package/types/resources/settings.d.ts +27 -20
  201. package/types/shell/index.d.ts +18 -2
  202. package/utils/__tests__/array.test.ts +13 -1
  203. package/utils/__tests__/string.test.ts +80 -1
  204. package/utils/array.ts +13 -0
  205. package/utils/auth.js +4 -0
  206. package/utils/cluster.js +1 -1
  207. package/{edit/monitoring.coreos.com.prometheusrule → utils}/duration.js +5 -3
  208. package/utils/pagination-utils.ts +15 -2
  209. package/utils/string.js +31 -7
  210. package/utils/validators/formRules/__tests__/index.test.ts +27 -0
  211. package/utils/validators/formRules/index.ts +16 -0
  212. package/edit/provisioning.cattle.io.cluster/import.vue +0 -198
@@ -1 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 70.7 48.2" style="enable-background:new 0 0 70.7 48.2;" xml:space="preserve"> <style type="text/css"> .st0{fill:#A8CB3A;} .st1{fill:#174489;} </style> <title>nutanix logo</title> <g> <path id="Fill-1" class="st0" d="M15.6,47.8c-0.2,0.2-0.4,0.3-0.7,0.3H1.1c-0.4,0-0.9-0.2-1-0.6c-0.2-0.5-0.1-1,0.3-1.3L25.5,25 c0.6-0.5,0.6-1.3,0-1.8L0.4,2C0.1,1.7-0.1,1.3,0,0.9C0.1,0.4,0.6,0,1.1,0h13.2c0.3,0,0.5,0.1,0.7,0.3l27.3,23l0.2,0.2 c0.4,0.4,0.4,1,0,1.4l-0.3,0.2L15.6,47.8"></path> <path id="Fill-8" class="st1" d="M46.6,20.2c0.4,0.4,1.1,0.4,1.5,0L70,2c0.3-0.3,0.5-0.7,0.4-1C70.3,0.4,69.8,0,69.3,0H56.1 c-0.3,0-0.5,0.1-0.7,0.3L40,12.8c-0.6,0.5-0.6,1.3,0,1.8L46.6,20.2"></path> <path id="Fill-9" class="st1" d="M46.5,28.1c0.4-0.4,1.1-0.4,1.5,0l22.2,18.2c0.3,0.3,0.5,0.7,0.4,1c-0.1,0.5-0.6,0.9-1.1,0.9H56.3 c-0.3,0-0.5-0.1-0.7-0.3L40.4,35.3c-0.6-0.5-0.6-1.3,0-1.8L46.5,28.1"></path> </g> </svg>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 193.3 133.4">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #131313;
7
+ stroke-width: 0px;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="M192.6,130.1c.6.5.8,1.3.5,2-.3.7-1,1.2-1.7,1.2h-39.8c-.4,0-.9-.2-1.2-.4l-43.7-37.8c-.4-.4-.6-.9-.6-1.4s.2-1,.6-1.4l19.9-17.2c.7-.6,1.7-.6,2.4,0l63.5,55ZM126.7,58.2c.3.3.8.4,1.2.4s.9-.2,1.2-.4L192.6,3.2c.6-.5.8-1.3.5-2-.3-.7-1-1.2-1.7-1.2h-39.8c-.4,0-.9.2-1.2.4l-43.7,37.8c-.4.4-.6.9-.6,1.4s.2,1,.6,1.4l19.9,17.2ZM118.4,66.7c0-.5-.2-1-.6-1.4L42.8.4c-.3-.3-.8-.4-1.2-.4H1.8C1.1,0,.4.5.1,1.2c-.3.7,0,1.5.5,2l73.3,63.4L.6,130.1c-.6.5-.8,1.3-.5,2,.3.7,1,1.2,1.7,1.2h39.8c.4,0,.9-.2,1.2-.4l74.9-64.8c.4-.4.6-.9.6-1.4Z"/>
12
+ </svg>
@@ -58,7 +58,6 @@ BODY {
58
58
  box-sizing: inherit;
59
59
  }
60
60
 
61
- INPUT,
62
61
  SELECT,
63
62
  TEXTAREA,
64
63
  .checkbox-custom {
@@ -67,12 +66,14 @@ TEXTAREA,
67
66
  }
68
67
  }
69
68
 
69
+ INPUT,
70
70
  .labeled-input,
71
71
  .radio-custom,
72
72
  .labeled-select,
73
73
  .unlabeled-select {
74
74
  &:focus-visible, &.focused {
75
75
  @include focus-outline;
76
+ outline-offset: -1px;
76
77
  }
77
78
  }
78
79
 
@@ -229,6 +229,10 @@ $spacing-property-map: (
229
229
  vertical-align: top !important;
230
230
  }
231
231
 
232
+ .align-center {
233
+ align-items: center !important;
234
+ }
235
+
232
236
  .vertical-scroll {
233
237
  max-height: 150px;
234
238
  overflow: scroll;
@@ -39,6 +39,8 @@ $z-indexes: (
39
39
 
40
40
  mainHeader: 14,
41
41
 
42
+ cruFooter: 19,
43
+
42
44
  modalOverlay: 20,
43
45
  modalContent: 21,
44
46
 
@@ -1,6 +1,6 @@
1
1
  .labeled-input {
2
2
  position: relative;
3
- display: table;
3
+ display: flex;
4
4
  border-collapse: separate;
5
5
  min-height: $input-height;
6
6
  z-index: 0; // Prevent label from cover other elements outside of the input
@@ -97,9 +97,9 @@
97
97
 
98
98
  .addon,
99
99
  .addon.btn {
100
- display: table-cell;
101
- vertical-align: middle;
102
- width: 1%;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: center;
103
103
  white-space: nowrap;
104
104
  vertical-align: middle;
105
105
  color: #{$secondary};
@@ -119,14 +119,6 @@
119
119
  padding-right: 8px;
120
120
  }
121
121
 
122
- &.suffix.v-popper--has-tooltip INPUT {
123
- width: calc(100% - 30px);
124
- }
125
-
126
- &.suffix.v-popper--has-tooltip INPUT {
127
- width: calc(100% - 30px);
128
- }
129
-
130
122
  .cron-label,
131
123
  .sub-label {
132
124
  position: absolute;
@@ -145,4 +137,4 @@
145
137
 
146
138
 
147
139
 
148
- }
140
+ }
@@ -116,6 +116,7 @@ HEADER {
116
116
  grid-area: wm;
117
117
  overflow-y: hidden;
118
118
  z-index: z-index('windowsManager');
119
+ position: relative;
119
120
  }
120
121
 
121
122
  .localeSelector {
@@ -34,6 +34,11 @@
34
34
  float: right;
35
35
  }
36
36
 
37
+ &:focus-visible, &.focused {
38
+ @include focus-outline;
39
+ outline-offset: -1px;
40
+ }
41
+
37
42
  &.focused {
38
43
  border-bottom-left-radius: 0;
39
44
  border-bottom-right-radius: 0;
@@ -21,7 +21,6 @@
21
21
 
22
22
  // dark main text
23
23
  $lightest: #ffffff;
24
- $keyboard-focus: #00ddff;
25
24
 
26
25
  // menu cluster description active+hover
27
26
  $desc-light: #EEEFF4;
@@ -50,7 +49,6 @@
50
49
  --default-light-bg : #{rgba($dark, 0.05)};
51
50
  --slider-light-bg : #{rgba($darker, 1)};
52
51
  --slider-light-bg-right : #{rgba($darker, 0)};
53
- --primary-keyboard-focus : #{$keyboard-focus};
54
52
 
55
53
  --muted : #{$disabled};
56
54
 
@@ -118,7 +116,7 @@
118
116
  --dropdown-hover-bg : #{$slate};
119
117
  --dropdown-disabled-bg : #{$disabled};
120
118
  --dropdown-disabled-text : #{$disabled};
121
- --dropdown-group-text : #{$disabled};
119
+ --dropdown-group-text : #{$lighter};
122
120
  --dropdown-highlight-text : var(--link);
123
121
 
124
122
  --input-text : #{$lightest};
@@ -26,7 +26,7 @@ $disabled : $medium;
26
26
  $primary : #3D98D3;
27
27
  $secondary : $darker;
28
28
  $link : #3D98D3;
29
- $keyboard-focus : #3300ff;
29
+ $keyboard-focus : #{darken($primary, 10%)};
30
30
 
31
31
  // Status colors
32
32
  $success : #5D995D;
@@ -91,6 +91,10 @@ BODY, .theme-light {
91
91
 
92
92
  .text-link {
93
93
  color: var(--link) !important;
94
+
95
+ &.disabled {
96
+ color: var(--disabled-text) !important;
97
+ }
94
98
  }
95
99
 
96
100
  .bg-link {
@@ -2,6 +2,15 @@
2
2
  # Special stuff
3
3
  ##############################
4
4
  generic:
5
+ unified: Unified
6
+ split: Split
7
+ userMenu: user menu
8
+ actionMenu: action menu
9
+ namespaceFilter: namespace filter menu
10
+ filterNamespaces: filter namespaces
11
+ clearSearch: clear search
12
+ clearFilters: clear filters
13
+ userAvatar: user avatar
5
14
  add: Add
6
15
  all: All
7
16
  ascending: ascending
@@ -17,6 +26,7 @@ generic:
17
26
  comma: ', '
18
27
  copy: Copy
19
28
  copyToClipboard: Copy text to Clipboard
29
+ copiedToClipboard: Text copied to Clipboard
20
30
  create: Create
21
31
  created: Created
22
32
  customize: Customize
@@ -57,6 +67,7 @@ generic:
57
67
  overview: Overview
58
68
  plusMore: "+ {n} more"
59
69
  readFromFile: Read from File
70
+ readFromFileArea: Read from File - {area}
60
71
  readFromFolder: Read from Folder
61
72
  reload: Reload
62
73
  register: Register
@@ -117,7 +128,6 @@ generic:
117
128
  other {Matches {matched, number} of {total, number}, including "{sample}"}
118
129
  }
119
130
  basic: Basic
120
-
121
131
  ariaLabel:
122
132
  key: Key {index}
123
133
  value: Value {index}
@@ -130,6 +140,9 @@ locale:
130
140
 
131
141
  nav:
132
142
  ariaLabel:
143
+ clusterIconKeyCombo: Cluster keyboard shortcut combination icon
144
+ localClusterIcon: Local Cluster icon
145
+ clusterProvIcon: Cluster {cluster} provider icon
133
146
  topLevelMenu: Main menu
134
147
  homePage: Home page navigation menu
135
148
  cluster: Cluster menu item
@@ -139,7 +152,7 @@ nav:
139
152
  configurationApps: Main menu configuration app menu item
140
153
  support: Support page link
141
154
  about: About page link
142
- pinCluster: Pin/Unpin cluster
155
+ pinCluster: Pin/Unpin {cluster} cluster
143
156
  collapseExpand: Collapse/Expand menu group
144
157
  productAboutPage: Product about page link
145
158
  alt:
@@ -305,6 +318,8 @@ suffix:
305
318
  ##############################
306
319
  # Components & Pages
307
320
  ##############################
321
+ windowmanager:
322
+ closeTab: Close tab {tabId}
308
323
  about:
309
324
  title: About
310
325
  versions:
@@ -536,6 +551,7 @@ authConfig:
536
551
  tls: TLS
537
552
  userEnabledAttribute: User Enabled Attribute
538
553
  userMemberAttribute: User Member Attribute
554
+ userLoginFilter: User Login Filter
539
555
  userSearchBase:
540
556
  label: User Search Base
541
557
  placeholder: 'e.g. ou=users,dc=mycompany,dc=com'
@@ -649,6 +665,9 @@ authConfig:
649
665
  key:
650
666
  label: Private Key
651
667
  placeholder: Paste in the private key, typically starting with -----BEGIN RSA PRIVATE KEY-----
668
+ groupSearch:
669
+ label: Enable group search
670
+ tooltip: Allows users with appropriate permissions to search and view all groups within the OIDC provider's realm. This can be useful for administrators who need to assign global roles to groups that they are not currently a member of.
652
671
  stateBanner:
653
672
  disabled: 'The {provider} authentication provider is currently disabled.'
654
673
  enabled: 'The {provider} authentication provider is currently enabled.'
@@ -834,7 +853,17 @@ asyncButton:
834
853
  success: Generated
835
854
  waiting: Generating&hellip;
836
855
 
837
- backupRestoreOperator:
856
+ backupRestoreOperator:
857
+ backup:
858
+ label: Resource Set
859
+ description: The Resource Set determines which resources the backup-restore-operator collects in a backup
860
+ enableEncryptionWarning: 'Enabling encryption is highly recommended when using <b><i>Full Rancher backup resource set</i></b>, otherwise sensitive information will be backed up as plain-text. <a target="_blank" rel="noopener noreferrer nofollow" href="https://ranchermanager.docs.rancher.com/reference-guides/backup-restore-configuration/backup-configuration#resourcesets">Read more</a>.'
861
+ missingResourceSetWarning: The <b><i>{resourceSet}</i></b> resource set doesn't exist, it's possible it has been deleted. Please select a different option.
862
+ resourceSetOptions:
863
+ 'rancher-resource-set-basic': 'Basic Rancher backup resource set'
864
+ 'rancher-resource-set-full': 'Full Rancher backup resource set'
865
+ custom: Custom
866
+ customResourceSetLabel: Custom Resource Set
838
867
  backupFilename: Backup Filename
839
868
  deleteTimeout:
840
869
  label: Delete Timeout
@@ -922,6 +951,8 @@ catalog:
922
951
  label: Resources
923
952
  busy: The related resources will appear when {app} is fully installed.
924
953
  values: Values YAML
954
+ upgrade:
955
+ uncertainUpgradeWarningTooltip: Unable to determine if an upgrade is available (can not identify the repository and chart used to deploy this application)
925
956
  chart:
926
957
  registry:
927
958
  label: Container Registry
@@ -950,6 +981,11 @@ catalog:
950
981
  experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
951
982
  deprecatedAndExperimentalWarning: '{chartName} has been marked as deprecated and experimental. Use caution when installing this helm chart as it might be removed in the future and might not function as expected.'
952
983
  charts:
984
+ browseBtn: Browse
985
+ featuredBtn: Featured
986
+ featuredAriaLabel: Show Featured Charts Carousel and charts grid
987
+ browseAriaLabel: Show only charts grid
988
+ iconAlt: Icon for {app} card/grid item
953
989
  refresh: refresh charts
954
990
  all: All
955
991
  categories:
@@ -1115,7 +1151,8 @@ catalog:
1115
1151
  oci:
1116
1152
  urlLabel: OCI Repository Host URL
1117
1153
  placeholder: 'e.g. oci://<registry-host>/<namespace>/<chart-name>:<tag>'
1118
- info: Add OCI URLs that contain ONLY helm charts. For large repositories containing many charts consider targeting a specific namespace or chart to improve performance, for example with oci://<registry-host>/<namespace> or oci://<registry-host>/<namespace>/<chart-name>. The list of charts available from the repository is updated every 6 hours.
1154
+ warning: OCI URLs must ONLY target helm chart/s.
1155
+ info: For large repositories containing many charts consider targeting a specific namespace or chart to improve performance, for example with oci://<registry-host>/<namespace> or oci://<registry-host>/<namespace>/<chart-name>.
1119
1156
  skipTlsVerifications: Skip TLS Verifications
1120
1157
  insecurePlainHttp: Insecure Plain Http
1121
1158
  exponentialBackOff:
@@ -1133,6 +1170,7 @@ catalog:
1133
1170
  label: Refresh Interval
1134
1171
  placeholder: 'default: {hours}'
1135
1172
  tools:
1173
+ iconAlt: Icon for {app} Cluster Tool
1136
1174
  header: Cluster Tools
1137
1175
  noTools: "No Cluster Tools found"
1138
1176
  action:
@@ -1309,8 +1347,9 @@ cluster:
1309
1347
  registrationCommand:
1310
1348
  label: Registration Command
1311
1349
  linuxDetail: Run this command on each of the existing Linux machines you want to register.
1312
- windowsDetail: Run this command in PowerShell on each of the existing Windows machines you want to register. Windows nodes can only be workers.
1313
- windowsNotReady: The cluster must be up and running with Linux etcd, control plane, and worker nodes before the registration command for adding Windows workers will display.
1350
+ windowsDetail: Run this command in PowerShell on each of the existing Windows machines you want to register.
1351
+ windowsWorkersOnly: <b>Windows nodes can only be workers.</b>
1352
+ windowsNotReady: The cluster must be up and running with Linux etcd, control plane, and worker nodes before the registration command for adding Windows workers will display.<br /> <br /><b>Windows nodes can only be workers.</b>
1314
1353
  windowsWarning: Workload pods, including some deployed by Rancher charts, will be scheduled on both Linux and Windows nodes by default. Edit NodeSelector in the chart to direct them to be placed onto a compatible node.
1315
1354
  windowsDeprecatedForRKE1: Windows support is being deprecated for RKE1. We suggest migrating to RKE2.
1316
1355
  insecure: "Insecure: Select this to skip TLS verification if your server has a self-signed certificate."
@@ -1822,9 +1861,15 @@ cluster:
1822
1861
  podAffinity: Affinity
1823
1862
  podTolerations: Tolerations
1824
1863
  podRequestsAndLimits: Requests and Limits
1864
+ schedulingCustomization: Scheduling Customization
1825
1865
  subGroups:
1826
1866
  podAffinityAnti: Pod Affinity/Anti-Affinity
1827
1867
  nodeAffinity: Node Affinity
1868
+ schedulingCustomization:
1869
+ label: Prevent Rancher cluster agent pod eviction
1870
+ description: This ensures that the cluster agent pod is not evicted due to node pressure, resource constraints or scheduler policies.
1871
+ banner: This feature has been enabled with settings that are different from the global default settings.
1872
+ innerCheckbox: Apply global settings for Priority Class and Pod Disruption Budget
1828
1873
  banners:
1829
1874
  advanced: These are advanced configuration options. Generally, they should be left as-is.
1830
1875
  tolerations: Additional Pod Tolerations will be added to the default Tolerations applied by Rancher.
@@ -1871,6 +1916,8 @@ cluster:
1871
1916
  =1 { {pool_name}: The provided value for {fields} was not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
1872
1917
  other { {pool_name}: The provided values for {fields} were not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
1873
1918
  }
1919
+ rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters. We recommend replatforming RKE1 clusters to RKE2 to ensure continued support and security updates. Learn more about the transition <a href="https://www.suse.com/support/kb/doc/?id=000021518" target="_blank" rel="noopener noreferrer nofollow">here</a>.'
1920
+ rke1DeprecationShortMessage: Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters.
1874
1921
  rkeTemplateUpgrade: Template revision {name} available for upgrade
1875
1922
  cloudCredentials:
1876
1923
  renew: Renew Cloud Credentials
@@ -1966,19 +2013,22 @@ cluster:
1966
2013
  header: Registry for Rancher System Container Images
1967
2014
  label: Enable cluster scoped container registry for Rancher system container images
1968
2015
  description: "If enabled, Rancher will pull container images from this registry during cluster provisioning. By default, Rancher will also use this registry when installing Rancher's official Helm chart apps. If the cluster scoped registry is disabled, system images are pulled from the System Default Registry in the global settings."
2016
+ importedDescription: "By default, Rancher will also use this registry when installing Rancher's official Helm chart apps. If the cluster scoped registry is disabled, system images are pulled from the System Default Registry in the global settings."
1969
2017
  docsLinkRke2: "For help configuring private registry mirrors, see the RKE2 <a href=\"https://docs.rke2.io/install/private_registry\" target=\"_blank\">documentation.</a>"
1970
2018
  docsLinkK3s: "For help configuring private registry mirrors, see the K3s <a href=\"https://docs.k3s.io/installation/private-registry\" target=\"_blank\">documentation.</a>"
2019
+ privateRegistryUrlError: A registry must be a valid url. Scheme is optional.
1971
2020
  provider:
1972
2021
  aliyunecs: Aliyun ECS
1973
2022
  aliyunkubernetescontainerservice: Alibaba ACK
1974
2023
  aliyun: Alibaba ACK
1975
2024
  amazonec2: Amazon EC2
1976
2025
  amazoneks: Amazon EKS
2026
+ amazonelasticcontainerservice: Amazon EKS (Unsupported Kev1)
1977
2027
  aws: Amazon
1978
2028
  azure: Azure
1979
2029
  azureaks: Azure AKS
1980
2030
  aks: Azure AKS
1981
- azurekubernetesservice: Azure AKS
2031
+ azurekubernetesservice: Azure AKS (Unsupported Kev1)
1982
2032
  baiducloudcontainerengine: Baidu CCE
1983
2033
  baidu: Baidu CCE
1984
2034
  cloudca: Cloud.ca
@@ -1992,6 +2042,7 @@ cluster:
1992
2042
  google: Google GCE
1993
2043
  googlegke: Google GKE
1994
2044
  gke: Google GKE
2045
+ googlekubernetesengine: Google GKE (Unsupported Kev1)
1995
2046
  harvester: Harvester
1996
2047
  huaweicce: Huawei CCE
1997
2048
  import: Generic
@@ -2048,7 +2099,7 @@ cluster:
2048
2099
  title: Save Machine Configurations
2049
2100
  body: Machine Configurations define how machines in Pools are deployed.<br><br> They will be saved upfront to ensure valid Cluster YAML can be saved.
2050
2101
  snapshots:
2051
- suffix: Snapshots per node
2102
+ suffix: Snapshots
2052
2103
  systemService:
2053
2104
  rke2-coredns: 'CoreDNS'
2054
2105
  rke2-ingress-nginx: 'NGINX Ingress'
@@ -2140,15 +2191,18 @@ cluster:
2140
2191
  enable: Enable IPv6 support
2141
2192
  etcd:
2142
2193
  disableSnapshots:
2143
- label: Automatic Snapshots
2194
+ label: Automatic Backups
2144
2195
  snapshotScheduleCron:
2145
2196
  label: Cron Schedule
2146
2197
  snapshotRetention:
2147
- label: Keep the last
2198
+ label: Snapshot retention count
2199
+ tooltip: Each backup records 1 snapshot per etcd node. If you specify 3 snapshots and you have 3 etcd nodes you will only retain 1 full backup.
2148
2200
  exportMetric:
2149
2201
  label: Metrics
2150
2202
  false: Only available inside the cluster
2151
2203
  true: Exposed to the public interface
2204
+ s3backups:
2205
+ label: Save Backups to S3
2152
2206
  k3s:
2153
2207
  systemService:
2154
2208
  coredns: 'CoreDNS'
@@ -2289,6 +2343,7 @@ resource:
2289
2343
  update: "Error updating {name}"
2290
2344
 
2291
2345
  codeMirror:
2346
+ escapeText: Press Shift+Escape to blur from editor
2292
2347
  keymap:
2293
2348
  tooltip: Key mapping preference.
2294
2349
  indicatorToolip: "Key mapping: {name}"
@@ -2436,7 +2491,25 @@ fleet:
2436
2491
  notReady: Not Ready
2437
2492
  waitApplied: Wait Applied
2438
2493
  gitRepo:
2439
- createLocalBanner: When deploying a Git Repo to the Local workspace you are unable to target any specific Cluster or Cluster Groups
2494
+ actions:
2495
+ forceUpdate:
2496
+ label: Force Update
2497
+ promptTitle: Force Update
2498
+ promptNames: 'You are attempting to update: '
2499
+ promptWarning: |-
2500
+ {
2501
+ count, plural,
2502
+ =1 {Force update could be a long running process, the repository will be cloned again.}
2503
+ other {Force update could be a long running process, the repositories will be cloned again.}
2504
+ }
2505
+ enablePolling:
2506
+ label: Enable Polling
2507
+ disablePolling:
2508
+ label: Disable Polling
2509
+ unpause:
2510
+ label: Unpause
2511
+ pause:
2512
+ label: Pause
2440
2513
  tabs:
2441
2514
  resources: Resources
2442
2515
  unready: Non-Ready
@@ -2462,19 +2535,38 @@ fleet:
2462
2535
  noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
2463
2536
  resources:
2464
2537
  label: 'Resource Handling'
2465
- keepResources: Always Keep Resources
2538
+ keepResources: Always keep resources
2466
2539
  keepResourcesTooltip: When enabled, resources will be kept when deleting a GitRepo or Bundle - only Helm release secrets will be deleted.
2467
- correctDrift: Enable Self-Healing
2540
+ correctDrift: Enable self-healing
2468
2541
  correctDriftTooltip: When enabled, Fleet will ensure that the cluster resources are kept in sync with the git repository. All resource changes made on the cluster will be lost.
2542
+ polling:
2543
+ label: Polling
2544
+ enable: Enable Polling
2545
+ pollingInterval:
2546
+ label: Polling Interval
2547
+ tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
2548
+ webhookWarning: A webhook is configured in Rancher to reconcile Git updates and GitRepo resources. The Polling Interval will automatically be adjusted to 1 hour.
2549
+ minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with GitRepos that contain a large amount of resources please consider increasing this value.
2469
2550
  add:
2470
2551
  steps:
2471
- repoInfo:
2472
- label: Repository Details
2552
+ metadata:
2553
+ label: Metadata
2554
+ title: Specify the Git Repository name and labels/annotations
2555
+ subtext: 'Define metadata details'
2556
+ description: Git repository basic info
2557
+ repo:
2558
+ label: Repository details
2473
2559
  title: Specify the Git Repository to add to fleet
2474
2560
  subtext: 'Define repository details'
2475
2561
  description: Fleet will continuously monitor the Git Repository you configure below and synchronise the resources contained in it to the configured targets.
2562
+ advanced:
2563
+ label: Advanced
2564
+ title: Specify advanced settings like authenticaion credentials and polling
2565
+ subtext: 'Define advanced settings'
2566
+ description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
2567
+ info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
2476
2568
  targetInfo:
2477
- label: Target Details
2569
+ label: Target details
2478
2570
  title: Specify which target to synchronise this repository to
2479
2571
  subtext: 'Define target details'
2480
2572
  description: You can configure which clusters will be used as the target of synchronisation with the resources in the repository.
@@ -2542,6 +2634,8 @@ fleet:
2542
2634
  tabs:
2543
2635
  restrictions: Allowed Target Namespaces
2544
2636
  timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
2637
+ remove:
2638
+ warning: "Deleting a Workspace also deletes all resources in the Workspace. This includes GitRepos but also Clusters.<br><br>Deleted Clusters will be removed from {vendor}, and if {vendor} manages the life-cycle of the Cluster it's underlying infrastructure will also be deleted."
2545
2639
  restrictions:
2546
2640
  addTitle: 'allowedTargetNamespaces'
2547
2641
  addLabel: Add
@@ -2624,6 +2718,8 @@ glance:
2624
2718
  secretsTable: Full secrets list
2625
2719
 
2626
2720
  clusterBadge:
2721
+ badgeAppearance: Cluster Badge Appearance
2722
+ clusterComment: "Cluster comment - {text}"
2627
2723
  customizeAppearance: Customize Appearance
2628
2724
  addLabel: Add Cluster Badge
2629
2725
  setClusterAppearance: Cluster Appearance
@@ -3068,8 +3164,8 @@ landing:
3068
3164
  other {cores}}
3069
3165
  cpuUsed: CPU Used
3070
3166
  memoryUsed: Memory Used
3071
- seeWhatsNew: Learn more about the improvements and new capabilities in this version and read about the UI framework migration in 2.10
3072
- whatsNewLink: "What's new in 2.10"
3167
+ seeWhatsNew: Learn more about the improvements and new capabilities in {version}
3168
+ whatsNewLink: "What's new in {version}"
3073
3169
  learnMore: Learn More
3074
3170
  support: Support
3075
3171
  community:
@@ -3083,6 +3179,7 @@ landing:
3083
3179
  title: You can change what you see when you login via preferences
3084
3180
  userPrefs: Preferences
3085
3181
  body: "You can change where you land when you login"
3182
+ ariaLabelTakeMeToCluster: Select which cluster to take me to after login
3086
3183
  options:
3087
3184
  homePage: Take me to the home page
3088
3185
  lastVisited: Take me to the area I last visited
@@ -3389,7 +3486,9 @@ login:
3389
3486
  invalidSamlAttrs: "Invalid saml attributes"
3390
3487
  noResponse: "No response received"
3391
3488
  error: An error occurred logging in. Please try again.
3489
+ invalidResponseError: Invalid response received to login request. Please try again.
3392
3490
  clientError: Invalid username or password. Please try again.
3491
+ userUnauthorized: You are not authorized to use this system.
3393
3492
  specificError: 'An error occurred logging in: {msg}'
3394
3493
  useLocal: Use a local user
3395
3494
  loginWithProvider: Log in with {provider}
@@ -3415,6 +3514,7 @@ managementNode:
3415
3514
 
3416
3515
  members:
3417
3516
  clusterMembers: Cluster Members
3517
+ memberRoles: Member Roles
3418
3518
  clusterAndProject: Cluster and Project Members
3419
3519
  createActionLabel: Add
3420
3520
  clusterMembership: Cluster Membership
@@ -4376,6 +4476,7 @@ inactivity:
4376
4476
 
4377
4477
  # Rancher Extensions
4378
4478
  plugins:
4479
+ altIcon: Icon for {extension} extension card
4379
4480
  incompatibleRancherVersion: "The latest version of this extension ({ version }) is not compatible with the current Rancher version ({ required })."
4380
4481
  incompatibleKubeVersion: "The latest version of this extension ({ version }) is not compatible with the current Kube version ({ required })."
4381
4482
  incompatibleUiExtensionsApiVersionMissing: 'The latest version of this extension ({ version }) is missing the mandatory annotation catalog.cattle.io/ui-extensions-version from Rancher 2.10 and onwards.'
@@ -4484,6 +4585,7 @@ plugins:
4484
4585
  tabs:
4485
4586
  all: All
4486
4587
  available: Available
4588
+ builtin: Built-in
4487
4589
  images: Images
4488
4590
  installed: Installed
4489
4591
  updates: Updates
@@ -4711,6 +4813,7 @@ projectMembers:
4711
4813
  workloadsView: View Workloads
4712
4814
 
4713
4815
  projectNamespaces:
4816
+ tableActionsLabel: More actions for project { resource }
4714
4817
  createNamespace: Create Namespace
4715
4818
  createProject: Create Project
4716
4819
  label: Projects/Namespaces
@@ -5036,6 +5139,7 @@ resourceDetail:
5036
5139
  view: "{subtype} {name}"
5037
5140
  masthead:
5038
5141
  age: Age
5142
+ createdBy: Created by
5039
5143
  restartCount: Pod Restarts
5040
5144
  defaultBannerMessage:
5041
5145
  error: This resource is currently in an error state, but there isn't a detailed message available.
@@ -5386,6 +5490,10 @@ setup:
5386
5490
  welcome: Welcome to {vendor}!
5387
5491
 
5388
5492
  sortableTable:
5493
+ genericGroupCheckbox: Table group selection checkbox
5494
+ genericRowCheckbox: Table row selection checkbox for item {item}
5495
+ tableActionsLabel: More actions - { resource }
5496
+ tableActionsImgAlt: More actions icon
5389
5497
  bulkActions:
5390
5498
  collapsed:
5391
5499
  label: Actions
@@ -6200,6 +6308,10 @@ wm:
6200
6308
  disconnected: Disconnected
6201
6309
  error: Error
6202
6310
  containerLogs:
6311
+ options: Additional container logs options
6312
+ expand: Expand additional container logs options
6313
+ searchLogs: Search/filter logs
6314
+ logActionMenu: Logs action menu
6203
6315
  clear: Clear
6204
6316
  containerName: "Container: {label}"
6205
6317
  download: Download
@@ -6226,6 +6338,10 @@ wm:
6226
6338
  timestamps: Show Timestamps
6227
6339
  wrap: Wrap Lines
6228
6340
  containerShell:
6341
+ resizeShellWindow: Resize Shell window - use arrow keys {arrow1} and {arrow2} to resize with keyboard
6342
+ tabIcon: Shell tab icon
6343
+ closeShellTab: Close Shell tab - {tab}
6344
+ escapeText: Press Shift+Escape to blur from terminal
6229
6345
  clear: Clear
6230
6346
  containerName: "Container: {label}"
6231
6347
  failed: "Unable to open a shell to the container (none of the shell commands succeeded)\n\r"
@@ -7498,6 +7614,7 @@ advancedSettings:
7498
7614
  none: None
7499
7615
  modified: Modified
7500
7616
  edit:
7617
+ moreActions: More actions for setting - { setting }
7501
7618
  label: Edit Setting
7502
7619
  changeSetting: "Change Setting:"
7503
7620
  trueOption: "True"
@@ -7536,6 +7653,7 @@ advancedSettings:
7536
7653
  'hide-local-cluster': Hide the local cluster
7537
7654
  'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
7538
7655
  'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported K3s or RKE2 clusters.
7656
+ 'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
7539
7657
  warnings:
7540
7658
  'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
7541
7659
  editHelp:
@@ -7559,6 +7677,8 @@ advancedSettings:
7559
7677
  'agent-tls-mode':
7560
7678
  strict: 'Strict'
7561
7679
  system-store: 'System Store'
7680
+ provisioning:
7681
+ header: Cluster provisioning
7562
7682
 
7563
7683
  featureFlags:
7564
7684
  label: Feature Flags
@@ -7578,8 +7698,7 @@ featureFlags:
7578
7698
  performance:
7579
7699
  label: UI Performance Settings
7580
7700
  settingName: Performance
7581
- experimental: This setting is experimental and may be removed or updated in future versions.
7582
- deprecatedForSSP: The <i class="mr-5">"{setting}"</i> setting is now deprecated and will be removed in a future release. Please use the <a href="#ssp-setting" class="ml-5 mr-5">Server-side Pagination</a> setting instead.
7701
+ deprecatedForSSP: The <i class="mr-5">"{setting}"</i> setting is now deprecated and will be removed in a future release.
7583
7702
  incrementalLoad:
7584
7703
  label: Incremental Loading
7585
7704
  setting: You can configure the threshold above which incremental loading will be used.
@@ -7643,13 +7762,13 @@ performance:
7643
7762
  label: Server-side Pagination
7644
7763
  description: By default Lists will fetch all resources and paginate in the browser (create the page given sorting and filtering settings). Change this setting to enable pagination server-side. This should help the responsiveness of the UI in systems with a lot of resources.
7645
7764
  checkboxLabel: Enable Server-side Pagination
7646
- applicable: "This applies to the following resource types"
7765
+ applicable: "Server-side pagination applies to Resource Types"
7647
7766
  incompatibleDescription: "Server-side Pagination is incompatible with Manual Refresh and Incremental Loading. Enabling this will disable them."
7648
7767
  featureFlag: The&nbsp;<a href="{ffUrl}">Feature Flag</a>&nbsp;`ui-sql-cache` must be enabled to use this feature
7649
7768
  resources:
7650
7769
  generic: most resources in the cluster's 'More Resources' section
7651
7770
  all: All Resources
7652
- populateDefaults: Populate with latest pagination defaults
7771
+ experimental: This setting is experimental and may be removed or updated in future versions. We do not recommend enabling this setting in production environments.
7653
7772
  banner:
7654
7773
  label: Fixed Banners
7655
7774
  settingName: Banners
@@ -7687,6 +7806,7 @@ branding:
7687
7806
  label: Branding
7688
7807
  directoryName: Brand Asset Directory Name
7689
7808
  logos:
7809
+ home: Product main page
7690
7810
  label: Logo
7691
7811
  tip: 'Upload a logo to replace the Rancher logo in the top-level navigation header. Image height should be 21 pixels with a max width of 200 pixels. Max file size is 20KB. Accepted formats: JPEG, PNG, SVG.'
7692
7812
  lightPreview: Light Theme Preview