dashboard-shell-shell 3.0.2-test.20250913 → 3.0.5-test.2

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 (628) hide show
  1. package/assets/data/aws-regions.json +3 -0
  2. package/assets/icons/demo.css:Zone.Identifier +0 -0
  3. package/assets/icons/demo_index.html:Zone.Identifier +0 -0
  4. package/assets/icons/iconfont.css:Zone.Identifier +0 -0
  5. package/assets/icons/iconfont.js:Zone.Identifier +0 -0
  6. package/assets/icons/iconfont.json:Zone.Identifier +0 -0
  7. package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
  8. package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
  9. package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
  10. package/assets/images/icons/document.svg +3 -0
  11. package/assets/images/key.svg +17 -0
  12. package/assets/images/providers/sks.svg +1 -0
  13. package/assets/images/vendor/cognito.svg +1 -0
  14. package/assets/styles/app.scss +3 -0
  15. package/assets/styles/base/_basic.scss +10 -0
  16. package/assets/styles/base/_spacing.scss +29 -0
  17. package/assets/styles/base/_variables.scss +16 -10
  18. package/assets/styles/global/_labeled-input.scss +1 -1
  19. package/assets/styles/global/_layout.scss +1 -1
  20. package/assets/styles/themes/_dark.scss +30 -0
  21. package/assets/styles/themes/_light.scss +80 -2
  22. package/assets/translations/en-us.yaml +822 -105
  23. package/assets/translations/zh-hans.yaml +13 -3
  24. package/chart/__tests__/S3.test.ts +2 -1
  25. package/chart/monitoring/index.vue +1 -1
  26. package/cloud-credential/gcp.vue +9 -1
  27. package/components/ActionMenuShell.vue +3 -7
  28. package/components/AppModal.vue +9 -28
  29. package/components/AsyncButton.vue +2 -0
  30. package/components/BrandImage.vue +0 -21
  31. package/components/Certificates.vue +5 -0
  32. package/components/CodeMirror.vue +3 -3
  33. package/components/CommunityLinks.vue +3 -58
  34. package/components/ConfigMapSettings/Settings.vue +377 -0
  35. package/components/ConfigMapSettings/index.vue +354 -0
  36. package/components/CruResource.vue +103 -16
  37. package/components/DetailText.vue +61 -11
  38. package/components/Drawer/Chrome.vue +115 -0
  39. package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +61 -0
  40. package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +48 -0
  41. package/components/Drawer/ResourceDetailDrawer/__tests__/ConfigTab.test.ts +54 -0
  42. package/components/Drawer/ResourceDetailDrawer/__tests__/YamlTab.test.ts +80 -0
  43. package/components/Drawer/ResourceDetailDrawer/__tests__/composables.test.ts +106 -0
  44. package/components/Drawer/ResourceDetailDrawer/__tests__/helpers.test.ts +42 -0
  45. package/components/Drawer/ResourceDetailDrawer/composables.ts +53 -0
  46. package/components/Drawer/ResourceDetailDrawer/helpers.ts +10 -0
  47. package/components/Drawer/ResourceDetailDrawer/index.vue +123 -0
  48. package/components/ExplorerProjectsNamespaces.vue +46 -29
  49. package/components/FilterPanel.vue +156 -0
  50. package/components/FixedBanner.vue +19 -5
  51. package/components/{fleet/ForceDirectedTreeChart/index.vue → ForceDirectedTreeChart.vue} +47 -41
  52. package/components/GrowlManager.vue +16 -15
  53. package/components/IconOrSvg.vue +19 -35
  54. package/components/KeyValueView.vue +1 -1
  55. package/components/LandingPagePreference.vue +2 -0
  56. package/components/Loading.vue +1 -1
  57. package/components/LocaleSelector.vue +10 -2
  58. package/components/PaginatedResourceTable.vue +53 -1
  59. package/components/ProgressBarMulti.vue +1 -0
  60. package/components/PromptModal.vue +38 -7
  61. package/components/PromptRemove.vue +5 -1
  62. package/components/PromptRestore.vue +22 -44
  63. package/components/RelatedResources.vue +4 -12
  64. package/components/Resource/Detail/Additional.vue +46 -0
  65. package/components/Resource/Detail/Card/PodsCard/Bubble.vue +13 -0
  66. package/components/Resource/Detail/Card/PodsCard/composable.ts +30 -0
  67. package/components/Resource/Detail/Card/PodsCard/index.vue +118 -0
  68. package/components/Resource/Detail/Card/ResourceUsageCard/composable.ts +51 -0
  69. package/components/Resource/Detail/Card/ResourceUsageCard/index.vue +79 -0
  70. package/components/Resource/Detail/Card/Scaler.vue +89 -0
  71. package/components/Resource/Detail/Card/StateCard/composables.ts +112 -0
  72. package/components/Resource/Detail/Card/StateCard/index.vue +39 -0
  73. package/components/Resource/Detail/Card/VerticalGap.vue +11 -0
  74. package/components/Resource/Detail/Card/__tests__/Card.test.ts +36 -0
  75. package/components/Resource/Detail/Card/__tests__/PodsCard.test.ts +84 -0
  76. package/components/Resource/Detail/Card/__tests__/ResourceUsageCard.test.ts +72 -0
  77. package/components/Resource/Detail/Card/__tests__/Scaler.test.ts +87 -0
  78. package/components/Resource/Detail/Card/__tests__/StateCard.test.ts +53 -0
  79. package/components/Resource/Detail/Card/__tests__/VerticalGap.test.ts +14 -0
  80. package/components/Resource/Detail/Card/__tests__/index.test.ts +36 -0
  81. package/components/Resource/Detail/Card/index.vue +56 -0
  82. package/components/Resource/Detail/Metadata/Annotations/__tests__/index.test.ts +19 -0
  83. package/components/Resource/Detail/Metadata/Annotations/composable.ts +12 -0
  84. package/components/Resource/Detail/Metadata/Annotations/index.vue +31 -0
  85. package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +223 -0
  86. package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/index.test.ts +103 -0
  87. package/components/Resource/Detail/Metadata/IdentifyingInformation/composable.ts +72 -0
  88. package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +317 -0
  89. package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +140 -0
  90. package/components/Resource/Detail/Metadata/KeyValue.vue +140 -0
  91. package/components/Resource/Detail/Metadata/Labels/__tests__/index.test.ts +18 -0
  92. package/components/Resource/Detail/Metadata/Labels/composable.ts +12 -0
  93. package/components/Resource/Detail/Metadata/Labels/index.vue +31 -0
  94. package/components/Resource/Detail/Metadata/Rectangle.vue +34 -0
  95. package/components/Resource/Detail/Metadata/__tests__/KeyValue.test.ts +107 -0
  96. package/components/Resource/Detail/Metadata/__tests__/Rectangle.test.ts +24 -0
  97. package/components/Resource/Detail/Metadata/__tests__/composables.test.ts +75 -0
  98. package/components/Resource/Detail/Metadata/__tests__/index.test.ts +91 -0
  99. package/components/Resource/Detail/Metadata/composables.ts +81 -0
  100. package/components/Resource/Detail/Metadata/index.vue +88 -0
  101. package/components/Resource/Detail/Page.vue +37 -0
  102. package/components/Resource/Detail/PercentageBar.vue +40 -0
  103. package/components/Resource/Detail/ResourceRow.vue +138 -0
  104. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/composables.test.ts +29 -0
  105. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/index.test.ts +48 -0
  106. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/composables.ts +31 -0
  107. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/index.vue +50 -0
  108. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/__tests__/composables.test.ts +66 -0
  109. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/composables.ts +21 -0
  110. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/index.vue +31 -0
  111. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Basic.vue +45 -0
  112. package/components/Resource/Detail/ResourceTabs/SecretDataTab/BasicAuth.vue +31 -0
  113. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Certificate.vue +31 -0
  114. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Registry.vue +22 -0
  115. package/components/Resource/Detail/ResourceTabs/SecretDataTab/ServiceAccountToken.vue +31 -0
  116. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Ssh.vue +32 -0
  117. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Basic.test.ts +40 -0
  118. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/BasicAuth.test.ts +33 -0
  119. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Certificate.test.ts +33 -0
  120. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Registry.test.ts +27 -0
  121. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/ServiceAccountToken.test.ts +33 -0
  122. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Ssh.test.ts +33 -0
  123. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/auth-types.test.ts +186 -0
  124. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/composables.test.ts +102 -0
  125. package/components/Resource/Detail/ResourceTabs/SecretDataTab/auth-types.ts +109 -0
  126. package/components/Resource/Detail/ResourceTabs/SecretDataTab/composeables.ts +52 -0
  127. package/components/Resource/Detail/ResourceTabs/SecretDataTab/index.vue +71 -0
  128. package/components/Resource/Detail/SpacedRow.vue +14 -0
  129. package/components/Resource/Detail/StatusBar.vue +59 -0
  130. package/components/Resource/Detail/StatusRow.vue +61 -0
  131. package/components/Resource/Detail/TitleBar/Title.vue +14 -0
  132. package/components/Resource/Detail/TitleBar/Top.vue +14 -0
  133. package/components/Resource/Detail/TitleBar/__tests__/Title.test.ts +17 -0
  134. package/components/Resource/Detail/TitleBar/__tests__/Top.test.ts +17 -0
  135. package/components/Resource/Detail/TitleBar/__tests__/composables.test.ts +63 -0
  136. package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +142 -0
  137. package/components/Resource/Detail/TitleBar/composables.ts +46 -0
  138. package/components/Resource/Detail/TitleBar/index.vue +204 -0
  139. package/components/Resource/Detail/Top/index.vue +34 -0
  140. package/components/Resource/Detail/__tests__/Page.test.ts +32 -0
  141. package/components/Resource/Detail/composables.ts +45 -0
  142. package/components/ResourceDetail/Masthead/__tests__/index.test.ts +70 -0
  143. package/components/ResourceDetail/{__tests__/Masthead.test.ts → Masthead/__tests__/legacy.test.ts} +3 -3
  144. package/components/ResourceDetail/Masthead/index.vue +65 -0
  145. package/components/ResourceDetail/Masthead/latest.vue +44 -0
  146. package/components/ResourceDetail/{Masthead.vue → Masthead/legacy.vue} +0 -1
  147. package/components/ResourceDetail/__tests__/index.test.ts +135 -0
  148. package/components/ResourceDetail/index.vue +75 -575
  149. package/components/ResourceDetail/legacy.vue +564 -0
  150. package/components/ResourceList/Masthead.vue +69 -20
  151. package/components/ResourceList/index.vue +3 -2
  152. package/components/ResourceTable.vue +59 -85
  153. package/components/ResourceYaml.vue +15 -2
  154. package/components/RichTranslation.vue +106 -0
  155. package/components/SlideInPanelManager.vue +116 -14
  156. package/components/SortableTable/index.vue +10 -2
  157. package/components/SortableTable/paging.js +15 -16
  158. package/components/SortableTable/selection.js +22 -10
  159. package/components/StateDot/index.vue +28 -0
  160. package/components/StatusBadge.vue +6 -4
  161. package/components/SubtleLink.vue +25 -0
  162. package/components/Tabbed/index.vue +38 -22
  163. package/components/Wizard.vue +16 -3
  164. package/components/YamlEditor.vue +1 -2
  165. package/components/__tests__/AsyncButton.test.ts +39 -0
  166. package/components/__tests__/ConfigMapSettings.test.ts +376 -0
  167. package/components/__tests__/CruResource.test.ts +63 -0
  168. package/components/__tests__/FilterPanel.test.ts +81 -0
  169. package/components/__tests__/GrowlManager.test.ts +0 -25
  170. package/components/__tests__/PromptModal.test.ts +146 -0
  171. package/components/__tests__/PromptRestore.test.ts +1 -65
  172. package/components/__tests__/RichTranslation.test.ts +115 -0
  173. package/components/auth/AuthBanner.vue +15 -14
  174. package/components/auth/Principal.vue +0 -1
  175. package/components/auth/RoleDetailEdit.vue +44 -4
  176. package/components/auth/login/ldap.vue +2 -2
  177. package/components/auth/login/oidc.vue +6 -1
  178. package/components/fleet/FleetApplications.vue +174 -0
  179. package/components/fleet/FleetClusterTargets/TargetsList.vue +66 -0
  180. package/components/fleet/FleetClusterTargets/index.vue +455 -0
  181. package/components/fleet/FleetClusters.vue +25 -6
  182. package/components/fleet/FleetGitRepoPaths.vue +476 -0
  183. package/components/fleet/FleetHelmOps.vue +123 -0
  184. package/components/fleet/FleetIntro.vue +58 -28
  185. package/components/fleet/FleetNoWorkspaces.vue +5 -1
  186. package/components/fleet/FleetOCIStorageSecret.vue +171 -0
  187. package/components/fleet/FleetRepos.vue +37 -80
  188. package/components/fleet/FleetResources.vue +69 -27
  189. package/components/fleet/FleetSummary.vue +26 -51
  190. package/components/fleet/FleetValuesFrom.vue +295 -0
  191. package/components/fleet/__tests__/FleetClusterTargets.test.ts +1224 -0
  192. package/components/fleet/__tests__/FleetGitRepoPaths.test.ts +265 -0
  193. package/components/fleet/__tests__/FleetOCIStorageSecret.test.ts +213 -0
  194. package/components/fleet/__tests__/FleetSummary.test.ts +39 -39
  195. package/components/fleet/__tests__/FleetValuesFrom.test.ts +300 -0
  196. package/components/fleet/dashboard/Empty.vue +73 -0
  197. package/components/fleet/dashboard/ResourceCard.vue +184 -0
  198. package/components/fleet/dashboard/ResourceCardSummary.vue +195 -0
  199. package/components/fleet/dashboard/ResourceDetails.vue +194 -0
  200. package/components/fleet/dashboard/ResourcePanel.vue +384 -0
  201. package/components/form/ArrayList.vue +144 -116
  202. package/components/form/BannerSettings.vue +117 -50
  203. package/components/form/ChangePassword.vue +3 -1
  204. package/components/form/ColorInput.vue +35 -6
  205. package/components/form/FileImageSelector.vue +1 -1
  206. package/components/form/Footer.vue +10 -4
  207. package/components/form/KeyValue.vue +92 -51
  208. package/components/form/LabeledSelect.vue +72 -54
  209. package/components/form/Labels.vue +91 -21
  210. package/components/form/MatchExpressions.vue +56 -9
  211. package/components/form/NameNsDescription.vue +12 -8
  212. package/components/form/Networking.vue +24 -19
  213. package/components/form/NotificationSettings.vue +15 -1
  214. package/components/form/ResourceLabeledSelect.vue +22 -8
  215. package/components/form/ResourceSelector.vue +27 -23
  216. package/components/form/ResourceTabs/index.vue +7 -1
  217. package/components/form/SSHKnownHosts/index.vue +14 -11
  218. package/components/form/SecretSelector.vue +18 -2
  219. package/components/form/Select.vue +57 -26
  220. package/components/form/SelectOrCreateAuthSecret.vue +6 -3
  221. package/components/form/SimpleSecretSelector.vue +17 -4
  222. package/components/form/Taints.vue +21 -2
  223. package/components/form/UnitInput.vue +21 -0
  224. package/components/form/ValueFromResource.vue +31 -19
  225. package/components/form/__tests__/ArrayList.test.ts +32 -0
  226. package/components/form/__tests__/ColorInput.test.ts +35 -0
  227. package/components/form/__tests__/KeyValue.test.ts +36 -0
  228. package/components/form/__tests__/LabeledSelect.test.ts +79 -2
  229. package/components/form/__tests__/Labels.test.ts +360 -0
  230. package/components/form/__tests__/MatchExpressions.test.ts +16 -13
  231. package/components/form/__tests__/Networking.test.ts +116 -0
  232. package/components/form/__tests__/SSHKnownHosts.test.ts +11 -2
  233. package/components/form/__tests__/Select.test.ts +37 -1
  234. package/components/form/__tests__/UnitInput.test.ts +23 -1
  235. package/components/form/labeled-select-utils/labeled-select-pagination.ts +3 -38
  236. package/components/formatter/ClusterLink.vue +5 -8
  237. package/components/formatter/Description.vue +30 -0
  238. package/components/formatter/FleetApplicationClustersReady.vue +77 -0
  239. package/components/formatter/FleetApplicationSource.vue +79 -0
  240. package/components/formatter/FleetSummaryGraph.vue +7 -0
  241. package/components/formatter/PodImages.vue +1 -1
  242. package/components/formatter/WorkloadHealthScale.vue +1 -1
  243. package/components/formatter/__tests__/ClusterLink.test.ts +2 -32
  244. package/components/formatter/__tests__/LiveDate.test.ts +10 -2
  245. package/components/google/AccountAccess.vue +209 -0
  246. package/components/google/types/gcp.d.ts +136 -0
  247. package/components/google/types/index.d.ts +101 -0
  248. package/components/google/util/__mocks__/gcp.ts +465 -0
  249. package/components/google/util/formatter.ts +82 -0
  250. package/components/google/util/gcp.ts +134 -0
  251. package/components/google/util/index.d.ts +11 -0
  252. package/components/nav/Favorite.vue +1 -1
  253. package/components/nav/Group.vue +5 -0
  254. package/components/nav/Header.vue +24 -38
  255. package/components/nav/NamespaceFilter.vue +141 -84
  256. package/components/nav/NotificationCenter/Notification.vue +484 -0
  257. package/components/nav/NotificationCenter/NotificationHeader.vue +112 -0
  258. package/components/nav/NotificationCenter/index.vue +148 -0
  259. package/components/nav/TopLevelMenu.helper.ts +55 -34
  260. package/components/nav/TopLevelMenu.vue +11 -0
  261. package/components/nav/Type.vue +4 -1
  262. package/components/nav/WindowManager/ContainerLogs.vue +87 -61
  263. package/components/nav/WindowManager/ContainerLogsActions.vue +76 -0
  264. package/components/nav/WindowManager/index.vue +3 -2
  265. package/components/templates/default.vue +0 -3
  266. package/components/templates/plain.vue +0 -3
  267. package/composables/drawer.ts +26 -0
  268. package/composables/focusTrap.ts +3 -3
  269. package/composables/resources.test.ts +63 -0
  270. package/composables/resources.ts +38 -0
  271. package/composables/useI18n.ts +12 -11
  272. package/composables/useIsNewDetailPageEnabled.ts +17 -0
  273. package/config/labels-annotations.js +22 -11
  274. package/config/pagination-table-headers.js +8 -1
  275. package/config/private-label.js +0 -1
  276. package/config/product/auth.js +20 -3
  277. package/config/product/{cis.js → compliance.js} +23 -26
  278. package/config/product/explorer.js +49 -17
  279. package/config/product/fleet.js +77 -17
  280. package/config/product/manager.js +1 -29
  281. package/config/product/settings.js +23 -11
  282. package/config/query-params.js +16 -1
  283. package/config/roles.ts +2 -1
  284. package/config/router/navigation-guards/authentication.js +51 -2
  285. package/config/router/navigation-guards/index.js +5 -67
  286. package/config/router/routes.js +65 -31
  287. package/config/secret.ts +15 -0
  288. package/config/settings.ts +33 -16
  289. package/config/store.js +2 -0
  290. package/config/system-namespaces.js +1 -1
  291. package/config/table-headers.js +91 -30
  292. package/config/types.js +18 -7
  293. package/config/version.js +1 -1
  294. package/core/plugin-helpers.ts +3 -2
  295. package/core/plugin.ts +32 -7
  296. package/core/types.ts +25 -7
  297. package/detail/catalog.cattle.io.app.vue +5 -1
  298. package/detail/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +22 -18
  299. package/detail/fleet.cattle.io.bundle.vue +70 -6
  300. package/detail/fleet.cattle.io.cluster.vue +28 -15
  301. package/detail/fleet.cattle.io.gitrepo.vue +11 -2
  302. package/detail/fleet.cattle.io.helmop.vue +157 -0
  303. package/detail/management.cattle.io.fleetworkspace.vue +18 -27
  304. package/detail/management.cattle.io.oidcclient.vue +369 -0
  305. package/detail/namespace.vue +0 -3
  306. package/detail/node.vue +20 -16
  307. package/detail/pod.vue +2 -2
  308. package/detail/provisioning.cattle.io.cluster.vue +16 -50
  309. package/detail/service.vue +10 -2
  310. package/detail/workload/index.vue +48 -39
  311. package/dialog/AddCustomBadgeDialog.vue +0 -1
  312. package/{pages/c/_cluster/uiplugins/AddExtensionRepos.vue → dialog/AddExtensionReposDialog.vue} +72 -42
  313. package/dialog/AddonConfigConfirmationDialog.vue +1 -1
  314. package/dialog/AssignToDialog.vue +176 -0
  315. package/dialog/ChangePasswordDialog.vue +106 -0
  316. package/{pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue → dialog/DeveloperLoadExtensionDialog.vue} +74 -71
  317. package/dialog/DisableAuthProviderDialog.vue +101 -0
  318. package/dialog/DrainNode.vue +1 -1
  319. package/{pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue → dialog/ExtensionCatalogInstallDialog.vue} +100 -88
  320. package/{pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue → dialog/ExtensionCatalogUninstallDialog.vue} +87 -66
  321. package/dialog/FeatureFlagListDialog.vue +288 -0
  322. package/dialog/ForceMachineRemoveDialog.vue +1 -1
  323. package/dialog/GenericPrompt.vue +1 -1
  324. package/dialog/HelmOpForceUpdateDialog.vue +132 -0
  325. package/{components/Import.vue → dialog/ImportDialog.vue} +8 -13
  326. package/{pages/c/_cluster/uiplugins/InstallDialog.vue → dialog/InstallExtensionDialog.vue} +124 -106
  327. package/{components/form/SSHKnownHosts → dialog}/KnownHostsEditDialog.vue +52 -62
  328. package/dialog/MoveNamespaceDialog.vue +157 -0
  329. package/dialog/OidcClientSecretDialog.vue +117 -0
  330. package/dialog/RedeployWorkloadDialog.vue +164 -0
  331. package/dialog/RotateEncryptionKeyDialog.vue +10 -30
  332. package/dialog/ScalePoolDownDialog.vue +1 -1
  333. package/{components/nav/Jump.vue → dialog/SearchDialog.vue} +34 -14
  334. package/{pages/c/_cluster/uiplugins/UninstallDialog.vue → dialog/UninstallExtensionDialog.vue} +67 -58
  335. package/dialog/WechatDialog.vue +57 -0
  336. package/{components/form/SSHKnownHosts → dialog}/__tests__/KnownHostsEditDialog.test.ts +15 -34
  337. package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +3 -3
  338. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +60 -68
  339. package/edit/__tests__/fleet.cattle.io.helmop.test.ts +224 -0
  340. package/edit/__tests__/service.test.ts +2 -1
  341. package/edit/auth/ldap/__tests__/config.test.ts +14 -0
  342. package/edit/auth/ldap/config.vue +24 -0
  343. package/edit/auth/oidc.vue +159 -93
  344. package/edit/autoscaling.horizontalpodautoscaler/index.vue +4 -1
  345. package/edit/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +30 -31
  346. package/edit/{cis.cattle.io.clusterscanbenchmark.vue → compliance.cattle.io.clusterscanbenchmark.vue} +4 -4
  347. package/edit/{cis.cattle.io.clusterscanprofile.vue → compliance.cattle.io.clusterscanprofile.vue} +5 -5
  348. package/edit/configmap.vue +8 -2
  349. package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -0
  350. package/edit/fleet.cattle.io.gitrepo.vue +70 -256
  351. package/edit/fleet.cattle.io.helmop.vue +786 -0
  352. package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
  353. package/edit/k8s.cni.cncf.io.networkattachmentdefinition.vue +1 -0
  354. package/edit/logging-flow/index.vue +1 -0
  355. package/edit/logging.banzaicloud.io.output/index.vue +2 -1
  356. package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +5 -6
  357. package/edit/management.cattle.io.fleetworkspace.vue +44 -10
  358. package/edit/management.cattle.io.oidcclient.vue +162 -0
  359. package/edit/management.cattle.io.project.vue +4 -1
  360. package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +1 -1
  361. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +5 -0
  362. package/edit/monitoring.coreos.com.prometheusrule/index.vue +1 -0
  363. package/edit/monitoring.coreos.com.receiver/auth.vue +3 -3
  364. package/edit/monitoring.coreos.com.receiver/index.vue +1 -0
  365. package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
  366. package/edit/monitoring.coreos.com.route.vue +1 -0
  367. package/edit/namespace.vue +2 -4
  368. package/edit/networking.istio.io.destinationrule/index.vue +4 -1
  369. package/edit/networking.k8s.io.ingress/Certificate.vue +11 -3
  370. package/edit/networking.k8s.io.ingress/__tests__/Certificate.test.ts +37 -0
  371. package/edit/networking.k8s.io.ingress/index.vue +4 -1
  372. package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -14
  373. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +57 -62
  374. package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +10 -16
  375. package/edit/networking.k8s.io.networkpolicy/__tests__/PolicyRuleTarget.test.ts +72 -41
  376. package/edit/networking.k8s.io.networkpolicy/__tests__/utils/mock.json +17 -1
  377. package/edit/networking.k8s.io.networkpolicy/index.vue +23 -31
  378. package/edit/node.vue +1 -0
  379. package/edit/persistentvolume/index.vue +4 -1
  380. package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +26 -12
  381. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +69 -2
  382. package/edit/provisioning.cattle.io.cluster/__tests__/utils/rke2-test-data.ts +58 -0
  383. package/edit/provisioning.cattle.io.cluster/index.vue +21 -73
  384. package/edit/provisioning.cattle.io.cluster/rke2.vue +535 -428
  385. package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +48 -39
  386. package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +5 -3
  387. package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +5 -0
  388. package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryConfigs.vue +2 -2
  389. package/edit/resources.cattle.io.restore.vue +1 -1
  390. package/edit/secret/basic.vue +1 -0
  391. package/edit/secret/index.vue +127 -15
  392. package/edit/service.vue +17 -29
  393. package/edit/serviceaccount.vue +4 -1
  394. package/edit/storage.k8s.io.storageclass/index.vue +4 -1
  395. package/edit/workload/index.vue +11 -15
  396. package/edit/workload/mixins/workload.js +0 -2
  397. package/list/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +2 -2
  398. package/list/fleet.cattle.io.gitrepo.vue +1 -1
  399. package/list/fleet.cattle.io.helmop.vue +108 -0
  400. package/list/harvesterhci.io.management.cluster.vue +0 -17
  401. package/list/management.cattle.io.feature.vue +4 -288
  402. package/list/management.cattle.io.oidcclient.vue +108 -0
  403. package/list/management.cattle.io.user.vue +13 -20
  404. package/list/namespace.vue +6 -2
  405. package/list/node.vue +2 -0
  406. package/list/projectsecret.vue +345 -0
  407. package/list/secret.vue +109 -0
  408. package/list/workload.vue +6 -2
  409. package/machine-config/__tests__/vmwarevsphere.test.ts +5 -7
  410. package/machine-config/amazonec2.vue +3 -24
  411. package/machine-config/components/GCEImage.vue +374 -0
  412. package/machine-config/google.vue +617 -0
  413. package/machine-config/vmwarevsphere.vue +7 -17
  414. package/mixins/__tests__/brand.spec.ts +170 -0
  415. package/mixins/auth-config.js +8 -1
  416. package/mixins/brand.js +16 -17
  417. package/mixins/create-edit-view/impl.js +10 -1
  418. package/mixins/create-edit-view/index.js +5 -0
  419. package/mixins/preset.js +100 -0
  420. package/mixins/resource-fetch-api-pagination.js +73 -44
  421. package/mixins/resource-fetch.js +18 -8
  422. package/mixins/resource-table-watch.js +45 -0
  423. package/mixins/vue-select-overrides.js +1 -4
  424. package/models/__tests__/chart.test.ts +296 -0
  425. package/models/__tests__/fleet.cattle.io.gitrepo.test.ts +1 -1
  426. package/models/__tests__/fleet.cattle.io.helmop.test.ts +224 -0
  427. package/models/__tests__/node.test.ts +7 -63
  428. package/models/__tests__/workload.test.ts +1 -0
  429. package/models/chart.js +157 -2
  430. package/models/cluster/node.js +2 -1
  431. package/models/cluster.js +32 -2
  432. package/models/cluster.x-k8s.io.machinedeployment.js +11 -2
  433. package/models/{cis.cattle.io.clusterscan.js → compliance.cattle.io.clusterscan.js} +8 -8
  434. package/models/{cis.cattle.io.clusterscanbenchmark.js → compliance.cattle.io.clusterscanbenchmark.js} +1 -1
  435. package/models/{cis.cattle.io.clusterscanprofile.js → compliance.cattle.io.clusterscanprofile.js} +5 -5
  436. package/models/{cis.cattle.io.clusterscanreport.js → compliance.cattle.io.clusterscanreport.js} +1 -1
  437. package/models/fleet-application.js +297 -0
  438. package/models/fleet.cattle.io.bundle.js +9 -8
  439. package/models/fleet.cattle.io.cluster.js +21 -4
  440. package/models/fleet.cattle.io.gitrepo.js +46 -382
  441. package/models/fleet.cattle.io.helmop.js +202 -0
  442. package/models/management.cattle.io.authconfig.js +1 -0
  443. package/models/management.cattle.io.cluster.js +0 -20
  444. package/models/management.cattle.io.feature.js +7 -1
  445. package/models/management.cattle.io.fleetworkspace.js +14 -1
  446. package/models/management.cattle.io.node.js +7 -22
  447. package/models/management.cattle.io.nodepool.js +12 -0
  448. package/models/management.cattle.io.oidcclient.js +18 -0
  449. package/models/management.cattle.io.registration.js +3 -0
  450. package/models/management.cattle.io.setting.js +0 -1
  451. package/models/namespace.js +12 -1
  452. package/models/provisioning.cattle.io.cluster.js +60 -97
  453. package/models/secret.js +157 -2
  454. package/models/service.js +28 -9
  455. package/models/storage.k8s.io.storageclass.js +2 -2
  456. package/models/workload.js +91 -51
  457. package/package.json +6 -5
  458. package/pages/about.vue +17 -61
  459. package/pages/account/index.vue +9 -1
  460. package/pages/auth/login.vue +2 -3
  461. package/pages/auth/verify.vue +13 -1
  462. package/pages/c/_cluster/apps/charts/AddRepoLink.vue +36 -0
  463. package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +80 -0
  464. package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +57 -0
  465. package/pages/c/_cluster/apps/charts/StatusLabel.vue +33 -0
  466. package/pages/c/_cluster/apps/charts/index.vue +501 -468
  467. package/pages/c/_cluster/apps/charts/install.vue +0 -1
  468. package/pages/c/_cluster/auth/roles/index.vue +19 -48
  469. package/pages/c/_cluster/auth/user.retention/index.vue +87 -78
  470. package/pages/c/_cluster/explorer/EventsTable.vue +1 -1
  471. package/pages/c/_cluster/explorer/index.vue +14 -3
  472. package/pages/c/_cluster/explorer/projectsecret.vue +34 -0
  473. package/pages/c/_cluster/explorer/tools/pages/_page.vue +0 -1
  474. package/pages/c/_cluster/fleet/__tests__/index.test.ts +720 -0
  475. package/pages/c/_cluster/fleet/application/_resource/_id.vue +14 -0
  476. package/pages/c/_cluster/fleet/application/_resource/create.vue +14 -0
  477. package/pages/c/_cluster/fleet/application/create.vue +341 -0
  478. package/pages/c/_cluster/fleet/application/index.vue +139 -0
  479. package/pages/c/_cluster/fleet/graph/config.js +277 -0
  480. package/pages/c/_cluster/fleet/index.vue +866 -328
  481. package/pages/c/_cluster/fleet/settings/index.vue +229 -0
  482. package/pages/c/_cluster/longhorn/index.vue +5 -2
  483. package/pages/c/_cluster/settings/banners.vue +56 -2
  484. package/pages/c/_cluster/settings/brand.vue +2 -1
  485. package/pages/c/_cluster/settings/performance.vue +7 -26
  486. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +16 -1
  487. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +2 -2
  488. package/pages/c/_cluster/uiplugins/__tests__/AddExtensionRepos.test.ts +4 -7
  489. package/pages/c/_cluster/uiplugins/index.vue +98 -55
  490. package/pages/explorer/resource/detail/configmap.vue +42 -0
  491. package/pages/explorer/resource/detail/projectsecret.vue +9 -0
  492. package/pages/explorer/resource/detail/secret.vue +63 -0
  493. package/pages/home.vue +8 -104
  494. package/pages/prefs.vue +0 -1
  495. package/pages/support/index.vue +4 -6
  496. package/plugins/clean-html.js +2 -0
  497. package/plugins/dashboard-store/__tests__/actions.test.ts +4 -1
  498. package/plugins/dashboard-store/__tests__/normalize.test.ts +223 -0
  499. package/plugins/dashboard-store/__tests__/resource-class.test.ts +191 -0
  500. package/plugins/dashboard-store/__tests__/utils/normalize-usecases.ts +1526 -0
  501. package/plugins/dashboard-store/actions.js +212 -55
  502. package/plugins/dashboard-store/getters.js +112 -24
  503. package/plugins/dashboard-store/mutations.js +61 -12
  504. package/plugins/dashboard-store/normalize.js +29 -19
  505. package/plugins/dashboard-store/resource-class.js +132 -49
  506. package/plugins/steve/__tests__/getters.test.ts +19 -12
  507. package/plugins/steve/__tests__/steve-class.test.ts +1 -0
  508. package/plugins/steve/__tests__/subscribe.spec.ts +324 -1
  509. package/plugins/steve/actions.js +37 -24
  510. package/plugins/steve/getters.js +47 -12
  511. package/plugins/steve/resourceWatcher.js +10 -3
  512. package/plugins/steve/steve-class.js +5 -0
  513. package/plugins/steve/steve-pagination-utils.ts +225 -43
  514. package/plugins/steve/subscribe.js +418 -53
  515. package/plugins/steve/worker/web-worker.advanced.js +5 -1
  516. package/rancher-components/Banner/Banner.test.ts +51 -3
  517. package/rancher-components/Banner/Banner.vue +37 -6
  518. package/rancher-components/Form/Checkbox/Checkbox.test.ts +59 -1
  519. package/rancher-components/Form/Checkbox/Checkbox.vue +27 -9
  520. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +51 -0
  521. package/rancher-components/Form/LabeledInput/LabeledInput.vue +21 -3
  522. package/rancher-components/Form/Radio/RadioButton.test.ts +36 -1
  523. package/rancher-components/Form/Radio/RadioButton.vue +21 -5
  524. package/rancher-components/Form/Radio/RadioGroup.test.ts +60 -0
  525. package/rancher-components/Form/Radio/RadioGroup.vue +81 -38
  526. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +4 -0
  527. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +22 -1
  528. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +1 -0
  529. package/rancher-components/RcButton/RcButton.vue +1 -1
  530. package/rancher-components/RcDropdown/RcDropdown.test.ts +98 -0
  531. package/rancher-components/RcDropdown/RcDropdown.vue +6 -0
  532. package/rancher-components/RcDropdown/RcDropdownItem.vue +8 -55
  533. package/rancher-components/RcDropdown/RcDropdownItemCheckbox.vue +69 -0
  534. package/rancher-components/RcDropdown/RcDropdownItemSelect.vue +93 -0
  535. package/rancher-components/RcDropdown/RcDropdownMenu.vue +7 -8
  536. package/rancher-components/RcDropdown/index.ts +2 -0
  537. package/rancher-components/RcDropdown/useDropdownContext.ts +21 -0
  538. package/rancher-components/RcDropdown/useDropdownItem.ts +92 -0
  539. package/rancher-components/RcItemCard/RcItemCard.test.ts +189 -0
  540. package/rancher-components/RcItemCard/RcItemCard.vue +430 -0
  541. package/rancher-components/RcItemCard/RcItemCardAction.vue +24 -0
  542. package/rancher-components/RcItemCard/index.ts +2 -0
  543. package/rancher-components/StringList/StringList.vue +1 -1
  544. package/scripts/extension/publish +1 -1
  545. package/static/loading-indicator.html +1 -1
  546. package/store/action-menu.js +26 -56
  547. package/store/auth.js +3 -0
  548. package/store/catalog.js +85 -25
  549. package/store/features.js +0 -1
  550. package/store/growl.js +97 -8
  551. package/store/i18n.js +1 -1
  552. package/store/index.js +44 -14
  553. package/store/notifications.ts +426 -0
  554. package/store/prefs.js +2 -8
  555. package/store/slideInPanel.ts +6 -0
  556. package/store/type-map.js +34 -17
  557. package/store/type-map.utils.ts +49 -6
  558. package/store/uiplugins.ts +15 -1
  559. package/types/fleet.d.ts +60 -1
  560. package/types/kube/kube-api.ts +34 -0
  561. package/types/notifications/index.ts +74 -0
  562. package/types/resources/fleet.d.ts +43 -0
  563. package/types/resources/pod-security-admission.ts +36 -0
  564. package/types/resources/settings.d.ts +107 -0
  565. package/types/resources/userPreferences.d.ts +13 -0
  566. package/types/shell/index.d.ts +971 -745
  567. package/types/store/dashboard-store.types.ts +57 -4
  568. package/types/store/pagination.types.ts +41 -9
  569. package/types/store/subscribe.types.ts +50 -0
  570. package/utils/__mocks__/tabbable.js +13 -0
  571. package/utils/__tests__/back-off.test.ts +354 -0
  572. package/utils/__tests__/create-yaml.test.ts +235 -0
  573. package/utils/__tests__/fleet.test.ts +148 -0
  574. package/utils/__tests__/kontainer.test.ts +19 -0
  575. package/utils/__tests__/object.test.ts +54 -1
  576. package/utils/__tests__/string.test.ts +273 -1
  577. package/utils/__tests__/time.test.ts +31 -0
  578. package/utils/auth.js +41 -6
  579. package/utils/back-off.ts +176 -0
  580. package/utils/cluster.js +24 -20
  581. package/utils/create-yaml.js +103 -9
  582. package/utils/crypto/encryption.ts +103 -0
  583. package/utils/cspAdaptor.ts +51 -0
  584. package/utils/error.js +0 -5
  585. package/utils/fleet-types.ts +0 -0
  586. package/utils/fleet.ts +204 -74
  587. package/utils/grafana.js +1 -0
  588. package/utils/kontainer.ts +3 -5
  589. package/utils/object.js +36 -12
  590. package/utils/pagination-utils.ts +50 -3
  591. package/utils/pagination-wrapper.ts +132 -50
  592. package/utils/perf-setting.utils.ts +28 -0
  593. package/utils/release-notes.ts +48 -0
  594. package/utils/selector-typed.ts +210 -0
  595. package/utils/selector.js +29 -6
  596. package/utils/settings.ts +4 -1
  597. package/utils/string.js +24 -0
  598. package/utils/style.ts +39 -0
  599. package/utils/{time.js → time.ts} +25 -6
  600. package/utils/uiplugins.ts +41 -8
  601. package/utils/v-sphere.ts +5 -1
  602. package/utils/validators/formRules/__tests__/index.test.ts +76 -6
  603. package/utils/validators/formRules/index.ts +99 -4
  604. package/utils/window.js +11 -7
  605. package/.DS_Store +0 -0
  606. package/components/AssignTo.vue +0 -199
  607. package/components/DisableAuthProviderModal.vue +0 -115
  608. package/components/MoveModal.vue +0 -167
  609. package/components/PromptChangePassword.vue +0 -123
  610. package/components/ResourceList/Masthead-btn.vue +0 -225
  611. package/components/__tests__/ApplicationCard.test.ts +0 -27
  612. package/components/cards/ApplicationCard.vue +0 -145
  613. package/components/fleet/FleetBundleResources.vue +0 -86
  614. package/components/fleet/ForceDirectedTreeChart/chartIcons.js +0 -17
  615. package/components/formatter/RKETemplateName.vue +0 -37
  616. package/config/product/legacy.js +0 -62
  617. package/config/secret.js +0 -14
  618. package/dialog/SaveAsRKETemplateDialog.vue +0 -139
  619. package/models/etcdbackup.js +0 -45
  620. package/pages/auth copy/login.vue +0 -595
  621. package/pages/auth copy/logout.vue +0 -47
  622. package/pages/auth copy/setup.vue +0 -523
  623. package/pages/auth copy/verify.vue +0 -203
  624. package/pages/c/_cluster/fleet/GitRepoGraphConfig.js +0 -249
  625. package/pages/c/_cluster/legacy/pages/_page.vue +0 -29
  626. package/pages/c/_cluster/legacy/project/_page.vue +0 -57
  627. package/pages/c/_cluster/legacy/project/index.vue +0 -32
  628. package/pages/c/_cluster/legacy/project/pipelines.vue +0 -96
@@ -7,6 +7,10 @@ generic:
7
7
  userMenu: user menu
8
8
  actionMenu: action menu
9
9
  namespaceFilter: namespace filter menu
10
+ imageAlt: Generic Rancher image alt
11
+ banners:
12
+ altCloseBanner: Close banner icon
13
+ bannerIcon: Banner icon
10
14
  filterNamespaces: filter namespaces
11
15
  clearSearch: clear search
12
16
  clearFilters: clear filters
@@ -64,6 +68,11 @@ generic:
64
68
  warning: Warning
65
69
  error: Error
66
70
  ok: OK
71
+ other: |-
72
+ {count, plural,
73
+ one {other}
74
+ other {others}
75
+ }
67
76
  overview: Overview
68
77
  plusMore: "+ {n} more"
69
78
  readFromFile: Read from File
@@ -72,6 +81,7 @@ generic:
72
81
  reload: Reload
73
82
  register: Register
74
83
  remove: Remove
84
+ delete: Delete
75
85
  addCatalog: Add Catalog
76
86
  resource: |-
77
87
  {count, plural,
@@ -116,6 +126,13 @@ generic:
116
126
  experimental: Experimental
117
127
 
118
128
  deprecated: Deprecated
129
+ upgradeable: Upgradeable
130
+ installed: Installed
131
+ featured: Featured
132
+ shortFeatured: Feat
133
+ category: Category
134
+ tags: Tags
135
+ tag: Tag
119
136
  placeholder: "e.g. {text}"
120
137
  moreInfo: More Info
121
138
  selectors:
@@ -129,8 +146,27 @@ generic:
129
146
  }
130
147
  basic: Basic
131
148
  ariaLabel:
132
- key: Key {index}
133
- value: Value {index}
149
+ keyValue: Key-Value input
150
+ key: Key for row {index}
151
+ value: Value for row {index}
152
+ remove: remove row {index}
153
+ addKeyValue: Add a new Key-Value row
154
+ readKeyValue: read Key-Values from file
155
+ genericAddRow: Add a new row
156
+ arrayList: Array list input
157
+ genericRow: row {index}
158
+ showLess: Show less
159
+ showMore: Show more
160
+ opensInNewTab: Opens in a new tab
161
+
162
+ tabs:
163
+ addItem: Add a new tab item
164
+ removeItem: Remove selected tab item
165
+
166
+ graph:
167
+ noPermissions: You do not have permission to Graph view
168
+ loading: Loading chart data...
169
+ rendering: Rendering chart...
134
170
 
135
171
  locale:
136
172
  menu: Locale selector menu
@@ -181,7 +217,6 @@ nav:
181
217
  restoreSnapshot: Restore Snapshot
182
218
  rotateCertificates: Rotate Certificates
183
219
  rotateEncryptionKeys: Rotate Encryption Keys
184
- saveAsRKETemplate: Save as RKE Template
185
220
  takeSnapshot: Take Snapshot
186
221
  seeAllClusters: See all clusters
187
222
  seeAllClustersCollapsed: See all
@@ -216,6 +251,7 @@ nav:
216
251
  Scheduling: Scheduling
217
252
  Storage: Storage
218
253
  Project: Project
254
+ resources: Resources
219
255
  ns:
220
256
  all: All Namespaces
221
257
  clusterLevel: Only Cluster Resources
@@ -238,9 +274,10 @@ nav:
238
274
  clusters: clusters
239
275
  ariaLabel: Filter clusters on main menu
240
276
  resourceSearch:
241
- label: Resource Search
242
- toolTip: Resource Search {key}
243
- placeholder: Type to search for a resource...
277
+ label: Resource Type Search
278
+ prompt: Search for a Kubernetes Resource/Custom Resource type
279
+ toolTip: Resource Type Search {key}
280
+ placeholder: Type to search for a resource type...
244
281
  filteringDescription: Using this input will immediately filter the results in the list below
245
282
  header:
246
283
  setLoginPage: Set as login page
@@ -257,6 +294,10 @@ nav:
257
294
  label: Page actions menu
258
295
  button:
259
296
  label: Open page actions menu
297
+ notifications:
298
+ label: Notification Center
299
+ button:
300
+ label: Open notification center
260
301
  failWhale:
261
302
  authMiddleware: Auth Middleware
262
303
  clusterNotFound: Cluster { clusterId } not found
@@ -271,7 +312,7 @@ product:
271
312
  apps: Apps
272
313
  auth: Users & Authentication
273
314
  backup: Rancher Backups
274
- cis: CIS Benchmark
315
+ compliance: Compliance
275
316
  ecm: Cluster Manager
276
317
  explorer: Cluster Explorer
277
318
  fleet: Continuous Delivery
@@ -566,6 +607,9 @@ authConfig:
566
607
  starttls:
567
608
  label: Start TLS
568
609
  tip: Upgrades non-encrypted connections by wrapping with TLS during the connection process. Can not be used in conjunction with TLS.
610
+ searchUsingServiceAccount:
611
+ label: Enable Service Account Search
612
+ tip: When enabled, Rancher will use the service account instead of the user account to search for users and groups.
569
613
  tls: TLS
570
614
  userEnabledAttribute: User Enabled Attribute
571
615
  userMemberAttribute: User Member Attribute
@@ -656,6 +700,7 @@ authConfig:
656
700
  oidc:
657
701
  genericoidc: Configure an OIDC account
658
702
  keycloakoidc: Configure a Keycloak OIDC account
703
+ cognito: Configure an Amazon Cognito account
659
704
  rancherUrl: Rancher URL
660
705
  clientId: Client ID
661
706
  clientSecret: Client Secret
@@ -674,6 +719,8 @@ authConfig:
674
719
  tokenEndpoint: Token Endpoint
675
720
  userInfoEndpoint: User Info Endpoint
676
721
  acrValue: Authorization Context Reference
722
+ cognitoIssuer: Issuer URL
723
+ cognitoHelp: "You will need to create an application client in Cognito of type <b>Traditional web application</b> with the Return URL set to the URL shown below."
677
724
  scope:
678
725
  label: Scopes
679
726
  placeholder: openid
@@ -716,6 +763,16 @@ assignTo:
716
763
  workspace: Workspace
717
764
 
718
765
  asyncButton:
766
+ alt:
767
+ iconAlt: Async button icon
768
+ registerApplication:
769
+ action: Add Application
770
+ success: Added
771
+ waiting: Adding&hellip;
772
+ saveApplication:
773
+ action: Save Application
774
+ success: Saved
775
+ waiting: Saving&hellip;
719
776
  apply:
720
777
  action: Apply
721
778
  success: Applied
@@ -835,6 +892,10 @@ asyncButton:
835
892
  action: Resume Orchestration
836
893
  success: Resumed Orchestration
837
894
  waiting: Resuming Orchestration
895
+ redeploy:
896
+ action: Redeploy
897
+ success: Redeployed
898
+ waiting: Redeploying Workload
838
899
  rollback:
839
900
  action: Roll Back
840
901
  success: Rolled Back
@@ -1000,9 +1061,6 @@ catalog:
1000
1061
  experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
1001
1062
  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.'
1002
1063
  charts:
1003
- browseBtn: Browse
1004
- featuredBtn: Featured
1005
- featuredAriaLabel: Show Featured Charts Carousel and charts grid
1006
1064
  browseAriaLabel: Show only charts grid
1007
1065
  iconAlt: Icon for {app} card/grid item
1008
1066
  refresh: refresh charts
@@ -1017,17 +1075,50 @@ catalog:
1017
1075
  windowsIncompatible: Linux only
1018
1076
  versionWindowsIncompatible: Linux only version
1019
1077
  header: Charts
1020
- featuredCharts: Featured Charts
1021
- noCharts: 'There are no charts available, have you added any repos or set filters?'
1078
+ noCharts:
1079
+ title: No charts to show
1080
+ message: '<b>Tips:</b> undo the last filter you applied or <resetAllFilters>clear all filters</resetAllFilters>, and ensure you have the right <repositoriesUrl>repositories</repositoriesUrl> in place.'
1081
+ docsMessage: 'Want to learn more about Helm Charts and Apps? Read our <docsUrl>documentation</docsUrl>.'
1022
1082
  noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
1023
1083
  noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
1024
1084
  operatingSystems:
1025
1085
  all: All Operating Systems
1026
1086
  linux: Linux
1027
1087
  windows: Windows
1028
- search: Filter charts results
1088
+ search: Search the catalogue...
1029
1089
  deprecatedChartsFilter:
1030
1090
  label: Show deprecated apps
1091
+ addNewRepo:
1092
+ label: Add new
1093
+ ariaLabel: Add a new repository
1094
+ appChartCard:
1095
+ subHeaderItem:
1096
+ missingVersionDate: Last updated date is not available for this chart
1097
+ footerItem:
1098
+ ariaLabel: Apply filter
1099
+ statusFilterCautions:
1100
+ installation: Installation status cannot be determined with 100% accuracy
1101
+ upgradeable: Upgradeable status cannot be determined with 100% accuracy
1102
+ totalChartsMessage: |-
1103
+ {count , plural,
1104
+ =1 { {count} chart in total }
1105
+ other { {count} charts in total }
1106
+ }
1107
+ totalMatchedChartsMessage: |-
1108
+ {count , plural,
1109
+ =1 { {count} chart matching your criteria. }
1110
+ other { {count} charts matching your criteria. }
1111
+ }
1112
+ resetFilters:
1113
+ title: Clear all filters
1114
+ sort:
1115
+ prefix: Sort by
1116
+ recommended: Recommended
1117
+ lastUpdatedDesc: Last updated
1118
+ alphaAscending: Chart name, A → Z
1119
+ alphaDescending: Chart name, Z → A
1120
+ refreshButton:
1121
+ label: Refresh all repositories
1031
1122
  install:
1032
1123
  action:
1033
1124
  goToUpgrade: Edit/Upgrade
@@ -1232,10 +1323,10 @@ chartHeading:
1232
1323
  overview: Overview
1233
1324
  poweredBy: "Powered by:"
1234
1325
 
1235
- cis:
1326
+ compliance:
1236
1327
  addTest: Add Test ID
1237
1328
  alertNeeded: |-
1238
- Alerting must be enabled within the CIS chart values.yaml.
1329
+ Alerting must be enabled within the compliance chart values.yaml.
1239
1330
  This requires that the <a tabindex="0" href="{link}">{vendor} Monitoring and Alerting app</a> is installed
1240
1331
  and the Receivers and Routes are <a target="_blank" rel='noopener noreferrer nofollow' href='{docsBase}/how-to-guides/advanced-user-guides/monitoring-v2-configuration-guides/advanced-configuration/alertmanager'> configured to send out alerts.</a>
1241
1332
  alertOnComplete: Alert on scan completion
@@ -1290,6 +1381,9 @@ cis:
1290
1381
  testsSkipped: Tests Skipped
1291
1382
  testsToSkip: Tests to Skip
1292
1383
  alerting: Alerting
1384
+ detail:
1385
+ subRow:
1386
+ noNodes: No Additional Information
1293
1387
 
1294
1388
  cluster:
1295
1389
  jwtAuthentication:
@@ -1467,16 +1561,27 @@ cluster:
1467
1561
  authEncodedJson:
1468
1562
  label: Service Account
1469
1563
  placeholder: Service Account private key JSON file
1470
- help: |-
1471
- <p>Create a <a href="https://console.cloud.google.com/projectselector/iam-admin/serviceaccounts" target="_blank" rel="noopener noreferrer nofollow">Service Account</a> with a JSON private key and provide the JSON here.
1472
- These IAM roles are required:</p>
1473
- <ul>
1474
- <li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
1475
- <li><b>Project:</b> Viewer (roles/viewer)</li>
1476
- <li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
1477
- <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1478
- </ul>
1479
- More info on roles can be found <a href="https://cloud.google.com/kubernetes-engine/docs/how-to/iam-integration" target="_blank" rel="noopener noreferrer nofollow">here</a>.
1564
+ gke: GKE
1565
+ gce: GCE
1566
+ help:
1567
+ shared: <p>Create a <a href="https://console.cloud.google.com/projectselector/iam-admin/serviceaccounts" target="_blank" rel="noopener noreferrer nofollow">Service Account</a> with a JSON private key and provide the JSON here.</p>
1568
+ gke: |-
1569
+ <p>These IAM roles are required for GKE:</p>
1570
+ <ul>
1571
+ <li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
1572
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1573
+ <li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
1574
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1575
+ </ul>
1576
+ More info on roles can be found <a href="https://cloud.google.com/kubernetes-engine/docs/how-to/iam-integration" target="_blank" rel="noopener noreferrer nofollow">here</a>.
1577
+ gce: |-
1578
+ <p>These IAM roles are required for GCE:</p>
1579
+ <ul>
1580
+ <li><b>Compute Engine:</b> Compute Engine Admin (roles/compute.admin)</li>
1581
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1582
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1583
+ </ul>
1584
+ More info on roles can be found <a href="https://cloud.google.com/compute/docs/access/iam" target="_blank" rel="noopener noreferrer nofollow">here</a>.
1480
1585
  harvester:
1481
1586
  namespace: Namespace
1482
1587
  cpu: CPUs
@@ -1552,6 +1657,9 @@ cluster:
1552
1657
  sshUser:
1553
1658
  placeholder: e.g. ubuntu
1554
1659
  toolTip: SSH user to login with the selected OS image.
1660
+ kubeconfigSecret:
1661
+ nameRequired: Cluster name is required.
1662
+ error: 'Error generating Harvester kubeconfig secret: {err}'
1555
1663
  haveOneOwner: There must be at least one member with the Owner role.
1556
1664
  import:
1557
1665
  warningBanner: 'You should not import a cluster which has already been connected to another instance of Rancher as it will lead to data corruption.'
@@ -1865,6 +1973,63 @@ cluster:
1865
1973
  label: Network
1866
1974
  serverOs:
1867
1975
  label: OS
1976
+ gce:
1977
+ machineImage:
1978
+ label: Machine Image
1979
+ option: '{name} - {description}'
1980
+ deprecatedOption: '{name}(deprecated) - {description}'
1981
+ tooltip: Please select Image Family to get available images
1982
+ imageProjects:
1983
+ label: Image Projects
1984
+ firewall:
1985
+ header: Firewall Configuration
1986
+ showDeprecated:
1987
+ label: Show Deprecated
1988
+ tooltip: Includes deprecated images
1989
+ diskType:
1990
+ label: Disk Type
1991
+ diskSize:
1992
+ label: Disk Size
1993
+ network:
1994
+ label: Network
1995
+ subnetwork:
1996
+ label: Subnetwork
1997
+ machineType:
1998
+ label: Machine Type
1999
+ family:
2000
+ label: Image Family
2001
+ location:
2002
+ zone:
2003
+ label: Zone
2004
+ scopes:
2005
+ add: Add scope
2006
+ label: Scopes
2007
+ tags:
2008
+ add: Add tags
2009
+ label: Tags
2010
+ openPort:
2011
+ add: Add port
2012
+ label: Open Ports
2013
+ address:
2014
+ label: External Address
2015
+ placeholder: '10.0.0.0/14'
2016
+ tooltip: External IP address for the GCE VM instance.
2017
+ username:
2018
+ label: Username
2019
+ placeholder: docker-user
2020
+ tooltip: This is the username used when SSH'ing into the node, and not a username associated with the GCP account.
2021
+ internalFirewall:
2022
+ label: Allow communication between cluster nodes
2023
+ tooltip: Allows Rancher to open ports required for internal communication between nodes.
2024
+ banner: Tags can be used to impose additional firewall rules.
2025
+ externalFirewall:
2026
+ label: Expose external ports
2027
+ tooltip: Allows Rancher to open ports required for external access.
2028
+ banner: By default, the Kubernetes API server listens on port 6443. Exposing this port on control plane machine pools is required for the Authorized Cluster Endpoint feature to work as expected.
2029
+ error:
2030
+ diskSizeWithoutMax: Disk size has to be greater than {diskSizeMin} based on this image and disk type.
2031
+ diskSizeWithMax: Disk size has to be between {diskSizeMin} and {diskSizeMax} based on this image and disk type.
2032
+ projects: Image projects should be a comma separated list of alphanumeric string which may contain '-' and '.'
1868
2033
  addOns:
1869
2034
  dependencyBanner: Add-On Configuration can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
1870
2035
  additionalManifest:
@@ -1924,7 +2089,7 @@ cluster:
1924
2089
  banner:
1925
2090
  warning: 'This cluster contains a machineSelectorConfig, which this form does not fully support; use the YAML editor to manage the full configuration.'
1926
2091
  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.'
1927
- 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>.'
2092
+ 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#launching-kubernetes-on-new-nodes-in-an-infrastructure-provider" target="_blank" rel="noopener nofollow">documentation</a>.'
1928
2093
  desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1929
2094
  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.
1930
2095
  cloudProviderAddConfig: 'On Kubernetes 1.27 or greater, the <b>Amazon</b> 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.'
@@ -1935,9 +2100,8 @@ cluster:
1935
2100
  =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. }
1936
2101
  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. }
1937
2102
  }
1938
- 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>.'
1939
- 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.
1940
- rkeTemplateUpgrade: Template revision {name} available for upgrade
2103
+ rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) has reached end of life and these clusters are no longer supported. 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>.'
2104
+ rke1Unsupported: RKE1 Clusters are no longer supported
1941
2105
  cloudCredentials:
1942
2106
  renew: Renew Cloud Credentials
1943
2107
  expired: Cloud Credential expired, please Renew Cloud Credentials
@@ -2057,6 +2221,7 @@ cluster:
2057
2221
  docker: Docker
2058
2222
  eks: Amazon EKS
2059
2223
  exoscale: Exoscale
2224
+ sks: Exoscale SKS
2060
2225
  gcp: Google
2061
2226
  google: Google GCE
2062
2227
  googlegke: Google GKE
@@ -2111,8 +2276,8 @@ cluster:
2111
2276
  rke2:
2112
2277
  banner:
2113
2278
  psaChange: PSACT is now set to Rancher default automatically
2114
- cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
2115
- cisUnsupported: The selected Kubernetes Version no longer supports CIS Profile "{cisProfile}". Please select a supported profile. We recommend reviewing the <a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">documentation</a> to evaluate the impact of changing the CIS Profile.
2279
+ complianceOverride: Changing this setting may affect cluster security as it overrides default compliance settings
2280
+ complianceUnsupported: The selected Kubernetes Version no longer supports compliance profile "{profile}". Please select a supported profile. We recommend reviewing the <a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">documentation</a> to evaluate the impact of changing the compliance profile.
2116
2281
  modal:
2117
2282
  editYamlMachinePool:
2118
2283
  title: Save Machine Configurations
@@ -2139,10 +2304,11 @@ cluster:
2139
2304
  label: Default - RKE2 Embedded
2140
2305
  security:
2141
2306
  header: Security
2142
- cis:
2143
- server: Server CIS Profile
2144
- agent: CIS Profile
2145
- override: Allow the default Pod Security Admission Configuration Template to be overridden when using a CIS Profile
2307
+ compliance:
2308
+ server: Server compliance Profile
2309
+ agent: Compliance Profile
2310
+ override: Allow the default Pod Security Admission Configuration Template to be overridden when using a compliance profile
2311
+ warning: After saving changes, and if this cluster has already been provisioned, please restart the rke2-server service on all nodes to ensure etcd file permissions are correct
2146
2312
  defaultPodSecurityPolicyTemplateName:
2147
2313
  label: Default Pod Security Policy
2148
2314
  option: Default - RKE2 Embedded
@@ -2153,7 +2319,7 @@ cluster:
2153
2319
  default: Default - RKE2 Embedded
2154
2320
  secretEncryption:
2155
2321
  label: Encrypt Secrets
2156
- cisProfile:
2322
+ complianceProfile:
2157
2323
  option: (None)
2158
2324
  enableNetworkPolicy:
2159
2325
  label: Project Network Isolation
@@ -2429,6 +2595,9 @@ detailText:
2429
2595
  binary: '<Binary Data: {n, number} bytes>'
2430
2596
  empty: '<Empty>'
2431
2597
  unsupported: '<Value not supported by UI, see YAML>'
2598
+ sensitive:
2599
+ hide: Hide Sensitive Values
2600
+ show: Show Sensitive Values
2432
2601
  plusMore: |-
2433
2602
  {n, plural,
2434
2603
  =1 {+ 1 more char}
@@ -2462,6 +2631,105 @@ etcdInfoBanner:
2462
2631
  failedProposals: "Number of failed proposals:"
2463
2632
 
2464
2633
  fleet:
2634
+ settings:
2635
+ label: Continuous Delivery
2636
+ title: Continuous Delivery Settings
2637
+ info: Rancher will reboot Fleet agent and controller on settings change.
2638
+ apply: Apply changes
2639
+ noPermissions: You have no permissions to modify Fleet Settings
2640
+ parseError: 'Cannot parse values from "{ path }" in "{ id }" ConfigMap'
2641
+ fields:
2642
+ ariaLabel: Fleet {name} setting
2643
+ agentTLSMode:
2644
+ label: TLS Mode
2645
+ description: "Determines whether the agent should trust CA bundles from the operating system's trust store when connecting to a management cluster."
2646
+ options:
2647
+ system-store:
2648
+ label: system-store
2649
+ strict:
2650
+ label: strict
2651
+ agentCheckinInterval:
2652
+ label: Checkin Interval
2653
+ description: A duration string for how often agents should report a heartbeat.
2654
+ garbageCollectionInterval:
2655
+ label: Garbage Collection Interval
2656
+ description: The amount of time that agents will wait before they clean up old Helm releases. A non-existent value or 0 will result in an interval of 15 minutes.
2657
+ clusterEnqueueDelay:
2658
+ label: Cluster Enqueue Delay
2659
+ description: "Interval to sync a repo with bundle deployments states."
2660
+ proxy:
2661
+ label: Proxy
2662
+ description: Fleet http[s] proxy server.
2663
+ placeholder: http://<username>@<password>:<url>:<port>
2664
+ noProxy:
2665
+ label: No Proxy
2666
+ description: Comma separated list of domains or ip addresses that will not use the proxy.
2667
+ gitClientTimeout:
2668
+ label: Git Client Timeout
2669
+ description: "The amount of time to wait for a response from the server before canceling the request. Used to retrieve the latest commit of configured git repositories. A non-existent value or 0 will result in a timeout of 30 seconds."
2670
+ nodeSelector:
2671
+ label: Node Selector
2672
+ description: "Node labels for pod assignment."
2673
+ add: Add Selector
2674
+ tolerations:
2675
+ label: Tolerations
2676
+ description: "List of node taints to tolerate (requires Kubernetes >= 1.6)"
2677
+ add: Add Toleration
2678
+ priorityClassName:
2679
+ label: Priority Class Name
2680
+ description: "PriorityClassName assigned to deployment."
2681
+ metrics:
2682
+ label: Metrics
2683
+ description: 'Enable metrics'
2684
+ debug:
2685
+ label: Debug
2686
+ description: 'Enable debug mode'
2687
+ controllerAnnotations:
2688
+ label: Controller
2689
+ description: ""
2690
+ add: Add Annotation
2691
+ gitjobAnnotations:
2692
+ label: Gitjob
2693
+ description: ""
2694
+ add: Add Annotation
2695
+ helmopsAnnotations:
2696
+ label: Helmops
2697
+ description: ""
2698
+ add: Add Annotation
2699
+ controllerReplicas:
2700
+ label: Controller
2701
+ description: ""
2702
+ gitjobReplicas:
2703
+ label: Gitjob
2704
+ description: ""
2705
+ helmopsReplicas:
2706
+ label: Helmops
2707
+ description: ""
2708
+ agentReplicas:
2709
+ label: Agent
2710
+ description: ""
2711
+ general:
2712
+ label: General
2713
+ description: 'General settings.'
2714
+ agent:
2715
+ label: Agent
2716
+ description: 'Agent deployment settings.'
2717
+ replicas:
2718
+ label: Replicas
2719
+ description: 'Number of replicas of Fleet pods.'
2720
+ annotations:
2721
+ label: Extra Annotations
2722
+ description: 'Extra annotations passed to the Fleet pods.'
2723
+ developer:
2724
+ label: Developer
2725
+ description: 'Enable debug info from Fleet.'
2726
+
2727
+ tableHeaders:
2728
+ applicationType: Type
2729
+ applicationSource: Source
2730
+ applicationTarget: Target
2731
+ applicationClustersReady: Clusters Ready
2732
+ applicationResourcesSummary: Resources
2465
2733
  dashboard:
2466
2734
  pageTitle: Continuous Delivery Dashboard
2467
2735
  menuLabel: Dashboard
@@ -2469,16 +2737,34 @@ fleet:
2469
2737
  gitOpsScale: GitOps at scale.
2470
2738
  learnMore: Learn More.
2471
2739
  learnMoreLink: https://fleet.rancher.io
2472
- noRepo: "You don't have any Git Repositories in your Workspaces"
2740
+ noApplications: "You don't have any App Bundles in your Workspaces"
2473
2741
  getStarted: Get started
2474
- thereIsMore: |-
2475
- {count, plural,
2476
- =1 { There is one other workspace with no repositories}
2477
- other { There are { count } other workspaces with no repositories}
2478
- }
2742
+ workspace: Workspace
2743
+ expand: Expand
2744
+ collapse: Collapse
2479
2745
  expandAll: Expand All
2480
2746
  collapseAll: Collapse All
2747
+ state: State
2748
+ viewMode:
2749
+ table: Show table
2750
+ cards: Show cards
2751
+ cards:
2752
+ filters:
2753
+ gitRepos: Show Git Repos
2754
+ helmOps: Show Helm Ops
2755
+ search: Filter
2756
+ resourceSummary:
2757
+ part1: in
2758
+ part2: |-
2759
+ {count, plural,
2760
+ =1 { cluster }
2761
+ other { clusters }
2762
+ }
2763
+ noClusters: Not targeting any clusters
2764
+ resources: Resources
2765
+ source: Source
2481
2766
  cluster:
2767
+ label: Cluster
2482
2768
  summary: Resource Summary
2483
2769
  nonReady: Non-Ready Bundles
2484
2770
  labels: Labels
@@ -2504,7 +2790,9 @@ fleet:
2504
2790
  other {# bundles are hidden as they belong to Harvester clusters that can not be used with Continuous Delivery}
2505
2791
  }
2506
2792
  fleetSummary:
2507
- noClustersGitRepo: This git repo is not targeting any clusters
2793
+ noClusters:
2794
+ gitRepo: This GitRepo is not targeting any clusters
2795
+ helmOp: This HelmOp is not targeting any clusters
2508
2796
  state:
2509
2797
  ready: 'Ready'
2510
2798
  info: 'Transitioning'
@@ -2513,8 +2801,49 @@ fleet:
2513
2801
  unknown: 'Unknown'
2514
2802
  notReady: Not Ready
2515
2803
  waitApplied: Wait Applied
2804
+ clusterTargets:
2805
+ title: Select by name
2806
+ label: Clusters
2807
+ advancedConfigs: Advanced target configurations are defined, check the YAML file for further details.
2808
+ placeholders:
2809
+ selectMultiple: Select Multiple Clusters
2810
+ rules:
2811
+ title: Select by labels
2812
+ addSelector: Add cluster selector
2813
+ labelKey: Label
2814
+ matching:
2815
+ title: Selected clusters
2816
+ placeholder: Select clusters by name or labels
2817
+ empty: No clusters in the workspace
2818
+ plusMore: |-
2819
+ {n, plural,
2820
+ =1 {+ 1 more cluster}
2821
+ other {+ {n, number} more clusters}
2822
+ }
2823
+ application:
2824
+ pageTitle: App Bundles
2825
+ menuLabel: App Bundles
2826
+ intro:
2827
+ add: Create App Bundle
2828
+ empty: No App Bundles have been created
2829
+ actions:
2830
+ create: Create App Bundle
2831
+ groupBy: Group By Type
2832
+ subTypes:
2833
+ fleet.cattle.io.gitrepo:
2834
+ description: GitRepo describes a git repository that is watched by Fleet. The resource contains the necessary information to deploy the repo, or parts of it, to target clusters.
2835
+ fleet.cattle.io.helmop:
2836
+ description: HelmOp is a simplified way of creating bundles by directly pointing to a Helm repository or to an OCI registry, without needing to set up a git repository.
2837
+ warningTooltip:
2838
+ clusterGroup: There are no clusters in this Cluster Group
2839
+ cluster: There are no clusters available
2840
+ noPermissions: You have no permissions to create {label}
2516
2841
  gitRepo:
2842
+ intro:
2843
+ add: Create Git Repo
2844
+ empty: No Git Repos have been added
2517
2845
  actions:
2846
+ add: Create Git Repo
2518
2847
  forceUpdate:
2519
2848
  label: Force Update
2520
2849
  promptTitle: Force Update
@@ -2545,18 +2874,31 @@ fleet:
2545
2874
  label: Certificates
2546
2875
  placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
2547
2876
  paths:
2548
- label: Paths
2549
- ariaLabel: Enter path for Git Repo
2877
+ title: Custom paths
2878
+ description: Root directory
2879
+ index: Path {index}
2880
+ description1: The root folder is used by default. Fleet will scan recursively all folders and subfolders to find fleet.yaml files.
2881
+ description2: You can provide multiple different directories. You can also add subpaths to specify different YAML config file paths.
2882
+ ariaLabel: Enter paths for Git Repo
2550
2883
  placeholder: e.g. /directory/in/your/repo
2551
2884
  addLabel: Add Path
2552
- empty: The root of the repo is used by default. Multiple different directories can be provided.
2885
+ enableBundles: Manually specify config files subpaths (Fleet won't scan subfolders recursively to find fleet.yaml files)
2886
+ subpaths:
2887
+ addLabel: Add Subpath
2888
+ protipValue: 'Only necessary if the filename differs from "fleet.yaml"'
2889
+ props:
2890
+ base: Subpath
2891
+ options: Fleet YAML file (optional)
2892
+ placeholders:
2893
+ key: e.g. dev
2894
+ value: e.g. kustomize.yaml
2553
2895
  repo:
2554
2896
  title: Source
2555
2897
  label: Repository URL
2556
2898
  placeholder: e.g. https://github.com/rancher/fleet-examples.git or git@github.com:rancher/fleet-examples.git
2557
2899
  addRepo: Add Repository
2558
2900
  noRepos: No repositories have been added
2559
- noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
2901
+ noWorkspaces: There are no workspaces.
2560
2902
  resources:
2561
2903
  label: 'Resource Handling'
2562
2904
  keepResources: Always keep resources
@@ -2570,7 +2912,14 @@ fleet:
2570
2912
  label: Polling Interval
2571
2913
  tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
2572
2914
  webhookWarning: A webhook is configured in Rancher to reconcile Git updates and GitRepo resources. The Polling Interval will automatically be adjusted to 1 hour.
2573
- 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.
2915
+ 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.
2916
+ ociStorageSecret:
2917
+ title: OCI Registry
2918
+ label: OCI Storage Secret
2919
+ tooltip: If 'None' is selected, Fleet will use the 'ocistorage' fallback secret when existing in current workspace.<br>Every changes of the selected OCI storage secret will not be applied until next Git Repo update.
2920
+ options:
2921
+ chooseExisting: "Choose a secret:"
2922
+ chooseCustom: "Choose a custom secret:"
2574
2923
  add:
2575
2924
  steps:
2576
2925
  metadata:
@@ -2615,10 +2964,10 @@ fleet:
2615
2964
  clusterGroup: Cluster Group
2616
2965
  label: Deploy To
2617
2966
  labelLocal: Deploy With
2967
+ additionalOptions: Additional settings
2618
2968
  targetDisplay:
2619
2969
  advanced: Advanced
2620
- cluster: "Cluster"
2621
- clusterGroup: "Group"
2970
+ clusters: Clusters
2622
2971
  all: All
2623
2972
  none: None
2624
2973
  local: Local
@@ -2627,13 +2976,160 @@ fleet:
2627
2976
  verify: Require a valid certificate
2628
2977
  specify: Specify additional certificates to be accepted
2629
2978
  skip: Accept any certificate (insecure)
2630
- warningTooltip:
2631
- clusterGroup: There are no clusters in this Cluster Group
2632
- cluster: There are no clusters available
2633
2979
  workspace:
2634
2980
  label: Workspace
2635
2981
  addWorkspace: Create a workspace
2636
2982
  helmRepoURLRegex: Helm Repos (URL Regex)
2983
+ helmOp:
2984
+ intro:
2985
+ add: Create Helm Op
2986
+ empty: No Helm Ops have been added
2987
+ actions:
2988
+ add: Create Helm Op
2989
+ enablePolling:
2990
+ label: Enable Polling
2991
+ disablePolling:
2992
+ label: Disable Polling
2993
+ forceUpdate:
2994
+ label: Force Update
2995
+ promptTitle: Force Update
2996
+ promptNames: 'You are attempting to update: '
2997
+ promptWarning: |-
2998
+ {
2999
+ count, plural,
3000
+ =1 {Force update could be a long running process.}
3001
+ other {Force update could be a long running process.}
3002
+ }
3003
+ unpause:
3004
+ label: Unpause
3005
+ pause:
3006
+ label: Pause
3007
+ add:
3008
+ steps:
3009
+ metadata:
3010
+ label: Metadata
3011
+ title: Specify the Helm Op name and labels/annotations
3012
+ subtext: 'Define metadata details'
3013
+ description: Helm Op basic info
3014
+ chart:
3015
+ label: Chart
3016
+ title: chart
3017
+ subtext: 'Define Helm Chart source details'
3018
+ description: chart
3019
+ values:
3020
+ label: Values
3021
+ title: values
3022
+ subtext: 'Define Helm Values for the chart'
3023
+ description: values
3024
+ targetInfo:
3025
+ label: Target details
3026
+ title: Specify which target to synchronise this repository to
3027
+ subtext: 'Define target details'
3028
+ description: You can configure which clusters will be used as the target of synchronisation with the resources in the repository.
3029
+ advanced:
3030
+ label: Advanced
3031
+ title: Specify advanced settings like authenticaion credentials and polling
3032
+ subtext: 'Define advanced settings'
3033
+ description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
3034
+ info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
3035
+ source:
3036
+ title: Source
3037
+ selectLabel: Type
3038
+ types:
3039
+ tarball: Tarball
3040
+ repo: Repository
3041
+ oci: OCI Registry
3042
+ tarball:
3043
+ label: Absolute URL
3044
+ placeholder: e.g. https://example.com/charts/my-chart-1.2.3.tgz
3045
+ repo:
3046
+ repo:
3047
+ label: Repository URL
3048
+ placeholder: e.g. https://foo.bar/baz
3049
+ chart:
3050
+ label: Chart
3051
+ placeholder: The path to the chart name in the repository
3052
+ oci:
3053
+ chart:
3054
+ label: OCI Registry URL
3055
+ placeholder: e.g. oci://foo.bar/baz
3056
+ version:
3057
+ label: Version
3058
+ placeholder: The Chart version
3059
+ release:
3060
+ title: Release
3061
+ label: Name
3062
+ placeholder: The Helm release name
3063
+ values:
3064
+ title: Values
3065
+ selectLabel: Values
3066
+ description: Configure Values used by Helm that help define the App.
3067
+ types:
3068
+ values: Values
3069
+ valuesFiles: Values Files
3070
+ valuesFrom: Values From
3071
+ yaml:
3072
+ options:
3073
+ edit: Edit YAML
3074
+ diff: Compare Changes
3075
+ values:
3076
+ selectLabel: YAML
3077
+ loading: Loading from chart
3078
+ valuesFiles:
3079
+ selectLabel: Files
3080
+ ariaLabel: Enter path for value File
3081
+ placeholder: ''
3082
+ addLabel: Add File path
3083
+ empty: empty
3084
+ valuesFrom:
3085
+ selectLabel: Values From
3086
+ options:
3087
+ configMapKeyRef: ConfigMap Key
3088
+ secretKeyRef: Secret Key
3089
+ loading: Loading ConfigMaps and Secrets
3090
+ serviceAccount:
3091
+ label: Service Account Name
3092
+ placeholder: "Optional: Use a service account in the target clusters"
3093
+ targetNamespace:
3094
+ label: Target Namespace
3095
+ placeholder: "Optional: Require all resources to be in this namespace"
3096
+ target:
3097
+ selectLabel: Target
3098
+ advanced: Advanced
3099
+ cluster: Cluster
3100
+ clusterGroup: Cluster Group
3101
+ label: Deploy To
3102
+ labelLocal: Deploy With
3103
+ additionalOptions: Additional Options
3104
+ targetDisplay:
3105
+ advanced: Advanced
3106
+ clusters: Clusters
3107
+ all: All
3108
+ none: None
3109
+ local: Local
3110
+ resources:
3111
+ label: 'Resource Handling'
3112
+ keepResources: Always keep resources
3113
+ keepResourcesTooltip: When enabled, resources will be kept when deleting a HelmOp or Bundle - only Helm release secrets will be deleted.
3114
+ correctDrift: Enable self-healing
3115
+ correctDriftTooltip: When enabled, Fleet will ensure that the cluster resources are kept in sync with the HelmOp. All resource changes made on the cluster will be lost.
3116
+ polling:
3117
+ label: Polling
3118
+ enable: Enable Polling
3119
+ pollingInterval:
3120
+ label: Polling Interval
3121
+ tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
3122
+ minimumValueWarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with HelmOps that contain a large amount of resources please consider increasing this value.
3123
+ versionTooltip: Polling can be enabled only if version is a valid semantic versioning constraint (e.g. 2.x.x, < 1.0).
3124
+ tls:
3125
+ insecure: Accept any certificate (insecure)
3126
+ auth:
3127
+ title: Authentication
3128
+ label: Authentication
3129
+ helm: Helm Authentication
3130
+ caBundle:
3131
+ label: Certificates
3132
+ placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
2637
3133
  clusterGroup:
2638
3134
  selector:
2639
3135
  label: Cluster Selectors
@@ -2645,8 +3141,6 @@ fleet:
2645
3141
  other {Matches {matched, number} of {total, number} existing clusters, including "{sample}"}
2646
3142
  }
2647
3143
  fdc:
2648
- loadingChart: Loading chart data...
2649
- renderingChart: Rendering chart...
2650
3144
  id: ID
2651
3145
  type: Type
2652
3146
  state: State
@@ -2657,6 +3151,7 @@ fleet:
2657
3151
  workspaces:
2658
3152
  tabs:
2659
3153
  restrictions: Allowed Target Namespaces
3154
+ ociRegistry: Default OCI Registry
2660
3155
  timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
2661
3156
  remove:
2662
3157
  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."
@@ -3136,6 +3631,9 @@ istio:
3136
3631
  tracing: Enable Jaeger Tracing (limited)
3137
3632
  v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
3138
3633
 
3634
+ itemCard:
3635
+ ariaLabel:
3636
+ clickable: Click on card for {cardTitle}
3139
3637
  jwt:
3140
3638
  title: JWT Authentication
3141
3639
  actions:
@@ -3157,6 +3655,7 @@ labels:
3157
3655
  addTag: Add Tag
3158
3656
  addTaint: Add Taint
3159
3657
  addAnnotation: Add Annotation
3658
+ protectedWarning: This key is protected and will be discarded
3160
3659
  labels:
3161
3660
  title: Labels
3162
3661
  description: Key/value pairs that are attached to objects which specify identifying attributes.
@@ -3195,8 +3694,10 @@ landing:
3195
3694
  other {cores}}
3196
3695
  cpuUsed: CPU Used
3197
3696
  memoryUsed: Memory Used
3198
- seeWhatsNew: Learn more about the improvements and new capabilities in {version}
3199
- whatsNewLink: "What's new in {version}"
3697
+ whatsNew:
3698
+ title: Welcome to Rancher {version}
3699
+ message: Learn more about the improvements and new capabilities in this version
3700
+ link: Release Notes
3200
3701
  learnMore: Learn More
3201
3702
  support: Support
3202
3703
  community:
@@ -3207,8 +3708,6 @@ landing:
3207
3708
  title: Commercial Support
3208
3709
  body: Learn about commercial support
3209
3710
  landingPrefs:
3210
- title: You can change what you see when you login via preferences
3211
- userPrefs: Preferences
3212
3711
  body: "You can change where you land when you login"
3213
3712
  ariaLabelTakeMeToCluster: Select which cluster to take me to after login
3214
3713
  options:
@@ -3906,6 +4405,7 @@ nameNsDescription:
3906
4405
  placeholder: Any text you want that better describes this resource
3907
4406
 
3908
4407
  namespace:
4408
+ cancelCreateAriaLabel: Cancel create namespace
3909
4409
  containerResourceLimit: Container Resource Limit
3910
4410
  resourceQuotas: Resource Quotas
3911
4411
  project:
@@ -3944,6 +4444,10 @@ namespaceFilter:
3944
4444
  one {1 item selected}
3945
4445
  other {{total} items selected}
3946
4446
  }
4447
+ input: Filter namespace options
4448
+ button:
4449
+ clear: Remove applied namespace filters
4450
+ clearFilter: Clear namespace options filter
3947
4451
 
3948
4452
  namespaceList:
3949
4453
  selectLabel: Namespace
@@ -4042,11 +4546,11 @@ networkpolicy:
4042
4546
  invalidCidr: "Invalid CIDR"
4043
4547
  invalidExceptionCidrs: "Invalid Exceptions: "
4044
4548
  podSelector:
4045
- label: Pod Selector
4549
+ label: Pod Label Selector
4046
4550
  namespaceSelector:
4047
- label: Namespace Selector
4551
+ label: Namespace Label Selector
4048
4552
  namespaceAndPodSelector:
4049
- label: Namespace/Pod Selector
4553
+ label: Namespace/Pod Label Selector
4050
4554
  config:
4051
4555
  label: Configuration
4052
4556
  selectors:
@@ -4078,6 +4582,7 @@ networkpolicy:
4078
4582
  =1 {1 of {totalNamespaces, number} namespaces: "{sampleNamespaces}"}
4079
4583
  other {{matchedNamespaces, number} of {totalNamespaces, number} existing namespaces, including "{sampleNamespaces}"}
4080
4584
  }
4585
+
4081
4586
  node:
4082
4587
  list:
4083
4588
  pool: Pool
@@ -4134,6 +4639,17 @@ node:
4134
4639
  scaleDown: Scale Down
4135
4640
  forceDelete: Force Delete
4136
4641
 
4642
+ notificationCenter:
4643
+ caughtUp: "You're all caught up!"
4644
+ dates:
4645
+ today: Today
4646
+ yesterday: Yesterday
4647
+ markAllRead: Mark all as read
4648
+ markRead: Mark as read
4649
+ markUnread: Mark as unread
4650
+ title: Notifications
4651
+ ariaLabel: 'Notification {title}: Press enter to interact'
4652
+
4137
4653
  persistentVolume:
4138
4654
  pluginConfiguration:
4139
4655
  label: Plugin configuration
@@ -4744,6 +5260,7 @@ prefs:
4744
5260
  allNamespaces: Show dynamic Namespaces managed by Rancher (not intended for editing or deletion)
4745
5261
  themeShortcut: Enable Dark/Light Theme keyboard shortcut toggle (shift+T)
4746
5262
  pluginDeveloper: Enable Extension developer features
5263
+ pluginDeveloperTooltip: Enables the ability to perform a developer load of UI extensions
4747
5264
  hideDesc:
4748
5265
  label: Hide Type Description banners above resource lists
4749
5266
  helm:
@@ -4974,11 +5491,9 @@ promptRollback:
4974
5491
  multipleWorkloadError: "Only one workload can be rolled back at a time."
4975
5492
  singleRevisionBanner: There are no revisions to roll back to.
4976
5493
 
4977
- promptSaveAsRKETemplate:
4978
- title: Convert {cluster} to new RKE Template
4979
- name: Cluster Template Name
4980
- description: Create a new RKE cluster template and initial revision from the current cluster configuration.
4981
- warning: This will modify the cluster, setting it up to use the newly created cluster template and revision. This can not be undone.
5494
+ promptRedeploy:
5495
+ title: Redeploy {type}?
5496
+ attemptingToRedeploy: "You are attempting to redeploy the {type} {names}<br><br>Redeploying will restart the selected workloads and may cause temporary downtime."
4982
5497
 
4983
5498
  promptRotateEncryptionKey:
4984
5499
  title: Rotate Encryption Keys
@@ -5028,6 +5543,7 @@ rbac:
5028
5543
  resources: Resource
5029
5544
  nonResourceUrls: Non-Resource URLs
5030
5545
  apiGroups: API Groups
5546
+ psaWarning: Granting Project Roles the ability to amend PSA labels could lead to a weaker security posture and allow for privilege escalation. This is only recommended for advanced users who understand the risks involved.
5031
5547
  subtypes:
5032
5548
  GLOBAL:
5033
5549
  createButton: Create Global Role
@@ -5105,8 +5621,8 @@ rbac:
5105
5621
  label: Manage all Clusters
5106
5622
  description: Allows the user to manage all clusters, including ones they are not a member of.
5107
5623
  clusterscans-manage:
5108
- label: Manage CIS Cluster Scans
5109
- description: Allows the user to launch new and manage CIS cluster scans.
5624
+ label: Manage Compliance Cluster Scans
5625
+ description: Allows the user to launch new and manage compliance cluster scans.
5110
5626
  kontainerdrivers-manage:
5111
5627
  label: Create new Cluster Drivers
5112
5628
  description: Allows the user to create new cluster drivers and become the owner of them.
@@ -5234,6 +5750,8 @@ resourceTable:
5234
5750
  notInANodePool: "Not in a Pool"
5235
5751
  nodePool: "<span>Pool:</span> {name}"
5236
5752
  node: "<span>Node:</span> {name}"
5753
+ autoRefresh:
5754
+ label: Auto Refresh
5237
5755
 
5238
5756
  resourceTabs:
5239
5757
  conditions:
@@ -5359,6 +5877,13 @@ secret:
5359
5877
  'kubernetes.io/tls':
5360
5878
  description: Store a certificate and key for TLS
5361
5879
  docLink: https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets
5880
+ tabs:
5881
+ namespaced:
5882
+ label: Namespaced
5883
+ create: Create Secret
5884
+ projectScoped:
5885
+ label: Project Scoped
5886
+ create: Create Project Secret
5362
5887
 
5363
5888
  selectOrCreateAuthSecret:
5364
5889
  label: Authentication
@@ -5940,14 +6465,15 @@ tableHeaders:
5940
6465
  endpoints: Endpoints
5941
6466
  expires: Expires
5942
6467
  firstSeen: First Seen
5943
- fleetBundleType: Type
5944
6468
  flow: Flow
5945
6469
  fingerprint: Fingerprint
5946
6470
  gitRepos: Git Repos
6471
+ helmOps: Helm Ops
5947
6472
  groups: Groups
5948
6473
  groupName: Group Name
5949
6474
  groupRoleNames: Group Role Names
5950
6475
  global-Default: Global-Default
6476
+ helmOpsReady: Helm Ops Ready
5951
6477
  host: Host
5952
6478
  hostIp: Host IP
5953
6479
  holder: Holder
@@ -6041,7 +6567,7 @@ tableHeaders:
6041
6567
  repo: Repo
6042
6568
  repositories: Repositories
6043
6569
  repoName: Repository Name
6044
- reposReady: Repos Ready
6570
+ reposReady: Git Repos Ready
6045
6571
  replicas: Replicas
6046
6572
  reqRate: Req Rate
6047
6573
  resource: Resource
@@ -6060,6 +6586,11 @@ tableHeaders:
6060
6586
  scope: Scope
6061
6587
  selector: Selector
6062
6588
  secrets: Secrets
6589
+ secret:
6590
+ project-clone: Created by Project Secret
6591
+ project-clone-tooltip: Has a Project Scoped Secret created this Secret in this Namespace
6592
+ project-scoped: Project Secret
6593
+ project-scoped-tooltip: This Project Scoped Secret will create matching Secrets in the Namespaces it contains
6063
6594
  schedule: Schedule
6064
6595
  service: Service
6065
6596
  serviceAccounts: Service Accounts
@@ -6239,8 +6770,10 @@ validation:
6239
6770
  flowOutput:
6240
6771
  both: Requires "Output" or "Cluster Output" to be selected.
6241
6772
  global: Requires "Cluster Output" to be selected.
6242
- git:
6243
- repository: Repository URL must be a HTTP(s) or SSH url with no trailing spaces
6773
+ repository:
6774
+ url: It must be a valid HTTP(s) or SSH URL with no trailing spaces
6775
+ oci:
6776
+ url: It must be a valid OCI URL with no trailing spaces
6244
6777
  output:
6245
6778
  logdna:
6246
6779
  apiKey: Required an "Api Key" to be set.
@@ -6331,6 +6864,7 @@ validation:
6331
6864
  localhost: If the Server URL is internal to the Rancher server (e.g. localhost) the downstream clusters may not be able to communicate with Rancher.
6332
6865
  trailingForwardSlash: Server URL should not have a trailing forward slash.
6333
6866
  url: Server URL must be an URL.
6867
+ genericUrl: Field must be a valid URL
6334
6868
  stringLength:
6335
6869
  between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
6336
6870
  exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
@@ -6621,6 +7155,9 @@ workload:
6621
7155
  workload: Workload
6622
7156
  pods: Pods by State
6623
7157
  runs: Runs
7158
+ started: Started
7159
+ duration: Last Scheduled Time
7160
+ image: Image
6624
7161
  error: Pod { name } Security Policy Violation { policy }
6625
7162
  gaugeStates:
6626
7163
  succeeded: Successful
@@ -6934,6 +7471,7 @@ model:
6934
7471
  saml: SAML
6935
7472
  oauth: OAuth
6936
7473
  oidc: OIDC
7474
+ cognito: Amazon Cognito
6937
7475
  name:
6938
7476
  keycloak: Keycloak (SAML)
6939
7477
  keycloakoidc: Keycloak (OIDC)
@@ -6955,6 +7493,8 @@ model:
6955
7493
  googleoauth: Google
6956
7494
  genericoidc: Generic OIDC
6957
7495
  keycloakoidc: Keycloak
7496
+ cognito: Amazon Cognito
7497
+
6958
7498
 
6959
7499
  cluster:
6960
7500
  name: Cluster Name
@@ -6996,10 +7536,10 @@ typeDescription:
6996
7536
  jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
6997
7537
  branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
6998
7538
  chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
6999
- 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.
7000
- cis.cattle.io.clusterscanprofile: A profile is the configuration for the CIS scan, which is the benchmark versions to use and any specific tests to skip in that benchmark.
7001
- cis.cattle.io.clusterscan: A scan is created to trigger a CIS scan on the cluster based on the defined profile. A report is created after the scan is completed.
7002
- cis.cattle.io.clusterscanreport: A report is the result of a CIS scan of the cluster.
7539
+ compliance.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.
7540
+ compliance.cattle.io.clusterscanprofile: A profile is the configuration for the compliance scan, which is the benchmark versions to use and any specific tests to skip in that benchmark.
7541
+ compliance.cattle.io.clusterscan: A scan is created to trigger a compliance scan on the cluster based on the defined profile. A report is created after the scan is completed.
7542
+ compliance.cattle.io.clusterscanreport: A report is the result of a compliance scan of the cluster.
7003
7543
  management.cattle.io.feature: Feature Flags allow certain {vendor} features to be toggled on and off. Features that are off by default should be considered experimental functionality.
7004
7544
  cluster.x-k8s.io.machine: A Machine encapsulates the configuration of a Kubernetes Node. Use this view to see what happens after updating a cluster.
7005
7545
  cluster.x-k8s.io.machinedeployment: A Machine Deployment orchestrates deployments via templates over a collection of Machine Sets (similar to a Deployment). Use this view to see what happens after updating a cluster.
@@ -7022,6 +7562,7 @@ typeDescription:
7022
7562
  logging.banzaicloud.io.flow: A flow defines which logs to collect and filter as well as which output to send the logs. The flow is a namespaced resource, which means logs will only be collected from the namespace that the flow is deployed in.
7023
7563
  logging.banzaicloud.io.output: An output defines which logging providers that logs can be sent to. The output needs to be in the same namespace as the flow that is using it.
7024
7564
  group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
7565
+ management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
7025
7566
  kubevirt.io.virtualmachine: 云虚拟机是一种安全可靠、弹性可伸缩的云计算服务器,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。
7026
7567
  harvesterhci.io.volume: 虚拟磁盘具有高性能和低时延的特点,支持随机读写,可以像使用物理硬盘一样,在虚拟机上进行格式化并建立文件系统来使用块存储。
7027
7568
  harvesterhci.io.volumesnapshot: 虚拟磁盘快照功能通过捕获虚拟磁盘在特定时间点的状态,生成增量副本,支持快速回滚磁盘状态,为测试验证、容灾恢复提供高效解决方案
@@ -7044,24 +7585,31 @@ typeDescription:
7044
7585
  harvesterhci.io.setting: 集群配置主要用于管理系统中的一些功能及配置参数。
7045
7586
  harvesterhci.io.secret: 密钥管理功能集成密钥生成、存储、访问控制等功能,能够为镜像和虚拟磁盘点加密存储提供安全密钥。
7046
7587
  devices.harvesterhci.io.pcidevice: PCI是Peripheral Component Interconnect(外围设备互连)的缩写,它是一种计算机总线标准,主要用于连接计算机内部的各种外部设备。
7047
-
7588
+ management.cattle.io.setting: 统一配置平台基础选项与全局设置,支持CA证书、密码规则、域名、Token时效等核心配置。
7589
+ management.cattle.io.user: 用于管理用户账号,支持创建、维护用户信息,可设置用户权限、管理密码等,保障系统资源仅由授权用户访问,提升系统安全性。
7590
+ harvesterhci.io.management.cluster: 提供虚拟化集群的实时健康状态监控、版本号管理及资源负载管理,支持批量导入/删除集群、配置调优与权限分级功能,实现高效运维管控。
7048
7591
  typeLabel:
7592
+ management.cattle.io.oidcclient: |-
7593
+ {count, plural,
7594
+ one { OIDC App }
7595
+ other { OIDC Apps }
7596
+ }
7049
7597
  management.cattle.io.token: |-
7050
7598
  {count, plural,
7051
7599
  one { API Key }
7052
7600
  other { API Keys }
7053
7601
  }
7054
- cis.cattle.io.clusterscan: |-
7602
+ compliance.cattle.io.clusterscan: |-
7055
7603
  {count, plural,
7056
7604
  one { Scan }
7057
7605
  other { Scans }
7058
7606
  }
7059
- cis.cattle.io.clusterscanprofile: |-
7607
+ compliance.cattle.io.clusterscanprofile: |-
7060
7608
  {count, plural,
7061
7609
  one { Profile }
7062
7610
  other { Profiles }
7063
7611
  }
7064
- cis.cattle.io.clusterscanbenchmark: |-
7612
+ compliance.cattle.io.clusterscanbenchmark: |-
7065
7613
  {count, plural,
7066
7614
  one { Benchmark Version }
7067
7615
  other { Benchmark Versions }
@@ -7126,11 +7674,21 @@ typeLabel:
7126
7674
  one { Cluster Group }
7127
7675
  other {Cluster Groups }
7128
7676
  }
7677
+ fleet.cattle.io.application: |-
7678
+ {count, plural,
7679
+ one { App Bundle }
7680
+ other { App Bundles }
7681
+ }
7129
7682
  fleet.cattle.io.gitrepo: |-
7130
7683
  {count, plural,
7131
7684
  one { Git Repo }
7132
7685
  other {Git Repos }
7133
7686
  }
7687
+ fleet.cattle.io.helmop: |-
7688
+ {count, plural,
7689
+ one { Helm Op }
7690
+ other { Helm Ops }
7691
+ }
7134
7692
  management.cattle.io.authconfig: |-
7135
7693
  {count, plural,
7136
7694
  one { Authentication Provider }
@@ -7342,6 +7900,11 @@ typeLabel:
7342
7900
  one { Secret }
7343
7901
  other { Secrets }
7344
7902
  }
7903
+ projectsecret: |-
7904
+ {count, plural,
7905
+ one { Project Secret }
7906
+ other { Project Secrets }
7907
+ }
7345
7908
  apiregistration.k8s.io.apiservice: |-
7346
7909
  {count, plural,
7347
7910
  one { APIService }
@@ -7598,6 +8161,62 @@ typeLabel:
7598
8161
  other { Cluster Registration Tokens }
7599
8162
  }
7600
8163
 
8164
+ oidcclient:
8165
+ a11y:
8166
+ copyText:
8167
+ issuerURL: Copy Issuer URL to clipboard
8168
+ discoveryDocument: Copy Discovery Document URL to clipboard
8169
+ jwksUri: Copy JWKS URI to clipboard
8170
+ clientId: Copy client Id to clipboard
8171
+ clientSecret: Copy client secret to clipboard
8172
+ usedNever: Never
8173
+ listViewCreate: Add Application
8174
+ oidcEndpoints: Provider Endpoints
8175
+ createClient: Create a new application
8176
+ clientData: Application
8177
+ clientId: Client ID
8178
+ clientSecrets: Client Secrets
8179
+ issuerURL: Issuer URL
8180
+ discoveryDocument: Discovery Document
8181
+ jwksUri: JWKS URI
8182
+ regenerate: Regenerate
8183
+ addNewSecret: Add new secret
8184
+ copySecretText: <b>Copy your secret now<b>. This is the only time it will be displayed. Be sure to save it in a safe place
8185
+ secretRegenerated: Secret regenerated!
8186
+ secretAdded: Secret Added!
8187
+ noClientId: No Client Id found for this application. If the problem persists please recreate the application
8188
+ errors:
8189
+ performSecretAction: The action on OIDC secrets tried to perform is invalid. Please check the the valid parameters for this function
8190
+ removeOidcClientModal:
8191
+ title: OIDC Application deletion
8192
+ content: Are you sure you want to delete the following OIDC applications?
8193
+ action: Delete Application
8194
+ regenModal:
8195
+ title: OIDC Application Secret regeneration
8196
+ content: Are you sure you want to regenerate this OIDC application secret? The old secret will stop working immediately
8197
+ action: Regenerate Secret
8198
+ deleteModal:
8199
+ title: OIDC Application Secret deletion
8200
+ content: Are you sure you want to delete this OIDC application secret? It will stop working immediately
8201
+ action: Delete Secret
8202
+ appName:
8203
+ placeholder: App name shown during the authorization flow
8204
+ appDescription:
8205
+ placeholder: A brief description of your application
8206
+ redirectURIs:
8207
+ label: Authorization Callback URLs
8208
+ addLabel: Add Callback URL
8209
+ valueLabel: Redirect URIs
8210
+ placeholder: The allowed redirect URL for your application after a user authenticates. HTTPS is required. You may add multiple URLs
8211
+ refreshTokenExpirationSeconds:
8212
+ detailLabel: Refresh Token Expiration (seconds)
8213
+ label: Refresh Token Expiration
8214
+ placeholder: Duration (in seconds) a refresh token can be used to obtain new access/ID tokens without re-login
8215
+ tokenExpirationSeconds:
8216
+ detailLabel: Token Expiration (seconds)
8217
+ label: Token Expiration
8218
+ placeholder: Duration (in seconds) the token containing user authentication information is valid
8219
+
7601
8220
  action:
7602
8221
  ariaLabel:
7603
8222
  hidePass: Hide {area}
@@ -7732,7 +8351,10 @@ advancedSettings:
7732
8351
  'ui-default-landing': 'The default page users land on after login.'
7733
8352
  'brand': Folder name for an alternative theme defined in '/assets/brand'
7734
8353
  'hide-local-cluster': Hide the local cluster
7735
-
8354
+ # '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."
8355
+ # '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 or node-driver K3s or RKE2 clusters.
8356
+ 'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
8357
+ # '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).
7736
8358
  warnings:
7737
8359
  'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
7738
8360
  editHelp:
@@ -7757,7 +8379,7 @@ advancedSettings:
7757
8379
  strict: 'Strict'
7758
8380
  system-store: 'System Store'
7759
8381
  provisioning:
7760
- header: Cluster provisioning
8382
+ header: Cluster Provisioning
7761
8383
 
7762
8384
  featureFlags:
7763
8385
  label: Feature Flags
@@ -7839,21 +8461,18 @@ performance:
7839
8461
  authUserTTL: This timeout cannot be higher than the user session timeout auth-user-session-ttl-minutes, which is currently {current} minutes.
7840
8462
  serverPagination:
7841
8463
  label: Server-side Pagination
7842
- 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.
7843
- checkboxLabel: Enable Server-side Pagination
8464
+ description: By default Lists will fetch all resources and paginate (create the page given sort and filter settings) locally in the browser. Server-Side Pagination moves this out from the browser to the server. This improves performance of the UI, especially in systems with lots of resources.
7844
8465
  applicable: "Server-side pagination applies to Resource Types"
7845
- incompatibleDescription: "Server-side Pagination is incompatible with Manual Refresh and Incremental Loading. Enabling this will disable them."
7846
- featureFlag: The&nbsp;<a href="{ffUrl}">Feature Flag</a>&nbsp;`ui-sql-cache` must be enabled to use this feature
8466
+ featureFlag: Enabling/Disabling <i class="mr-5">"Server-side Pagination"</i> is now solely done so via the <i class="mr-5">ui-sql-cache</i>&nbsp;<a href="{ffUrl}">Feature Flag</a>
7847
8467
  resources:
7848
8468
  generic: most resources in the cluster's 'More Resources' section
7849
8469
  all: All Resources
7850
- experimental: This setting is experimental and may be removed or updated in future versions. We do not recommend enabling this setting in production environments.
7851
8470
  banner:
7852
8471
  label: Fixed Banners
7853
8472
  settingName: Banners
7854
- headerBanner: Header Banner
7855
- footerBanner: Footer Banner
7856
- loginScreenBanner: Login Screen Banner
8473
+ bannerHeader: Header Banner
8474
+ bannerFooter: Footer Banner
8475
+ bannerConsent: Login Screen Banner
7857
8476
  text: Text
7858
8477
  buttonText: Accept Button Text
7859
8478
  textColor: Text Color
@@ -7880,6 +8499,12 @@ banner:
7880
8499
  consent: Consent Banner
7881
8500
  consentFootnote: "Tip: Use \\n character for line break"
7882
8501
  individualSetting: 'This banner is managed by the setting "{name}" and can not be modified in the UI'
8502
+ type:
8503
+ html: HTML
8504
+ text: Text
8505
+ htmlWarning: 'Not all HTML elements or attriutes are permitted and the HTML entered here will be sanitized before display. For HTML anchor elements, it is recommended to use the target attribute to have links open in a blank tab.'
8506
+ htmlContent: HTML Content
8507
+ toggleTextHtml: Toggle between text and html
7883
8508
 
7884
8509
  branding:
7885
8510
  label: Branding
@@ -8052,20 +8677,6 @@ embedding:
8052
8677
  retry: Retry
8053
8678
  unavailable: Cluster Manager UI is not available
8054
8679
 
8055
- legacy:
8056
- alerts: Alerts
8057
- apps: Apps
8058
- catalogs: Catalogs
8059
- configMaps: Config Maps
8060
- configuration: Configuration
8061
- notifiers: Notifiers
8062
- monitoring: Monitoring
8063
- secrets: Secrets
8064
-
8065
- project:
8066
- label: Project
8067
- select: "Use the Project/Namespace filter at the top of the page to select a Project in order to see legacy Project features."
8068
-
8069
8680
  serverUpgrade:
8070
8681
  title: "{vendor} Server Changed"
8071
8682
  message: "The page reloaded because the version of {vendor} running on your server changed."
@@ -8180,3 +8791,109 @@ gitPicker:
8180
8791
  networkAttachmentDefinition:
8181
8792
  tabs:
8182
8793
  config: Config
8794
+
8795
+ errors:
8796
+ actionNotAvailable: This action is not currently available
8797
+ missingRequired: is required
8798
+ notUnique: is not unique
8799
+ notNullable: must be set
8800
+ invalidOption: is not a valid option
8801
+ invalidCharacters: contains invalid characters
8802
+ minLengthExceeded: is not long enough
8803
+ maxLengthExceeded: is too long
8804
+ minLimitExceeded: is too small
8805
+ maxLimitExceded: is too big
8806
+ messageAndDetail: '{message} ({detail})'
8807
+ messageOrDetail: '{val}'
8808
+ failedInApi:
8809
+ withName:
8810
+ withCodeExplanation:
8811
+ withMessageDetail: 'Validation failed in API: {name} {codeExplanation}: {messageDetail}'
8812
+ withoutMessageDetail: 'Validation failed in API: {name} {codeExplanation}'
8813
+ withMessageDetail: 'Validation failed in API: {name} {messageDetail}'
8814
+ withoutAnythingElse: 'Validation failed in API: {name} '
8815
+ withoutName:
8816
+ withMessageDetail:
8817
+ withCodeExplanation: 'Validation failed in API: {codeExplanation}: {messageDetail}'
8818
+ withoutCodeExplanation: 'Validation failed in API: {messageDetail}'
8819
+ withCode:
8820
+ withCodeExplanation: 'Validation failed in API: {code} {codeExplanation}'
8821
+ withoutCodeExplanation: 'Validation failed in API: {code}'
8822
+ withoutAnything: Validation failed in API.
8823
+ notFound:
8824
+ withUrl: '{msg}: {url}'
8825
+ withoutUrl: '{msg}'
8826
+ component:
8827
+ drawer:
8828
+ chrome:
8829
+ ariaLabel:
8830
+ close: Close {target} drawer
8831
+ close: Close
8832
+ resourceDetailDrawer:
8833
+ title: "{resourceName} ({resourceType}) - Configuration"
8834
+ editConfig: Edit Config
8835
+ editYaml: Edit YAML
8836
+ ariaLabel:
8837
+ editConfig: Edit Config
8838
+ editYaml: Edit YAML
8839
+ yamlTab:
8840
+ title: YAML
8841
+ configTab:
8842
+ title: Config
8843
+ resource:
8844
+ detail:
8845
+ card:
8846
+ resourceUsage:
8847
+ used: Used
8848
+ amount: '{used} of {available}'
8849
+ cpu: CPU
8850
+ memory: Memory
8851
+ pods: Pods
8852
+ resourcesCard:
8853
+ title: Resources
8854
+ rows:
8855
+ services: Services
8856
+ ingresses: Ingresses
8857
+ referredToBy: Referred to by
8858
+ refersTo: Refers to
8859
+ podsCard:
8860
+ title: Pods
8861
+ ariaResourceName: pods
8862
+ insightsCard:
8863
+ title: Insights
8864
+ rows:
8865
+ conditions: Conditions
8866
+ events: Events
8867
+ scaler:
8868
+ ariaLabel:
8869
+ increase: Increase {resourceName}
8870
+ decrease: Decrease {resourceName}
8871
+ titleBar:
8872
+ showConfiguration: Show Configuration
8873
+ ariaLabel:
8874
+ actionMenu: More actions - { resource }
8875
+ showConfiguration: Show the entire configuration of { resource }
8876
+ metadata:
8877
+ labelsAndAnnotations: Labels and Annotations
8878
+ identifyingInformation:
8879
+ createdBy: Created by
8880
+ namespace: Namespace
8881
+ project: Project
8882
+ age: Age
8883
+ image: Image
8884
+ ready: Ready
8885
+ up-to-date: Up-to-date
8886
+ available: Available
8887
+ serviceAccount: Service Account
8888
+ type: Type
8889
+ certificate: Certificate
8890
+ issuer: Issuer
8891
+ expires: Expires
8892
+ workspace: Workspace
8893
+ annotations:
8894
+ title: Annotations
8895
+ labels:
8896
+ title: Labels
8897
+ keyValue:
8898
+ noRows: There are no {propertyName} configured on this resource.
8899
+ showConfiguration: Show Configuration