@rancher/shell 0.5.3 → 2.0.0

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 (581) hide show
  1. package/assets/data/aws-regions.json +9 -0
  2. package/assets/images/vendor/openid.svg +18 -0
  3. package/assets/styles/app.scss +1 -2
  4. package/assets/styles/fonts/_icons.scss +3 -3
  5. package/assets/styles/global/_columns.scss +1 -1
  6. package/assets/styles/global/_labeled-input.scss +2 -0
  7. package/assets/styles/themes/_csp.scss +2 -2
  8. package/assets/styles/themes/_dark.scss +8 -2
  9. package/assets/styles/themes/_light.scss +2 -1
  10. package/assets/styles/themes/_suse.scss +1 -1
  11. package/assets/styles/vendor/vue-select.scss +5 -0
  12. package/assets/translations/en-us.yaml +296 -58
  13. package/assets/translations/zh-hans.yaml +5 -27
  14. package/babel.config.js +1 -1
  15. package/chart/__tests__/S3.test.ts +9 -2
  16. package/chart/monitoring/grafana/index.vue +6 -2
  17. package/chart/monitoring/prometheus/index.vue +2 -2
  18. package/chart/rancher-backup/S3.vue +11 -9
  19. package/chart/rancher-backup/index.vue +15 -5
  20. package/cloud-credential/__tests__/harvester.test.ts +18 -0
  21. package/cloud-credential/generic.vue +18 -9
  22. package/cloud-credential/harvester.vue +11 -3
  23. package/components/AppModal.vue +167 -0
  24. package/components/AssignTo.vue +7 -4
  25. package/components/AsyncButton.vue +18 -5
  26. package/components/BackLink.vue +4 -4
  27. package/components/BannerGraphic.vue +1 -0
  28. package/components/BrandImage.vue +47 -1
  29. package/components/Carousel.vue +14 -8
  30. package/components/Certificates.vue +8 -11
  31. package/components/ClusterBadge.vue +12 -3
  32. package/components/ClusterIconMenu.vue +44 -16
  33. package/components/ClusterProviderIcon.vue +14 -3
  34. package/components/CodeMirror.vue +73 -38
  35. package/components/CommunityLinks.vue +12 -8
  36. package/components/CreateDriver.vue +81 -0
  37. package/components/CruResource.vue +51 -27
  38. package/components/DetailTop.vue +2 -2
  39. package/components/Dialog.vue +6 -5
  40. package/components/DisableAuthProviderModal.vue +14 -8
  41. package/components/DraggableZone.vue +2 -2
  42. package/components/ExplorerMembers.vue +3 -3
  43. package/components/ExplorerProjectsNamespaces.vue +6 -6
  44. package/components/FixedBanner.vue +47 -36
  45. package/components/GlobalRoleBindings.vue +26 -0
  46. package/components/Import.vue +10 -6
  47. package/components/Inactivity.vue +1 -5
  48. package/components/KeyValueView.vue +14 -10
  49. package/components/MessageLink.vue +2 -2
  50. package/components/ModalWithCard.vue +5 -8
  51. package/components/MoveModal.vue +35 -33
  52. package/components/PodSecurityAdmission.vue +3 -3
  53. package/components/PromptChangePassword.vue +33 -33
  54. package/components/PromptModal.vue +11 -21
  55. package/components/PromptRemove.vue +11 -17
  56. package/components/PromptRestore.vue +18 -16
  57. package/components/Questions/__tests__/Boolean.test.ts +9 -19
  58. package/components/Questions/__tests__/Float.test.ts +9 -19
  59. package/components/Questions/__tests__/Int.test.ts +9 -19
  60. package/components/Questions/__tests__/String.test.ts +9 -19
  61. package/components/Questions/__tests__/Yaml.test.ts +9 -20
  62. package/components/Questions/__tests__/utils/questions-defaults.ts +20 -0
  63. package/components/Questions/index.vue +18 -2
  64. package/components/ResourceCancelModal.vue +34 -29
  65. package/components/ResourceDetail/Masthead.vue +23 -7
  66. package/components/ResourceDetail/index.vue +5 -0
  67. package/components/ResourceList/Masthead.vue +28 -10
  68. package/components/ResourceList/index.vue +65 -14
  69. package/components/ResourceTable.vue +73 -19
  70. package/components/ResourceYaml.vue +1 -0
  71. package/components/SelectIconGrid.vue +3 -3
  72. package/components/SideNav.vue +15 -37
  73. package/components/SingleClusterInfo.vue +4 -4
  74. package/components/SortableTable/THead.vue +26 -12
  75. package/components/SortableTable/filtering.js +9 -1
  76. package/components/SortableTable/grouping.js +8 -1
  77. package/components/SortableTable/index.vue +142 -42
  78. package/components/SortableTable/paging.js +36 -7
  79. package/components/SortableTable/selection.js +2 -1
  80. package/components/SortableTable/sorting.js +24 -7
  81. package/components/TabTitle.vue +84 -0
  82. package/components/Tabbed/index.vue +6 -1
  83. package/components/TableDataUserIcon.vue +47 -0
  84. package/components/TypeDescription.vue +1 -0
  85. package/components/Wizard.vue +1 -0
  86. package/components/__tests__/AppModal.test.ts +98 -0
  87. package/components/__tests__/AsyncButton.test.ts +1 -3
  88. package/components/__tests__/BackLink.test.ts +1 -1
  89. package/components/__tests__/ButtonGroup.test.ts +3 -6
  90. package/components/__tests__/Carousel.test.ts +43 -0
  91. package/components/__tests__/Certificates.test.ts +29 -0
  92. package/components/__tests__/{CodeMirror.spec.ts → CodeMirror.test.ts} +5 -17
  93. package/components/__tests__/CruResource.test.ts +10 -9
  94. package/components/__tests__/EtcdInfoBanner.test.ts +37 -0
  95. package/components/__tests__/FixedBanner.test.ts +5 -20
  96. package/components/__tests__/NamespaceFilter.test.ts +9 -18
  97. package/components/__tests__/TabTitle.test.ts +129 -0
  98. package/components/auth/AzureWarning.vue +2 -2
  99. package/components/auth/RoleDetailEdit.vue +10 -0
  100. package/components/auth/__tests__/RoleDetailEdit.test.ts +3 -2
  101. package/components/auth/login/oidc.vue +7 -1
  102. package/components/fleet/FleetClusters.vue +9 -9
  103. package/components/fleet/FleetIntro.vue +11 -17
  104. package/components/fleet/FleetNoWorkspaces.vue +2 -2
  105. package/components/fleet/FleetRepos.vue +1 -0
  106. package/components/fleet/ForceDirectedTreeChart/index.vue +9 -3
  107. package/components/form/ArrayList.vue +30 -19
  108. package/components/form/ArrayListSelect.vue +9 -4
  109. package/components/form/ClusterAppearance.vue +132 -0
  110. package/components/form/ColorInput.vue +1 -0
  111. package/components/form/Error.vue +3 -3
  112. package/components/form/Footer.vue +2 -2
  113. package/components/form/GitPicker.vue +83 -38
  114. package/components/form/KeyValue.vue +67 -48
  115. package/components/form/LabeledSelect.vue +143 -43
  116. package/components/form/Labels.vue +3 -1
  117. package/components/form/NameNsDescription.vue +26 -9
  118. package/components/form/ResourceLabeledSelect.vue +187 -0
  119. package/components/form/ResourceTabs/index.vue +31 -15
  120. package/components/form/SecretSelector.vue +93 -18
  121. package/components/form/Select.vue +1 -1
  122. package/components/form/SelectOrCreateAuthSecret.vue +135 -62
  123. package/components/form/SimpleSecretSelector.vue +88 -28
  124. package/components/form/__tests__/BannerSettings.test.ts +53 -0
  125. package/components/form/__tests__/KeyValue.test.ts +121 -12
  126. package/components/form/__tests__/LabeledSelect.test.ts +0 -18
  127. package/components/form/__tests__/NameNsDescription.test.ts +25 -15
  128. package/components/form/labeled-select-utils/labeled-select-pagination.ts +151 -0
  129. package/components/form/labeled-select-utils/labeled-select.utils.ts +122 -0
  130. package/components/formatter/AppSummaryGraph.vue +2 -2
  131. package/components/formatter/CloudCredPublicData.vue +30 -0
  132. package/components/formatter/ClusterLink.vue +2 -2
  133. package/components/formatter/FleetSummaryGraph.vue +2 -1
  134. package/components/formatter/ImagePercentageBar.vue +0 -4
  135. package/components/formatter/IngressTarget.vue +18 -7
  136. package/components/formatter/Link.vue +2 -2
  137. package/components/formatter/LinkDetail.vue +2 -2
  138. package/components/formatter/LinkDetailImage.vue +2 -2
  139. package/components/formatter/LinkName.vue +2 -2
  140. package/components/formatter/LiveDate.vue +16 -0
  141. package/components/formatter/PrincipalGroupBindings.vue +2 -2
  142. package/components/formatter/SecretType.vue +2 -2
  143. package/components/formatter/VirtualServiceGateways.vue +2 -2
  144. package/components/formatter/__tests__/LinkDetail.test.ts +5 -5
  145. package/components/nav/Group.vue +7 -5
  146. package/components/nav/Header.vue +82 -43
  147. package/components/nav/NamespaceFilter.vue +8 -1
  148. package/components/nav/TopLevelMenu.vue +336 -125
  149. package/components/nav/Type.vue +58 -102
  150. package/components/nav/__tests__/TopLevelMenu.test.ts +370 -9
  151. package/components/nav/__tests__/Type.test.ts +321 -126
  152. package/components/nuxt/nuxt-child.js +0 -5
  153. package/components/nuxt/nuxt-error.vue +1 -1
  154. package/components/nuxt/nuxt-link.client.js +13 -95
  155. package/components/templates/default.vue +3 -3
  156. package/components/templates/error.vue +6 -10
  157. package/components/templates/standalone.vue +0 -4
  158. package/components/templates/unauthenticated.vue +1 -2
  159. package/components/user.retention/user-retention-header.vue +34 -0
  160. package/composables/useCompactInput.test.ts +36 -0
  161. package/composables/useCompactInput.ts +2 -2
  162. package/composables/useI18n.ts +26 -0
  163. package/composables/useLabeledFormElement.test.ts +135 -0
  164. package/composables/useStore.ts +16 -0
  165. package/config/home-links.js +32 -1
  166. package/config/labels-annotations.js +2 -1
  167. package/config/middleware.js +0 -6
  168. package/config/pagination-table-headers.js +57 -0
  169. package/config/pod-security-admission.ts +1 -1
  170. package/config/private-label.js +1 -3
  171. package/config/product/auth.js +1 -0
  172. package/config/product/explorer.js +167 -46
  173. package/config/product/legacy.js +3 -95
  174. package/config/product/manager.js +44 -11
  175. package/config/query-params.js +1 -0
  176. package/config/roles.ts +23 -0
  177. package/config/router/index.js +23 -0
  178. package/config/router/navigation-guards/attempt-first-login.js +73 -0
  179. package/config/router/navigation-guards/authentication.js +63 -0
  180. package/config/router/navigation-guards/index.js +15 -0
  181. package/config/router/navigation-guards/load-initial-settings.js +15 -0
  182. package/config/router/routes.js +487 -0
  183. package/config/settings.ts +38 -2
  184. package/config/store.js +7 -3
  185. package/config/table-headers.js +46 -1
  186. package/config/types.js +36 -16
  187. package/config/uiplugins.js +10 -5
  188. package/core/plugin-helpers.js +1 -1
  189. package/core/plugin.ts +2 -1
  190. package/core/plugins.js +289 -282
  191. package/creators/app/files/.eslintignore +0 -2
  192. package/creators/app/files/.vscode/settings.json +0 -1
  193. package/creators/pkg/files/.github/workflows/build-extension-catalog.yml +2 -6
  194. package/creators/pkg/files/.github/workflows/build-extension-charts.yml +2 -6
  195. package/creators/pkg/init +32 -0
  196. package/detail/__tests__/service.test.ts +62 -0
  197. package/detail/catalog.cattle.io.app.vue +1 -1
  198. package/detail/cis.cattle.io.clusterscan.vue +14 -3
  199. package/detail/fleet.cattle.io.gitrepo.vue +15 -9
  200. package/detail/namespace.vue +2 -2
  201. package/detail/networking.k8s.io.ingress.vue +52 -19
  202. package/detail/node.vue +20 -43
  203. package/detail/pod.vue +1 -68
  204. package/detail/provisioning.cattle.io.cluster.vue +2 -1
  205. package/detail/service.vue +1 -1
  206. package/detail/workload/index.vue +2 -15
  207. package/dialog/AddCustomBadgeDialog.vue +318 -161
  208. package/dialog/DeactivateDriverDialog.vue +118 -0
  209. package/dialog/RollbackWorkloadDialog.vue +2 -2
  210. package/dialog/RotateCertificatesDialog.vue +0 -21
  211. package/directives/clean-html.js +15 -0
  212. package/directives/clean-tooltip.js +32 -0
  213. package/directives/focus.js +41 -0
  214. package/directives/int-number.js +21 -0
  215. package/directives/positive-int-number.js +19 -0
  216. package/directives/trim-whitespace.js +19 -0
  217. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +3 -2
  218. package/edit/__tests__/kontainerDriver.test.ts +107 -0
  219. package/edit/__tests__/management.cattle.io.clusterroletemplatebinding.test.ts +12 -1
  220. package/edit/__tests__/management.cattle.io.setting.test.ts +2 -1
  221. package/edit/__tests__/monitoring.coreos.com.prometheusrule.test.ts +2 -3
  222. package/edit/__tests__/nodeDriver.test.ts +107 -0
  223. package/edit/__tests__/service.test.ts +1 -5
  224. package/edit/__tests__/ui.cattle.io.navlink.test.ts +3 -1
  225. package/edit/auth/AuthProviderWarningBanners.vue +34 -0
  226. package/edit/auth/__tests__/AuthProviderWarningBanners.test.ts +19 -0
  227. package/edit/auth/__tests__/azuread.test.ts +241 -0
  228. package/edit/auth/__tests__/oidc.test.ts +137 -0
  229. package/edit/auth/azuread.vue +133 -31
  230. package/edit/auth/github.vue +5 -17
  231. package/edit/auth/googleoauth.vue +5 -18
  232. package/edit/auth/ldap/index.vue +5 -17
  233. package/edit/auth/oidc.vue +143 -42
  234. package/edit/auth/saml.vue +5 -14
  235. package/edit/catalog.cattle.io.clusterrepo.vue +175 -20
  236. package/edit/cis.cattle.io.clusterscan.vue +5 -2
  237. package/edit/cis.cattle.io.clusterscanbenchmark.vue +41 -9
  238. package/edit/cloudcredential.vue +26 -4
  239. package/edit/configmap.vue +10 -4
  240. package/edit/fleet.cattle.io.gitrepo.vue +7 -4
  241. package/edit/helm.cattle.io.projecthelmchart.vue +29 -19
  242. package/edit/kontainerDriver.vue +65 -0
  243. package/edit/logging-flow/Match.vue +10 -9
  244. package/edit/logging-flow/index.vue +4 -19
  245. package/edit/logging.banzaicloud.io.output/__tests__/logging.banzaicloud.io.output.test.ts +232 -2
  246. package/edit/logging.banzaicloud.io.output/index.vue +43 -26
  247. package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +3 -3
  248. package/edit/management.cattle.io.project.vue +2 -1
  249. package/edit/management.cattle.io.setting.vue +20 -0
  250. package/edit/management.cattle.io.user.vue +2 -1
  251. package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +10 -7
  252. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +21 -16
  253. package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +1 -0
  254. package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +3 -0
  255. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +2 -0
  256. package/edit/monitoring.coreos.com.prometheusrule/RecordingRule.vue +2 -0
  257. package/edit/monitoring.coreos.com.prometheusrule/index.vue +2 -0
  258. package/edit/networking.k8s.io.ingress/Rules.vue +8 -3
  259. package/edit/networking.k8s.io.ingress/index.vue +64 -8
  260. package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +1 -0
  261. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +6 -2
  262. package/edit/networking.k8s.io.networkpolicy/__tests__/{PolicyRuleTarget.spec.ts → PolicyRuleTarget.test.ts} +45 -6
  263. package/edit/networking.k8s.io.networkpolicy/__tests__/utils/selectors.test.ts +1 -1
  264. package/edit/networking.k8s.io.networkpolicy/index.vue +2 -0
  265. package/edit/nodeDriver.vue +65 -0
  266. package/edit/persistentvolume/index.vue +2 -2
  267. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +18 -9
  268. package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +165 -1
  269. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +1 -1
  270. package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.test.ts +0 -3
  271. package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +228 -0
  272. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +70 -12
  273. package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +5 -0
  274. package/edit/provisioning.cattle.io.cluster/import.vue +2 -2
  275. package/edit/provisioning.cattle.io.cluster/index.vue +21 -15
  276. package/edit/provisioning.cattle.io.cluster/rke2.vue +185 -114
  277. package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +67 -7
  278. package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +19 -6
  279. package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +132 -0
  280. package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +7 -0
  281. package/edit/provisioning.cattle.io.cluster/tabs/etcd/S3Config.vue +1 -0
  282. package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +1 -0
  283. package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryConfigs.vue +3 -0
  284. package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +1 -0
  285. package/edit/resources.cattle.io.backup.vue +139 -124
  286. package/edit/resources.cattle.io.restore.vue +146 -126
  287. package/edit/service.vue +1 -0
  288. package/edit/serviceaccount.vue +46 -4
  289. package/edit/workload/__tests__/Job.test.ts +1 -3
  290. package/edit/workload/__tests__/Upgrading.test.ts +2 -2
  291. package/edit/workload/mixins/workload.js +34 -1
  292. package/edit/workload/storage/emptyDir.vue +2 -2
  293. package/initialize/App.vue +75 -0
  294. package/initialize/app-extended.js +128 -0
  295. package/initialize/entry-helpers.js +549 -0
  296. package/initialize/entry.js +32 -0
  297. package/initialize/install-components.js +23 -0
  298. package/initialize/install-directives.js +59 -0
  299. package/initialize/install-plugins.js +123 -0
  300. package/list/__tests__/workload.test.ts +1 -1
  301. package/list/cis.cattle.io.clusterscan.vue +16 -10
  302. package/list/group.principal.vue +2 -2
  303. package/list/management.cattle.io.feature.vue +11 -7
  304. package/list/management.cattle.io.user.vue +36 -3
  305. package/list/networking.k8s.io.ingress.vue +36 -0
  306. package/list/node.vue +211 -73
  307. package/list/provisioning.cattle.io.cluster.vue +17 -4
  308. package/list/ui.cattle.io.navlink.vue +2 -2
  309. package/list/workload.vue +22 -0
  310. package/machine-config/__tests__/vmwarevsphere-pool-config-merge.test.ts +30 -0
  311. package/machine-config/__tests__/vmwarevsphere.test.ts +162 -59
  312. package/machine-config/amazonec2.vue +1 -1
  313. package/machine-config/azure.vue +38 -21
  314. package/machine-config/generic.vue +11 -15
  315. package/machine-config/vmwarevsphere-pool-config-merge.ts +25 -0
  316. package/machine-config/vmwarevsphere.vue +20 -11
  317. package/middleware/authenticated.js +9 -361
  318. package/mixins/__tests__/chart.test.ts +48 -6
  319. package/mixins/__tests__/create-edit-view.test.ts +2 -3
  320. package/mixins/auth-config.js +3 -2
  321. package/mixins/brand.js +75 -57
  322. package/mixins/chart.js +27 -13
  323. package/mixins/create-edit-view/index.js +2 -2
  324. package/mixins/fetch.client.js +42 -48
  325. package/mixins/labeled-form-element.ts +21 -1
  326. package/mixins/page-actions.js +7 -5
  327. package/mixins/resource-fetch-api-pagination.js +304 -0
  328. package/mixins/resource-fetch-namespaced.js +1 -1
  329. package/mixins/resource-fetch.js +46 -5
  330. package/models/__tests__/cluster.test.ts +44 -0
  331. package/models/__tests__/fleet.cattle.io.cluster.test.ts +36 -0
  332. package/models/__tests__/schema.tests.ts +24 -0
  333. package/models/__tests__/steve-schema.test.ts +73 -0
  334. package/models/__tests__/workload.test.ts +1 -1
  335. package/models/catalog.cattle.io.app.js +8 -0
  336. package/models/catalog.cattle.io.clusterrepo.js +9 -1
  337. package/models/catalog.cattle.io.uiplugin.js +7 -8
  338. package/models/cis.cattle.io.clusterscan.js +29 -8
  339. package/models/cloudcredential.js +9 -1
  340. package/models/cluster/node.js +4 -0
  341. package/models/cluster/schema.js +6 -0
  342. package/models/cluster.js +33 -0
  343. package/models/driver.js +62 -0
  344. package/models/fleet.cattle.io.cluster.js +23 -11
  345. package/models/fleet.cattle.io.gitrepo.js +10 -0
  346. package/models/helm.cattle.io.projecthelmchart.js +1 -1
  347. package/models/kontainerdriver.js +68 -0
  348. package/models/management/schema.js +6 -0
  349. package/models/management.cattle.io.authconfig.js +3 -2
  350. package/models/management.cattle.io.cluster.js +5 -4
  351. package/models/management.cattle.io.globalrole.js +2 -0
  352. package/models/management.cattle.io.user.js +67 -2
  353. package/models/monitoring.coreos.com.receiver.js +3 -1
  354. package/models/monitoring.coreos.com.route.js +1 -1
  355. package/models/networking.k8s.io.ingress.js +2 -1
  356. package/models/nodedriver.js +68 -0
  357. package/models/provisioning.cattle.io.cluster.js +34 -1
  358. package/models/schema.js +28 -7
  359. package/models/service.js +2 -0
  360. package/models/steve-schema.ts +254 -0
  361. package/models/workload.js +1 -0
  362. package/package.json +6 -5
  363. package/pages/about.vue +12 -5
  364. package/pages/account/index.vue +7 -2
  365. package/pages/auth/login.vue +106 -102
  366. package/pages/auth/logout.vue +2 -2
  367. package/pages/auth/setup.vue +57 -64
  368. package/pages/auth/verify.vue +17 -17
  369. package/pages/c/_cluster/apps/charts/chart.vue +54 -9
  370. package/pages/c/_cluster/apps/charts/index.vue +37 -13
  371. package/pages/c/_cluster/apps/charts/install.vue +4 -4
  372. package/pages/c/_cluster/auth/config/_id.vue +0 -6
  373. package/pages/c/_cluster/auth/config/index.vue +15 -9
  374. package/pages/c/_cluster/auth/roles/index.vue +8 -10
  375. package/pages/c/_cluster/auth/user.retention/index.vue +384 -0
  376. package/pages/c/_cluster/explorer/ConfigBadge.vue +13 -8
  377. package/pages/c/_cluster/explorer/EventsTable.vue +18 -0
  378. package/pages/c/_cluster/explorer/__tests__/index.test.ts +181 -0
  379. package/pages/c/_cluster/explorer/index.vue +231 -72
  380. package/pages/c/_cluster/explorer/tools/__tests__/index.test.ts +69 -0
  381. package/pages/c/_cluster/explorer/tools/index.vue +12 -176
  382. package/pages/c/_cluster/fleet/index.vue +88 -93
  383. package/pages/c/_cluster/longhorn/__tests__/longhorn.index.test.ts +89 -0
  384. package/pages/c/_cluster/longhorn/index.vue +52 -17
  385. package/pages/c/_cluster/manager/cloudCredential/index.vue +18 -25
  386. package/pages/c/_cluster/manager/drivers/kontainerDriver/_id.vue +12 -0
  387. package/pages/c/_cluster/manager/drivers/kontainerDriver/create.vue +15 -0
  388. package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +94 -0
  389. package/pages/c/_cluster/manager/drivers/nodeDriver/_id.vue +12 -0
  390. package/pages/c/_cluster/manager/drivers/nodeDriver/create.vue +15 -0
  391. package/pages/c/_cluster/manager/drivers/nodeDriver/index.vue +63 -0
  392. package/pages/c/_cluster/manager/jwt.authentication/index.vue +235 -0
  393. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +4 -0
  394. package/pages/c/_cluster/monitoring/index.vue +1 -17
  395. package/pages/c/_cluster/monitoring/route-receiver/index.vue +2 -2
  396. package/pages/c/_cluster/neuvector/index.vue +1 -0
  397. package/pages/c/_cluster/settings/DefaultLinksEditor.vue +1 -0
  398. package/pages/c/_cluster/settings/banners.vue +86 -8
  399. package/pages/c/_cluster/settings/brand.vue +258 -36
  400. package/pages/c/_cluster/settings/index.vue +4 -4
  401. package/pages/c/_cluster/settings/links.vue +5 -3
  402. package/pages/c/_cluster/settings/performance.vue +71 -2
  403. package/pages/c/_cluster/uiplugins/AddExtensionRepos.vue +5 -2
  404. package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +10 -7
  405. package/pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue +9 -6
  406. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +11 -5
  407. package/pages/c/_cluster/uiplugins/InstallDialog.vue +53 -18
  408. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +36 -301
  409. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +14 -6
  410. package/pages/c/_cluster/uiplugins/__tests__/SetupUIPlugins.test.ts +52 -106
  411. package/pages/c/_cluster/uiplugins/index.vue +38 -52
  412. package/pages/diagnostic.vue +1 -0
  413. package/pages/fail-whale.vue +103 -41
  414. package/pages/home.vue +81 -24
  415. package/pages/prefs.vue +8 -3
  416. package/pages/support/index.vue +12 -2
  417. package/plugins/clean-html-directive.js +5 -12
  418. package/plugins/clean-tooltip-directive.js +6 -31
  419. package/plugins/codemirror.js +0 -9
  420. package/plugins/dashboard-store/__tests__/mutations.test.ts +296 -313
  421. package/plugins/dashboard-store/actions.js +140 -32
  422. package/plugins/dashboard-store/getters.js +86 -39
  423. package/plugins/dashboard-store/index.js +0 -99
  424. package/plugins/dashboard-store/mutations.js +150 -48
  425. package/plugins/dashboard-store/resource-class.js +14 -109
  426. package/plugins/directives.js +6 -39
  427. package/plugins/ember-cookie.js +13 -0
  428. package/plugins/global-formatters.js +26 -5
  429. package/plugins/i18n.js +90 -56
  430. package/plugins/int-number.js +6 -20
  431. package/plugins/plugin.js +3 -3
  432. package/plugins/positive-int-number.js +6 -17
  433. package/plugins/steve/__tests__/{getters.spec.ts → getters.test.ts} +124 -31
  434. package/plugins/steve/__tests__/mutations.test.ts +49 -0
  435. package/plugins/steve/__tests__/subscribe.spec.ts +109 -0
  436. package/plugins/steve/__tests__/utils/mutation.test.helpers.ts +105 -0
  437. package/plugins/steve/accept-or-reject-socket-message.ts +103 -0
  438. package/plugins/steve/actions.js +0 -1
  439. package/plugins/steve/getters.js +183 -63
  440. package/plugins/steve/hybrid-class.js +5 -1
  441. package/plugins/steve/mutations.js +29 -5
  442. package/plugins/steve/norman-class.js +123 -2
  443. package/{utils → plugins/steve}/projectAndNamespaceFiltering.utils.ts +28 -10
  444. package/plugins/steve/schema.d.ts +22 -0
  445. package/plugins/steve/steve-pagination-utils.ts +368 -0
  446. package/plugins/steve/subscribe.js +37 -75
  447. package/plugins/trim-whitespace.js +6 -34
  448. package/plugins/vue-js-modal.js +1 -1
  449. package/public/index.html +1 -0
  450. package/rancher-components/Accordion/Accordion.vue +3 -2
  451. package/rancher-components/BadgeState/BadgeState.vue +3 -3
  452. package/rancher-components/Banner/Banner.test.ts +1 -5
  453. package/rancher-components/Banner/Banner.vue +2 -2
  454. package/rancher-components/Card/Card.vue +4 -4
  455. package/rancher-components/Form/Checkbox/Checkbox.vue +4 -3
  456. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +1 -1
  457. package/rancher-components/Form/LabeledInput/LabeledInput.vue +66 -30
  458. package/rancher-components/Form/Radio/RadioButton.test.ts +1 -3
  459. package/rancher-components/Form/Radio/RadioButton.vue +13 -7
  460. package/rancher-components/Form/Radio/RadioGroup.vue +4 -3
  461. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +7 -5
  462. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
  463. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
  464. package/rancher-components/StringList/StringList.vue +8 -8
  465. package/rancher-components/components/Accordion/Accordion.vue +3 -2
  466. package/rancher-components/components/BadgeState/BadgeState.vue +3 -3
  467. package/rancher-components/components/Banner/Banner.test.ts +1 -5
  468. package/rancher-components/components/Banner/Banner.vue +2 -2
  469. package/rancher-components/components/Card/Card.vue +4 -4
  470. package/rancher-components/components/Form/Checkbox/Checkbox.vue +4 -3
  471. package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +1 -1
  472. package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +66 -30
  473. package/rancher-components/components/Form/Radio/RadioButton.test.ts +1 -3
  474. package/rancher-components/components/Form/Radio/RadioButton.vue +13 -7
  475. package/rancher-components/components/Form/Radio/RadioGroup.vue +4 -3
  476. package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +7 -5
  477. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
  478. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +9 -4
  479. package/rancher-components/components/StringList/StringList.vue +8 -8
  480. package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +27 -8
  481. package/scripts/clean +1 -1
  482. package/scripts/extension/helm/charts/ui-plugin-server/templates/_helpers.tpl +11 -0
  483. package/scripts/extension/helm/charts/ui-plugin-server/templates/cr.yaml +2 -0
  484. package/scripts/extension/helm/charts/ui-plugin-server/values.yaml +2 -0
  485. package/scripts/extension/helm/package/Dockerfile +1 -1
  486. package/scripts/extension/helm/scripts/patch +27 -0
  487. package/scripts/extension/publish +6 -6
  488. package/scripts/serve-pkgs +0 -2
  489. package/scripts/test-plugins-build.sh +6 -6
  490. package/scripts/vue-migrate.js +683 -0
  491. package/store/__tests__/catalog.test.ts +224 -0
  492. package/store/auth.js +23 -4
  493. package/store/aws.js +53 -6
  494. package/store/catalog.js +21 -5
  495. package/store/cru-resource.ts +26 -0
  496. package/store/customisation.js +35 -0
  497. package/store/features.js +6 -4
  498. package/store/index.js +132 -39
  499. package/store/plugins.js +8 -4
  500. package/store/type-map.js +143 -143
  501. package/store/type-map.utils.ts +226 -0
  502. package/tsconfig.json +0 -1
  503. package/tsconfig.paths.json +4 -1
  504. package/types/components/labeledSelect.ts +50 -0
  505. package/types/resources/settings.d.ts +32 -0
  506. package/types/{userPreferences.d.ts → resources/userPreferences.d.ts} +0 -1
  507. package/types/shell/index.d.ts +996 -782
  508. package/types/store/dashboard-store.types.ts +42 -0
  509. package/types/store/pagination.types.ts +457 -0
  510. package/types/store/type-map.ts +30 -0
  511. package/types/store/vuex.d.ts +9 -0
  512. package/types/vue-shim.d.ts +51 -0
  513. package/utils/__tests__/cluster.test.ts +20 -18
  514. package/utils/__tests__/create-yaml.test.ts +359 -2
  515. package/utils/__tests__/kontainer.test.ts +92 -0
  516. package/utils/__tests__/pod-security-admission.test.ts +1 -1
  517. package/utils/alertmanagerconfig.js +19 -0
  518. package/utils/array.ts +40 -1
  519. package/utils/async.ts +2 -0
  520. package/utils/auth.js +152 -4
  521. package/utils/axios.js +2 -2
  522. package/utils/banners.js +103 -0
  523. package/utils/cluster.js +1 -1
  524. package/utils/config.js +4 -0
  525. package/utils/create-yaml.js +54 -27
  526. package/utils/error.js +25 -0
  527. package/utils/formatter.js +5 -3
  528. package/utils/git.ts +1 -1
  529. package/utils/install-redirect.js +1 -1
  530. package/utils/kontainer.ts +186 -0
  531. package/utils/monitoring.js +2 -37
  532. package/utils/pagination-utils.ts +154 -0
  533. package/utils/pod-security-admission.ts +1 -1
  534. package/utils/router.js +86 -0
  535. package/utils/settings.ts +46 -0
  536. package/utils/socket.js +1 -0
  537. package/utils/time.js +1 -0
  538. package/utils/title.ts +3 -0
  539. package/utils/unit-tests/ChildRenderingRouterLinkStub.ts +36 -0
  540. package/utils/validators/formRules/__tests__/index.test.ts +21 -0
  541. package/utils/validators/formRules/index.ts +3 -0
  542. package/utils/validators/index.js +1 -0
  543. package/vue.config.js +376 -421
  544. package/assets/styles/vendor/vue-js-modal.scss +0 -16
  545. package/chart/monitoring/steps/uninstall-v1.vue +0 -135
  546. package/components/EventsTable.vue +0 -67
  547. package/components/TabbedLinks/index.vue +0 -94
  548. package/components/nuxt/nuxt-link.server.js +0 -16
  549. package/components/nuxt/nuxt.js +0 -101
  550. package/config/router.js +0 -425
  551. package/initialize/App.js +0 -152
  552. package/initialize/client.js +0 -734
  553. package/initialize/index.js +0 -287
  554. package/middleware/i18n.js +0 -10
  555. package/middleware/unauthenticated.js +0 -22
  556. package/mixins/v1-workload-metrics.js +0 -43
  557. package/pages/c/_cluster/apps/index.vue +0 -15
  558. package/pages/c/_cluster/auth/index.vue +0 -17
  559. package/pages/c/_cluster/index.vue +0 -15
  560. package/pages/c/_cluster/legacy/index.vue +0 -22
  561. package/pages/c/_cluster/manager/index.vue +0 -22
  562. package/pages/c/_cluster/mcapps/index.vue +0 -21
  563. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +0 -232
  564. package/plugins/dashboard-store/rehydrate-all.js +0 -44
  565. package/plugins/index.js +0 -11
  566. package/plugins/portal-vue.js +0 -4
  567. package/plugins/portal.js +0 -4
  568. package/plugins/resize.js +0 -5
  569. package/plugins/shortkey.js +0 -4
  570. package/plugins/tooltip.js +0 -4
  571. package/plugins/v-select.js +0 -4
  572. package/utils/group.js +0 -70
  573. package/utils/nuxt.js +0 -638
  574. package/utils/router.scrollBehavior.js +0 -78
  575. /package/components/__tests__/{Collapse.spec.ts → Collapse.test.ts} +0 -0
  576. /package/models/__tests__/{node.ts → node.test.ts} +0 -0
  577. /package/plugins/steve/__tests__/{header-warnings.spec.ts → header-warnings.test.ts} +0 -0
  578. /package/plugins/steve/__tests__/{steve-class.spec.ts → steve-class.test.ts} +0 -0
  579. /package/rancher-components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
  580. /package/rancher-components/components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
  581. /package/types/{pod-security-admission.ts → resources/pod-security-admission.ts} +0 -0
@@ -120,6 +120,7 @@ locale:
120
120
  nav:
121
121
  harvesterDashboard: Harvester Dashboard
122
122
  backToRancher: Cluster Manager
123
+ tools: Tools
123
124
  clusterTools: Cluster Tools
124
125
  kubeconfig:
125
126
  download: Download KubeConfig
@@ -141,6 +142,7 @@ nav:
141
142
  takeSnapshot: Take Snapshot
142
143
  seeAllClusters: See all clusters
143
144
  seeAllClustersCollapsed: See all
145
+ keyComboTooltip: Switch clusters and keep location
144
146
  group:
145
147
  cluster: Cluster
146
148
  inUse: More Resources
@@ -152,10 +154,12 @@ nav:
152
154
  workload: Workloads
153
155
  monitoring: Monitoring
154
156
  advanced: Advanced
157
+ drivers: Drivers
155
158
  RKE1Configuration: RKE1 Configuration
156
159
  admission: Admission
157
160
  apps: Apps
158
161
  clusterProvisioning: Cluster Provisioning
162
+ jwt.authentication: JWT Authentication
159
163
  core: Core
160
164
  legacy: Legacy
161
165
  API: API
@@ -168,6 +172,7 @@ nav:
168
172
  RBAC: RBAC
169
173
  Scheduling: Scheduling
170
174
  Storage: Storage
175
+ Project: Project
171
176
  ns:
172
177
  all: All Namespaces
173
178
  clusterLevel: Only Cluster Resources
@@ -243,6 +248,7 @@ suffix:
243
248
  ib: iB
244
249
  mib: MiB
245
250
  gb: GB
251
+ ago: ago
246
252
  revisions: |-
247
253
  {count, plural,
248
254
  =1 { Revision }
@@ -368,7 +374,7 @@ authConfig:
368
374
  unrestricted: Allow any valid user
369
375
  allowedPrincipalIds:
370
376
  title: Authorized Users & Groups
371
- associatedWarning: 'Note: The {provider} user you authenticate as will be associated as an alternate way to login to the {vendor} user you are currently logged in as <code>{username}</code>; all the global permissions, project, and cluster role bindings of this {vendor} user will also apply to the {provider} user.'
377
+ associatedWarning: 'The {provider} account that is used to enable the external provider will be granted admin permissions. If you use a test account or non-admin account, that account will still be granted admin-level permissions. See <a href="{docsBase}/how-to-guides/new-user-guides/authentication-permissions-and-global-configuration/authentication-config#external-authentication-configuration-and-principal-users" target="_blank" rel="noopener noreferrer nofollow">External Authentication Configuration and Principal Users</a> to understand why.'
372
378
  github:
373
379
  clientId:
374
380
  label: Client ID
@@ -526,12 +532,34 @@ authConfig:
526
532
  show: Show details
527
533
  hide: Hide details
528
534
  azuread:
529
- tenantId: Tenant ID
530
- applicationId: Application ID
531
- endpoint: Endpoint
532
- graphEndpoint: Graph Endpoint
533
- tokenEndpoint: Token Endpoint
534
- authEndpoint: Auth Endpoint
535
+ tenantId:
536
+ label: Tenant ID
537
+ tooltip: From the Azure AD portal
538
+ placeholder: A long UUID string
539
+ applicationId:
540
+ label: Application ID
541
+ placeholder: A long UUID string
542
+ applicationSecret:
543
+ label: Application Secret
544
+ endpoint:
545
+ label: Endpoint
546
+ endpoints:
547
+ label: Endpoints
548
+ standard: Standard
549
+ china: China
550
+ custom: Custom
551
+ graphEndpoint:
552
+ label: Graph Endpoint
553
+ tokenEndpoint:
554
+ label: Token Endpoint
555
+ authEndpoint:
556
+ label: Auth Endpoint
557
+ groupMembershipFilter:
558
+ label: Group Membership Filter
559
+ enable: Limit users by group membership
560
+ tooltip: Limit users by applying a GroupMembershipFilter
561
+ externalHelp: See the OData filter expression documentation for more information.
562
+ externalHelpLink: https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/webservices/use-filter-expressions-in-odata-uris#filter-expressions
535
563
  reply:
536
564
  info: 'Azure AD requires a whitelisted URL for your Rancher server before beginning this setup. Please ensure that the following URL is set in the Reply URL section of your Azure Portal. Please note that it may take up to 5 minutes for the whitelisted URL to propagate.'
537
565
  label: Reply URL
@@ -553,11 +581,21 @@ authConfig:
553
581
  label: Endpoints
554
582
  custom: Specify
555
583
  standard: Generate
584
+ url: URL
585
+ realm: Realm
556
586
  keycloak:
557
587
  url: Keycloak URL
558
588
  realm: Keycloak Realm
559
589
  issuer: Issuer
560
590
  authEndpoint: Auth Endpoint
591
+ jwksUrl: JWKS URL
592
+ tokenEndpoint: Token Endpoint
593
+ userInfoEndpoint: User Info Endpoint
594
+ acrValue: Authorization Context Reference
595
+ scope:
596
+ label: Scopes
597
+ placeholder: openid
598
+ protip: The <code>openid</code> scope is required. If you are using custom scopes, ensure that it is included.
561
599
  cert:
562
600
  label: Certificate
563
601
  placeholder: Paste in the certificate, starting with -----BEGIN CERTIFICATE-----
@@ -773,7 +811,7 @@ backupRestoreOperator:
773
811
  warning: 'This {type} does not have its reclaim policy set to "Retain". Your backups may be lost if the volume is changed or becomes unbound.'
774
812
  encryption: Encryption
775
813
  encryptionConfigName:
776
- backuptip: 'Any secret in the <code>cattle-resources-system</code> namespace that has an <code>encryption-provider-config.yaml</code> key. <br/>The contents of this file are necessary to perform a restore from this backup, and are not stored by Rancher Backup.'
814
+ backuptip: 'Any secret in the <code>{ns}</code> namespace that has an <code>encryption-provider-config.yaml</code> key. <br/>The contents of this file are necessary to perform a restore from this backup, and are not stored by Rancher Backup.'
777
815
  label: Encryption Config Secret
778
816
  options:
779
817
  none: Store the contents of the backup unencrypted
@@ -861,6 +899,9 @@ catalog:
861
899
  errors:
862
900
  clusterToolExists: This chart has a fixed namespace and name. A matching <a href="{url}">application</a> has been found and any changes will be made to it.
863
901
  global: Global
902
+ deprecatedWarning: '{chartName} has been marked as deprecated. Use caution when installing this helm chart as it might be removed in the future.'
903
+ experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
904
+ 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.'
864
905
  charts:
865
906
  all: All
866
907
  categories:
@@ -882,12 +923,21 @@ catalog:
882
923
  linux: Linux
883
924
  windows: Windows
884
925
  search: Filter
926
+ deprecatedChartsFilter:
927
+ label: Show deprecated apps
885
928
  install:
886
929
  action:
887
930
  goToUpgrade: Edit/Upgrade
888
931
  appReadmeMissing: This chart doesn't have any additional chart information.
889
932
  appReadmeTitle: Chart Information (Helm README)
890
933
  chart: Chart
934
+ warning:
935
+ managed:
936
+ Warning, Rancher manages deployment and upgrade of the {name} app. Upgrading this app is not supported.<br>
937
+ {version, select,
938
+ null { }
939
+ other { Under most circumstances, no user intervention should be needed to ensure that the {version} version is compatible with the version of Rancher that you are running.}
940
+ }
891
941
  error:
892
942
  requiresFound: '<a href="{url}">{name}</a> must be installed before you can install this chart.'
893
943
  requiresMissing: 'This chart requires another chart that provides {name}, but none was was found.'
@@ -981,6 +1031,9 @@ catalog:
981
1031
  current: '{ver} (Current)'
982
1032
  linux: '{ver} (Linux-only)'
983
1033
  windows: '{ver} (Windows-only)'
1034
+ delete:
1035
+ warning:
1036
+ managed: Warning, Rancher manages deployment and upgrade of the {name} app. Deleting this app is not supported.
984
1037
  operation:
985
1038
  tableHeaders:
986
1039
  action: Action
@@ -1006,10 +1059,28 @@ catalog:
1006
1059
  target:
1007
1060
  git: Git repository containing Helm chart or cluster template definitions
1008
1061
  http: http(s) URL to an index generated by Helm
1062
+ oci: OCI Repository <span class="oci-experimental-badge text-bold ml-5">Experimental</span>
1009
1063
  label: Target
1010
1064
  url:
1011
1065
  label: Index URL
1012
1066
  placeholder: 'e.g. https://charts.rancher.io'
1067
+ oci:
1068
+ urlLabel: OCI Repository Host URL
1069
+ placeholder: 'e.g. oci://test.azure.io/test-namespace:test-tag'
1070
+ info: For better performance, add OCI URLs that contain ONLY helm charts. For example oci://test.rancher.io/charts or oci://test.rancher.io/charts/mychart. The list of charts available from the repository is updated every 6 hours. Scanning directories with a large number of artifacts may degrade performance considerably.
1071
+ skipTlsVerifications: Skip TLS Verifications
1072
+ insecurePlainHttp: Insecure Plain Http
1073
+ exponentialBackOff:
1074
+ label: Exponential Back Off
1075
+ minWait:
1076
+ label: Min Wait Time (in Seconds)
1077
+ placeholder: 1 (default)
1078
+ maxWait:
1079
+ label: Max Wait Time (in Seconds)
1080
+ placeholder: 5 (default)
1081
+ maxRetries:
1082
+ label: Max Number of Retries
1083
+ placeholder: 5 (default)
1013
1084
  tools:
1014
1085
  header: Cluster Tools
1015
1086
  noTools: "No Cluster Tools found"
@@ -1111,6 +1182,9 @@ cis:
1111
1182
  testsToSkip: Tests to Skip
1112
1183
 
1113
1184
  cluster:
1185
+ jwtAuthentication:
1186
+ banner: "Service Account access with JWT authentication can be configured after cluster creation from <br>
1187
+ <code>Cluster Management > Advanced > JWT Authentication</code>"
1114
1188
  addonChart:
1115
1189
  rancher-vsphere-cpi: vSphere CPI Configuration
1116
1190
  rancher-vsphere-csi: vSphere CSI Configuration
@@ -1220,7 +1294,7 @@ cluster:
1220
1294
  placeholder: Your Client Secret
1221
1295
  name:
1222
1296
  label: Credential Name
1223
- placeholder: Name for this credential (optional)
1297
+ placeholder: Name for this credential
1224
1298
  s3:
1225
1299
  accessKey:
1226
1300
  label: Access Key
@@ -1283,6 +1357,9 @@ cluster:
1283
1357
  networkName: Network Name
1284
1358
  macAddress: Mac Address
1285
1359
  macFormat: 'Invalid MAC address format.'
1360
+ vGpus:
1361
+ errors:
1362
+ notAllocatable: '"VGPUs" not allocatable. There are not enough [{vGpus}] devices to be allocated to each node in machine pool [{pool}]'
1286
1363
  volume:
1287
1364
  title: Volumes
1288
1365
  volume: Volume
@@ -1302,6 +1379,7 @@ cluster:
1302
1379
  placeholder: 'Namespace/Name'
1303
1380
  cluster: Imported Harvester Cluster
1304
1381
  installGuestAgent: Install guest agent
1382
+ tokenExpirationWarning: 'Warning: Harvester Cloud Credentials use an underlying authentication token that may have an expiry time - please see the following <a href="https://harvesterhci.io/kb/renew_harvester_cloud_credentials" target="_blank" rel="noopener nofollow">knowledge base article</a> for possible implications on management operations.'
1305
1383
  description:
1306
1384
  label: Cluster Description
1307
1385
  placeholder: Any text you want that better describes this cluster
@@ -1363,6 +1441,21 @@ cluster:
1363
1441
  name:
1364
1442
  label: Cluster Name
1365
1443
  placeholder: A unique name for the cluster
1444
+ directoryConfig:
1445
+ title: Data directory configuration
1446
+ checkboxText: Use the same path for System-agent, Provisioning and K8s Distro data directories configuration
1447
+ common:
1448
+ label: Data directory configuration path
1449
+ tooltip: Data directory configuration for System-agent, Provisioning and K8s Distro
1450
+ systemAgent:
1451
+ label: System-agent directory path
1452
+ tooltip: Data directory for the system-agent connection info and plans
1453
+ provisioning:
1454
+ label: Provisioning directory path
1455
+ tooltip: Data directory for provisioning related files
1456
+ k8sDistro:
1457
+ label: K8s Distro directory path
1458
+ tooltip: Data directory for the k8s distro
1366
1459
  machineConfig:
1367
1460
  banner:
1368
1461
  updateInfo: Create a new pool to update machine configs
@@ -1393,6 +1486,7 @@ cluster:
1393
1486
  label: DNS Label
1394
1487
  environment:
1395
1488
  label: Environment
1489
+ tooltip: The environment is configured when cloud credentials are created.
1396
1490
  faultDomainCount:
1397
1491
  help: If the availability set has already been created, the fault domain count will be ignored.
1398
1492
  label: Fault Domain Count
@@ -1661,6 +1755,11 @@ cluster:
1661
1755
  advanced:
1662
1756
  argInfo:
1663
1757
  title: Additional Kubelet Args
1758
+ tooltip:
1759
+ mixed-args: Kubelet args are defined both at Global and Machine Selector level.<br> Click on "Add Global Argument" to add them as Global config.
1760
+ global-args: Kubelet args are defined at Global level.<br> Click on "Add Global Argument" to add them as Global config.
1761
+ machineGlobal:
1762
+ listLabel: Add Global Argument
1664
1763
  machineSelector:
1665
1764
  label: Add Machine Selector
1666
1765
  listLabel: Add Argument
@@ -1670,7 +1769,7 @@ cluster:
1670
1769
  titleAlt: |-
1671
1770
  {count, plural,
1672
1771
  =1 { For all machines, use the Kubelet args: }
1673
- other { For any machines, use the Kubelet args: }
1772
+ other { For machines without matched labels below: }
1674
1773
  }
1675
1774
  kubeControllerManagerTitle: Additional Controller Manager Args
1676
1775
  kubeApiServerTitle: Additional API Server Args
@@ -1680,7 +1779,7 @@ cluster:
1680
1779
  banner:
1681
1780
  warning: 'This cluster contains a machineSelectorConfig, which this form does not fully support; use the YAML editor to manage the full configuration.'
1682
1781
  os: 'You are attempting to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
1683
- rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
1782
+ rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a href="{docsBase}/how-to-guides/new-user-guides/launch-kubernetes-with-rancher/rke1-vs-rke2-differences#cluster-api" target="_blank" rel="noopener nofollow">documentation</a>.'
1684
1783
  desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1685
1784
  haveArgInfo: Configuration information is not available for the selected Kubernetes version. The options available on this screen will be limited; you may want to use the YAML editor.
1686
1785
  cloudProviderAddConfig: 'On Kubernetes 1.27 or greater, the Amazon Cloud Provider requires additional configuration. See <a href="https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/kubernetes-clusters-in-rancher-setup/set-up-cloud-providers/amazon" target="_blank" rel="noopener noreferrer nofollow">the documentation</a> for more information.'
@@ -1691,6 +1790,11 @@ cluster:
1691
1790
  }
1692
1791
  rkeTemplateUpgrade: Template revision {name} available for upgrade
1693
1792
 
1793
+ architecture:
1794
+ label:
1795
+ unknown: Unknown
1796
+ mixed: Mixed
1797
+
1694
1798
  availabilityWarnings:
1695
1799
  node: Node {name} is inactive
1696
1800
  machine: Machine {name} is inactive
@@ -2049,6 +2153,8 @@ clusterIndexPage:
2049
2153
  etcd: Etcd
2050
2154
  scheduler: Scheduler
2051
2155
  controller-manager: Controller Manager
2156
+ cattle: Cattle
2157
+ fleet: Fleet
2052
2158
  certs:
2053
2159
  label: Certificates
2054
2160
 
@@ -2081,6 +2187,7 @@ resource:
2081
2187
  codeMirror:
2082
2188
  keymap:
2083
2189
  tooltip: Key mapping preference.
2190
+ indicatorToolip: "Key mapping: {name}"
2084
2191
 
2085
2192
  cruResource:
2086
2193
  backToForm: Back to Form
@@ -2093,6 +2200,33 @@ cruResource:
2093
2200
  previewYaml: Edit as YAML
2094
2201
  showYaml: View as YAML
2095
2202
 
2203
+ drivers:
2204
+ kontainer:
2205
+ title: Cluster Drivers
2206
+ node:
2207
+ title: Node Drivers
2208
+ add:
2209
+ title: Add Driver
2210
+ name:
2211
+ label: Driver name
2212
+ downloadUrl:
2213
+ label: Download URL
2214
+ placeholder: https://test.com/driver
2215
+ tooltip: The URL to download the machine driver binary for 64-bit Linux.
2216
+ customUiUrl:
2217
+ label: Custom UI URL
2218
+ placeholder: https://test.com/ui
2219
+ tooltip: The URL to load for customized Add Nodes screen for this driver. See https://github.com/rancher/ui-driver-skel for more info.
2220
+ checksum:
2221
+ label: Checksum
2222
+ tooltip: Checksum to verify that the downloaded driver matches the expected checksum.
2223
+ whitelist: Whitelist Domains
2224
+ actions:
2225
+ refresh: Refresh Kubernetes Metadata
2226
+ deactivate:
2227
+ title: Are you sure?
2228
+ warning: You will no longer be able to edit the configuration of clusters using {name} driver. Resources in the provider will not be automatically removed.
2229
+
2096
2230
  detailText:
2097
2231
  collapse: Hide
2098
2232
  binary: '<Binary Data: {n, number} bytes>'
@@ -2359,27 +2493,32 @@ glance:
2359
2493
  pods: Pods
2360
2494
  provider: Provider
2361
2495
  version: Kubernetes Version
2496
+ architecture: Architecture
2362
2497
  monitoringDashboard: Monitoring Dashboard
2363
2498
  installMonitoring: Install Monitoring
2364
- v1MonitoringInstalled: V1 Monitoring Installed
2365
2499
  clusterInfo: Cluster Information
2366
2500
  eventsTable: Full events list
2367
2501
  secretsTable: Full secrets list
2368
2502
 
2369
2503
  clusterBadge:
2504
+ customizeAppearance: Customize Appearance
2370
2505
  addLabel: Add Cluster Badge
2506
+ setClusterAppearance: Cluster Appearance
2507
+ customize: Customize
2371
2508
  editLabel: Edit Cluster Badge
2372
2509
  modal:
2373
- title: Custom Cluster Badge
2374
- checkbox: Show badge for this cluster
2375
- description: Custom description
2510
+ title: Cluster Appearance
2511
+ checkbox: Show cluster comment
2512
+ comment: Custom comment
2376
2513
  iconText: Icon Text
2377
2514
  buttonAction: Apply
2378
2515
  badgeBgColor: Badge background color
2379
2516
  badgeTextColor: Badge text color
2380
- badgeAsIcon: Customize cluster icon
2381
- maxCharsTooltip: Maximum two characters
2382
- previewTitle: "Cluster icon and name presentation:"
2517
+ badgeAsIcon: Use custom badge
2518
+ maxCharsTooltip: Overwrites the default cluster name abbreviation.
2519
+ previewTitle: "Preview:"
2520
+ previewSide: "SIDE NAVIGATION"
2521
+ previewHeader: "RANCHER HEADER"
2383
2522
 
2384
2523
  grafanaDashboard:
2385
2524
  failedToLoad: Failed to load graph
@@ -2748,6 +2887,21 @@ istio:
2748
2887
  tracing: Enable Jaeger Tracing (limited)
2749
2888
  v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
2750
2889
 
2890
+ jwt:
2891
+ title: JWT Authentication
2892
+ actions:
2893
+ activate: Enable
2894
+ deactivate: Disable
2895
+ refresh: Refresh
2896
+ state:
2897
+ enabled: Enabled
2898
+ disabled: Disabled
2899
+ headers:
2900
+ clusterName: Cluster Name
2901
+ updatedOn: JWT Enabled On
2902
+ clusterAge: Cluster Age
2903
+
2904
+
2751
2905
  labels:
2752
2906
  addLabel: Add Label
2753
2907
  addSetLabel: Add/Set Label
@@ -2758,16 +2912,25 @@ labels:
2758
2912
  title: Labels
2759
2913
  description: Key/value pairs that are attached to objects which specify identifying attributes.
2760
2914
  fleetClusterTooltip: Label changes are made to the Management Cluster and synchronized to the Fleet Cluster
2761
- show: Show System Label
2762
- hide: Hide System Label
2915
+ show: Show System Labels and Annotations
2916
+ hide: Hide System Labels and Annotations
2763
2917
  annotations:
2764
2918
  title: Annotations
2765
2919
 
2920
+ labelSelect:
2921
+ noOptions:
2922
+ empty: No options
2923
+ noMatch: No matching options
2924
+ pagination:
2925
+ counts: '{count} / {totalCount} items'
2926
+ more: Load More...
2766
2927
  landing:
2767
2928
  clusters:
2768
2929
  title: Clusters
2769
2930
  provider: Provider
2931
+ distro: Distro
2770
2932
  kubernetesVersion: Kubernetes Version
2933
+ architecture: Architecture
2771
2934
  explorer: Explorer
2772
2935
  explore: Explore
2773
2936
  cores: |-
@@ -2827,6 +2990,7 @@ logging:
2827
2990
  include: Limit to specific container names
2828
2991
  exclude: Exclude specific container names
2829
2992
  placeholder: "Default: Any container"
2993
+ enter: Enter container name to select
2830
2994
  namespaces:
2831
2995
  title:
2832
2996
  include: Limit to specific namespaces
@@ -2845,7 +3009,7 @@ logging:
2845
3009
  dockerRootDirectory: Docker Root Directory
2846
3010
  systemdLogPath: systemd Log Path
2847
3011
  tooltip: 'Some kubernetes distributions log to <code>journald</code>. In order to collect these logs the <code>systemdLogPath</code> needs to be defined. While the <code>/run/log/journal</code> directory is used by default, some Linux distributions do not default to this path.'
2848
- url: '<a href="https://ranchermanager.docs.rancher.com/v2.8/integrations-in-rancher/logging/logging-helm-chart-options" target="_blank" rel="noopener nofollow noreferrer">Learn more</a>'
3012
+ url: '<a href="{docsBase}/integrations-in-rancher/logging/logging-helm-chart-options" target="_blank" rel="noopener nofollow noreferrer">Learn more</a>'
2849
3013
  default: /run/log/journal
2850
3014
  elasticsearch:
2851
3015
  host: Host
@@ -3067,6 +3231,7 @@ longhorn:
3067
3231
  label: 'Longhorn'
3068
3232
  description: 'Manage storage system via UI'
3069
3233
  na: Resource Unavailable
3234
+ uiServiceUnavailable: The Longhorn UI service is not available or you do not have permission to access it.
3070
3235
 
3071
3236
  neuvector:
3072
3237
  overview:
@@ -3082,6 +3247,7 @@ login:
3082
3247
  howdy: Howdy!
3083
3248
  welcome: Welcome to {vendor}
3084
3249
  loggedOut: You have been logged out.
3250
+ loggedOutFromSso: You've been logged out of Rancher, however you may still be logged in to your single sign-on identity provider.
3085
3251
  loginAgain: Log in again to continue.
3086
3252
  serverError:
3087
3253
  authFailedCreds: "Logging in failed: Check credentials, or your account may not be authorized to log in."
@@ -3114,7 +3280,7 @@ members:
3114
3280
  clusterMembers: Cluster Members
3115
3281
  clusterAndProject: Cluster and Project Members
3116
3282
  createActionLabel: Add
3117
- clusterMemebership: Cluster Membership
3283
+ clusterMembership: Cluster Membership
3118
3284
  projectMembership: Project Membership
3119
3285
  clusterPermissions:
3120
3286
  noDescription: User created - no description
@@ -3342,15 +3508,6 @@ monitoring:
3342
3508
  bearerTokenSecret: Bearer Token Secret
3343
3509
  basicAuthUsername: Secret with Basic Auth Username
3344
3510
  basicAuthPassword: Secret with Basic Auth Password
3345
- installSteps:
3346
- uninstallV1:
3347
- stepTitle: Uninstall V1
3348
- stepSubtext: Uninstall Previous Monitoring
3349
- warning1: V1 Monitoring is currently deployed. This needs to be uninstalled before V2 monitoring can be installed.
3350
- warning2: <a target="blank" href="{docsBase}/monitoring-alerting/guides/migrating/" target='_blank' rel='noopener nofollow'>Learn more</a> about the migration steps to V2 Monitoring.
3351
- promptDescription: <div class="mt-20 mb-20">You are attempting to uninstall V1 Monitoring. Please ensure you have read the migration steps.</div>
3352
- success1: V1 monitoring successfully uninstalled.
3353
- success2: Press Next to continue
3354
3511
  tabs:
3355
3512
  alerting: Alerting
3356
3513
  general: General
@@ -4097,7 +4254,7 @@ plugins:
4097
4254
  title: Error loading extension
4098
4255
  message: Could not load extension code
4099
4256
  generic: Extension error
4100
- api: This Extension is not compatible with the Extensions API
4257
+ api: This Extension is not compatible with the current Extensions API version
4101
4258
  host: This Extension is not compatible with this application
4102
4259
  version: This Extension is not compatible with this version of Rancher
4103
4260
  load: An error occurred loading the code for this Extension
@@ -4130,6 +4287,7 @@ plugins:
4130
4287
  manageRepos: Manage Repositories
4131
4288
  addRancherRepos: Add Rancher Repositories
4132
4289
  manageCharts: Manage Extension Charts
4290
+ warnNoAuth: This version of the extension will be loaded before authentication and will have access to the login process.
4133
4291
  manageCatalog:
4134
4292
  label: Manage Extension Catalogs
4135
4293
  title: Extension
@@ -4213,17 +4371,17 @@ plugins:
4213
4371
  title: Extension support is not enabled
4214
4372
  prompt:
4215
4373
  cant: Automatic installation is not available - required Helm Charts could not be found
4216
- can: You need to install the Extension Operator
4374
+ can: 'You need to enable the <code>{ff}</code> Feature Flag in Global Settings. Once enabled, Rancher will require a restart.'
4217
4375
  official: The Official Rancher Extensions Repository provides extensions published by Rancher
4218
4376
  partners: The Partners Extensions Repository provides extensions published by Rancher Partners
4219
4377
  community: The Community Extensions Repository provides extensions published by Rancher Community
4220
4378
  install:
4221
4379
  title: Enable Extension Support?
4222
- prompt: This will install the Helm charts needed to enable Extension support
4380
+ prompt: This will lead you to the page where you can enable the Feature Flag needed to enable Extension support.
4381
+ featuresButton: Go to Feature Flags
4223
4382
  airgap: Air-gapped installations should NOT enable this feature
4224
4383
  addRancherRepo: Add Official Rancher Extensions Repository
4225
4384
  addPartnersRancherRepo: Add Partners Extensions Repository
4226
- addCommunityRancherRepo: Add Community Extensions Repository
4227
4385
  remove:
4228
4386
  label: Disable Extension Support
4229
4387
  title: Disable Extension Support?
@@ -4295,11 +4453,11 @@ prefs:
4295
4453
  advFeatures:
4296
4454
  title: Advanced Features
4297
4455
  viewInApi: Enable "View in API"
4298
- allNamespaces: Show system Namespaces managed by Rancher (not intended for editing or deletion)
4456
+ allNamespaces: Show dynamic Namespaces managed by Rancher (not intended for editing or deletion)
4299
4457
  themeShortcut: Enable Dark/Light Theme keyboard shortcut toggle (shift+T)
4300
4458
  pluginDeveloper: Enable Extension developer features
4301
4459
  hideDesc:
4302
- label: Hide All Type Descriptions
4460
+ label: Hide Type Description banners above resource lists
4303
4461
  helm:
4304
4462
  'true': Include Prerelease Versions
4305
4463
  'false': Show Releases Only
@@ -4559,6 +4717,9 @@ rbac:
4559
4717
  label: Grant Resources
4560
4718
  noApiGroupClusterScope: Core K8s API, Cluster Scoped
4561
4719
  noApiGroupNamespaceScope: Core K8s API, Namespaced
4720
+ neuvector:
4721
+ labelClusterScoped: NeuVector, Cluster Scoped
4722
+ labelNamespaceScoped: NeuVector, Namespaced
4562
4723
  deprecatedLabel: (deprecated)
4563
4724
  resourceOptionInfo: The resource options are not a complete list of every resource available in every Rancher-managed Kubernetes cluster. Resources and API groups may need to be manually entered in advanced use cases.
4564
4725
  tableHeaders:
@@ -4741,6 +4902,7 @@ resourceList:
4741
4902
  createFromYaml: Create from YAML
4742
4903
  createResource: "Create {resourceName}"
4743
4904
  nsFiltering: "Please select one or more namespaces or projects using the filter above."
4905
+ nsFilteringGeneric: "Please select a valid namespace or project option using the filter above."
4744
4906
  nsFilterToolTip: "Filtering is restricted to projects and namespaces"
4745
4907
  resourceLoadingIndicator:
4746
4908
  loading: Loading
@@ -4813,7 +4975,6 @@ secret:
4813
4975
  warnings:
4814
4976
  expiring: "{count} {count, plural, =1 {Certificate expires soon} other {Certificates expire soon}}"
4815
4977
  expired: "{count} {count, plural, =1 {Certificate has expired} other {Certificates have expired}}"
4816
- filtered: ". Not all may be visible given the selected project/namespace filter"
4817
4978
  data: Data
4818
4979
  registry:
4819
4980
  address: Registry
@@ -5592,6 +5753,10 @@ tableHeaders:
5592
5753
  users: Users
5593
5754
  userDisplayName: Display Name
5594
5755
  userId: ID
5756
+ userDeletedIn: Delete After
5757
+ userDisabledIn: Disable After
5758
+ userLastLogin: Last Login
5759
+ userState: Enabled
5595
5760
  userStatus: Status
5596
5761
  username: Local Username
5597
5762
  value: Value
@@ -5615,6 +5780,10 @@ target:
5615
5780
  placeholder: Select a version
5616
5781
 
5617
5782
  user:
5783
+ state:
5784
+ active: 'Enabled'
5785
+ inactive: 'Disabled'
5786
+ unknown: 'Unknown'
5618
5787
  detail:
5619
5788
  username: Username
5620
5789
  globalPermissions:
@@ -5652,6 +5821,41 @@ user:
5652
5821
  placeholder: e.g. This account is for John Smith
5653
5822
  list:
5654
5823
  errorRefreshingGroupMemberships: Error refreshing group memberships
5824
+ retention:
5825
+ button:
5826
+ label: User retention settings
5827
+ growl:
5828
+ title: Save user retention settings
5829
+ message: User retention settings have been updated successfully
5830
+ edit:
5831
+ title:
5832
+ header: "Users: Settings"
5833
+ pre: "Users:"
5834
+ post: Settings
5835
+ subTitle: User retention
5836
+ form:
5837
+ disableAfter:
5838
+ checkbox: Disable user accounts after an inactivity period (duration since last login)
5839
+ input:
5840
+ label: Inactivity period
5841
+ tooltip: Uses duration units (e.g. use 30h for 30 hours)
5842
+ deleteAfter:
5843
+ checkbox: Delete user accounts after an inactivity period (duration since last login)
5844
+ input:
5845
+ label: Inactivity period
5846
+ tooltip: Uses duration units (e.g. use 30h for 30 hours)
5847
+ subLabel: This value must be larger than the Disable period, if it's active
5848
+ cron:
5849
+ label: User retention process schedule
5850
+ subLabel: The user retention process runs as a cron job (required)
5851
+ errorMessage: User retention process schedule must be a valid cron expression
5852
+ dryRun:
5853
+ label: Run the user retention process in DRY mode (no changes will be applied)
5854
+ subLabel: You can check the logs to see which accounts would be affected
5855
+ defaultLastLogin:
5856
+ label: Default last login (ms)
5857
+ subLabel: Accounts without a registered last login timestamp will get this as a default
5858
+ placeholder: Unix timestamp
5655
5859
  validation:
5656
5860
  noUpperCase: 'Alphanumeric characters in "{key}" must be lowercase'
5657
5861
  arrayLength:
@@ -5659,6 +5863,7 @@ validation:
5659
5863
  exactly: '"{key}" should contain {count, plural, =1 {# item} other {# items}}'
5660
5864
  max: '"{key}" should contain at most {count} {count, plural, =1 {item} other {items}}'
5661
5865
  min: '"{key}" should contain at least {count} {count, plural, =1 {item} other {items}}'
5866
+ alphanumeric: '"{key}" must be alphanumeric'
5662
5867
  boolean: '"{key}" must be a boolean value.'
5663
5868
  chars: '"{key}" contains {count, plural, =1 {an invalid character} other {# invalid characters}}: {chars}'
5664
5869
  cluster:
@@ -6377,7 +6582,7 @@ model:
6377
6582
  okta: Okta
6378
6583
  freeipa: FreeIPA
6379
6584
  googleoauth: Google
6380
- oidc: OIDC
6585
+ oidc: Generic OIDC
6381
6586
  keycloakoidc: Keycloak
6382
6587
 
6383
6588
  cluster:
@@ -6417,6 +6622,7 @@ typeDescription:
6417
6622
  # Should fit on one line.
6418
6623
  # If you link to anything external, it MUST have
6419
6624
  # target="_blank" rel="noopener noreferrer nofollow"
6625
+ jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
6420
6626
  branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
6421
6627
  chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
6422
6628
  cis.cattle.io.clusterscanbenchmark: A benchmark version is the name of benchmark to run using kube-bench as well as the valid configuration parameters for that benchmark.
@@ -6502,6 +6708,16 @@ typeLabel:
6502
6708
  one { Cloud Credential }
6503
6709
  other { Cloud Credentials }
6504
6710
  }
6711
+ kontainerdriver: |-
6712
+ {count, plural,
6713
+ one { Cluster Driver }
6714
+ other { Cluster Drivers }
6715
+ }
6716
+ nodedriver: |-
6717
+ {count, plural,
6718
+ one { Node Driver }
6719
+ other { Node Drivers }
6720
+ }
6505
6721
  endpoints: |-
6506
6722
  {count, plural,
6507
6723
  one { Endpoint }
@@ -7041,7 +7257,7 @@ podAffinity:
7041
7257
  keyValue:
7042
7258
  keyPlaceholder: e.g. foo
7043
7259
  valuePlaceholder: e.g. bar
7044
- protip: 'Paste lines of <em>key=value</em> or <em>key: value</em> into any key field for easy bulk entry'
7260
+ protip: 'Paste lines of <em>key=value</em> or <em>key:value</em> into any key field for easy bulk entry'
7045
7261
 
7046
7262
  registryMirror:
7047
7263
  header: Mirrors
@@ -7117,6 +7333,9 @@ advancedSettings:
7117
7333
  'ui-default-landing': 'The default page users land on after login.'
7118
7334
  'brand': Folder name for an alternative theme defined in '/assets/brand'
7119
7335
  'hide-local-cluster': Hide the local cluster
7336
+ '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."
7337
+ warnings:
7338
+ 'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
7120
7339
  editHelp:
7121
7340
  'ui-banners': This setting takes a JSON object containing 3 root parameters; <code>banner</code>, <code>showHeader</code>, <code>showFooter</code>. <code>banner</code> is an object containing; <code>textColor</code>, <code>background</code>, and <code>text</code>, where <code>textColor</code> and <code>background</code> are any valid CSS color value.
7122
7341
  enum:
@@ -7139,6 +7358,9 @@ advancedSettings:
7139
7358
  info: Info
7140
7359
  debug: Debug
7141
7360
  trace: Trace
7361
+ 'agent-tls-mode':
7362
+ strict: 'Strict'
7363
+ system-store: 'System Store'
7142
7364
 
7143
7365
  featureFlags:
7144
7366
  label: Feature Flags
@@ -7165,7 +7387,7 @@ performance:
7165
7387
  When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to resources that come from the Kubernetes API
7166
7388
  checkboxLabel: Enable incremental loading
7167
7389
  inputLabel: Resource Threshold
7168
- incompatibleDescription: "Incremental Loading is incomaptible with Namespace/Project filtering. Enabling this will disable it."
7390
+ incompatibleDescription: "Incremental Loading is incomaptible with Namespace/Project filtering and Server-side Pagination. Enabling this will disable them."
7169
7391
  manualRefresh:
7170
7392
  label: Manual Refresh
7171
7393
  setting: You can configure a threshold above which manual refresh will be enabled.
@@ -7174,7 +7396,7 @@ performance:
7174
7396
  When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to resources that come from the Kubernetes API
7175
7397
  checkboxLabel: Enable manual refresh of data for lists
7176
7398
  inputLabel: Resource Threshold
7177
- incompatibleDescription: "Manual Refresh is incomaptible with Namespace/Project filtering. Enabling this will disable it."
7399
+ incompatibleDescription: "Manual Refresh is incomaptible with Namespace/Project filtering and Server-side Pagination. Enabling this will disable them."
7178
7400
  websocketNotification:
7179
7401
  label: Websocket Notifications
7180
7402
  description: |-
@@ -7182,7 +7404,7 @@ performance:
7182
7404
  checkboxLabel: Disable websocket notifications
7183
7405
  gc:
7184
7406
  label: Resource Garbage Collection
7185
- description: The UI will cache kuberentes resources locally to avoid having to re-fetch them. In some cases this can lead to a large amount of data stored in the browser. Enable this setting to periodically remove them.
7407
+ description: The UI will cache Kubernetes resources locally to avoid having to re-fetch them. In some cases this can lead to a large amount of data stored in the browser. Enable this setting to periodically remove them.
7186
7408
  checkboxLabel: Enable Garbage Collection
7187
7409
  whenRun:
7188
7410
  description: Update when garbage collection runs
@@ -7217,8 +7439,16 @@ performance:
7217
7439
  information: To change the automatic logout behaviour, edit the authorisation and/or session token timeout values (<code>auth-user-session-ttl-minutes</code> and <code>auth-token-max-ttl-minutes</code>) in the Settings page.
7218
7440
  description: When enabled and the user is inactive past the specified timeout, the UI will no longer fresh page content and the user must reload the page to continue.
7219
7441
  authUserTTL: This timeout cannot be higher than the user session timeout auth-user-session-ttl-minutes, which is currently {current} minutes.
7220
-
7221
-
7442
+ serverPagination:
7443
+ label: Server-side Pagination
7444
+ 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.
7445
+ checkboxLabel: Enable Server-side Pagination
7446
+ applicable: "This applies to the following resource types"
7447
+ incompatibleDescription: "Server-side Pagination is incomaptible with Manual Refresh and Incremental Loading. Enabling this will disable them."
7448
+ featureFlag: The&nbsp;<a href="{ffUrl}">Feature Flag</a>&nbsp;`ui-sql-cache` must be enabled to use this feature
7449
+ resources:
7450
+ generic: most resources in the cluster's 'More Resources' section
7451
+ all: All Resources
7222
7452
  banner:
7223
7453
  label: Fixed Banners
7224
7454
  settingName: Banners
@@ -7250,6 +7480,7 @@ banner:
7250
7480
  label: 'Font Size'
7251
7481
  consent: Consent Banner
7252
7482
  consentFootnote: "Tip: Use \\n character for line break"
7483
+ individualSetting: 'This banner is managed by the setting "{name}" and can not be modified in the UI'
7253
7484
 
7254
7485
  branding:
7255
7486
  label: Branding
@@ -7262,9 +7493,25 @@ branding:
7262
7493
  uploadLight: Upload Light Logo
7263
7494
  uploadDark: Upload Dark Logo
7264
7495
  useCustom: Use a Custom Logo
7496
+ banner:
7497
+ label: Banner
7498
+ tip: 'Upload an image to replace the default Rancher banner in the Dashboard page. We recommend using an SVG image with an aspect ratio of 6:1. The default image size is 4197x633. Max file size is 200KB. Accepted formats: JPEG, PNG, SVG.'
7499
+ lightPreview: Light Theme Preview
7500
+ darkPreview: Dark Theme Preview
7501
+ uploadLight: Upload Light Banner
7502
+ uploadDark: Upload Dark Banner
7503
+ useCustom: Use a Custom Banner
7504
+ loginBackground:
7505
+ label: Login Background
7506
+ tip: 'Upload an image to replace the default Rancher background in the Login page. We recommend using an SVG image with an aspect ratio of 7:8. The default image size is 683x768. Max file size is 200KB. Accepted formats: JPEG, PNG, SVG.'
7507
+ lightPreview: Light Theme Preview
7508
+ darkPreview: Dark Theme Preview
7509
+ uploadLight: Upload Light Background
7510
+ uploadDark: Upload Dark Background
7511
+ useCustom: Use a Custom Background
7265
7512
  favicon:
7266
7513
  label: Favicon
7267
- tip: 'Upload an icon to replace the Rancher favicon in the browser tab. Max file size is 20KB'
7514
+ tip: 'Upload an icon to replace the Rancher favicon in the browser tab. Max file size is 20KB.'
7268
7515
  preview: Favicon Preview
7269
7516
  upload: Upload Favicon
7270
7517
  useCustom: Use a Custom Favicon
@@ -7355,7 +7602,7 @@ customLinks:
7355
7602
  issues: File an Issue
7356
7603
  getStarted: Get Started
7357
7604
  commercialSupport: Commercial Support
7358
-
7605
+ suseCollective: SUSE Collective
7359
7606
 
7360
7607
 
7361
7608
  ##############################
@@ -7405,17 +7652,6 @@ embedding:
7405
7652
  retry: Retry
7406
7653
  unavailable: Cluster Manager UI is not available
7407
7654
 
7408
- v1ClusterTools:
7409
- monitoring:
7410
- label: Monitoring (Legacy)
7411
- description: 'Legacy V1 monitoring. V1 Monitoring is deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/monitoring-alerting/guides/migrating/">Learn more</a> about the migration steps to V2 Monitoring.'
7412
- logging:
7413
- label: Logging (Legacy)
7414
- description: 'Legacy V1 logging. V1 Logging is deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/logging/migrating/">Learn more</a> about migrating to V2 Logging.'
7415
- istio:
7416
- label: Istio (Legacy)
7417
- description: 'Legacy V1 Istio. Istio v1.5 has been deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/istio/#migrate-from-previous-istio-version">Learn more</a> about migrating to the latest version.'
7418
-
7419
7655
  legacy:
7420
7656
  alerts: Alerts
7421
7657
  apps: Apps
@@ -7449,6 +7685,8 @@ manager:
7449
7685
  label: RKE Templates
7450
7686
  nodeTemplates:
7451
7687
  label: Node Templates
7688
+ jwtAuthentication:
7689
+ label: JWT Authentication
7452
7690
 
7453
7691
  auth:
7454
7692
  roleTemplate: Role Templates