@rancher/shell 3.0.5-rc.5 → 3.0.5-rc.7

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 (361) hide show
  1. package/assets/data/aws-regions.json +1 -0
  2. package/assets/images/key.svg +17 -0
  3. package/assets/styles/base/_spacing.scss +2 -2
  4. package/assets/styles/base/_variables.scss +17 -11
  5. package/assets/styles/global/_form.scss +1 -1
  6. package/assets/styles/global/_labeled-input.scss +1 -1
  7. package/assets/styles/themes/_dark.scss +5 -0
  8. package/assets/styles/themes/_light.scss +11 -2
  9. package/assets/styles/vendor/vue-select.scss +1 -1
  10. package/assets/translations/en-us.yaml +426 -64
  11. package/assets/translations/zh-hans.yaml +3 -4
  12. package/cloud-credential/gcp.vue +9 -1
  13. package/components/AppModal.vue +2 -0
  14. package/components/CodeMirror.vue +2 -2
  15. package/components/ConfigMapSettings/Settings.vue +377 -0
  16. package/components/ConfigMapSettings/index.vue +354 -0
  17. package/components/CruResource.vue +1 -2
  18. package/components/DetailText.vue +61 -11
  19. package/components/Drawer/Chrome.vue +115 -0
  20. package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +61 -0
  21. package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +48 -0
  22. package/components/Drawer/ResourceDetailDrawer/__tests__/ConfigTab.test.ts +54 -0
  23. package/components/Drawer/ResourceDetailDrawer/__tests__/YamlTab.test.ts +80 -0
  24. package/components/Drawer/ResourceDetailDrawer/__tests__/composables.test.ts +106 -0
  25. package/components/Drawer/ResourceDetailDrawer/__tests__/helpers.test.ts +42 -0
  26. package/components/Drawer/ResourceDetailDrawer/composables.ts +53 -0
  27. package/components/Drawer/ResourceDetailDrawer/helpers.ts +10 -0
  28. package/components/Drawer/ResourceDetailDrawer/index.vue +111 -0
  29. package/components/GrowlManager.vue +16 -15
  30. package/components/IconOrSvg.vue +5 -0
  31. package/components/KeyValueView.vue +1 -1
  32. package/components/Loading.vue +1 -1
  33. package/components/LocaleSelector.vue +9 -1
  34. package/components/PaginatedResourceTable.vue +46 -1
  35. package/components/ProgressBarMulti.vue +1 -0
  36. package/components/PromptModal.vue +6 -1
  37. package/components/PromptRestore.vue +22 -44
  38. package/components/RelatedResources.vue +4 -12
  39. package/components/Resource/Detail/Additional.vue +46 -0
  40. package/components/Resource/Detail/Metadata/Annotations/__tests__/index.test.ts +1 -1
  41. package/components/Resource/Detail/Metadata/Annotations/index.vue +5 -0
  42. package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +223 -0
  43. package/components/Resource/Detail/Metadata/IdentifyingInformation/composable.ts +47 -256
  44. package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +317 -0
  45. package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +34 -5
  46. package/components/Resource/Detail/Metadata/KeyValue.vue +32 -22
  47. package/components/Resource/Detail/Metadata/Labels/__tests__/index.test.ts +1 -1
  48. package/components/Resource/Detail/Metadata/Labels/index.vue +4 -0
  49. package/components/Resource/Detail/Metadata/Rectangle.vue +3 -1
  50. package/components/Resource/Detail/Metadata/__tests__/KeyValue.test.ts +1 -1
  51. package/components/Resource/Detail/Metadata/__tests__/Rectangle.test.ts +1 -1
  52. package/components/Resource/Detail/Metadata/__tests__/composables.test.ts +75 -0
  53. package/components/Resource/Detail/Metadata/composables.ts +60 -11
  54. package/components/Resource/Detail/Metadata/index.vue +12 -5
  55. package/components/Resource/Detail/Page.vue +15 -0
  56. package/components/Resource/Detail/ResourceRow.vue +37 -18
  57. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/composables.test.ts +29 -0
  58. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/index.test.ts +48 -0
  59. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/composables.ts +31 -0
  60. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/index.vue +50 -0
  61. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/__tests__/composables.test.ts +66 -0
  62. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/composables.ts +21 -0
  63. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/index.vue +31 -0
  64. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Basic.vue +45 -0
  65. package/components/Resource/Detail/ResourceTabs/SecretDataTab/BasicAuth.vue +31 -0
  66. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Certificate.vue +31 -0
  67. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Registry.vue +22 -0
  68. package/components/Resource/Detail/ResourceTabs/SecretDataTab/ServiceAccountToken.vue +31 -0
  69. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Ssh.vue +32 -0
  70. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Basic.test.ts +40 -0
  71. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/BasicAuth.test.ts +33 -0
  72. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Certificate.test.ts +33 -0
  73. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Registry.test.ts +27 -0
  74. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/ServiceAccountToken.test.ts +33 -0
  75. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Ssh.test.ts +33 -0
  76. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/auth-types.test.ts +186 -0
  77. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/composables.test.ts +102 -0
  78. package/components/Resource/Detail/ResourceTabs/SecretDataTab/auth-types.ts +109 -0
  79. package/components/Resource/Detail/ResourceTabs/SecretDataTab/composeables.ts +52 -0
  80. package/components/Resource/Detail/ResourceTabs/SecretDataTab/index.vue +71 -0
  81. package/components/Resource/Detail/SpacedRow.vue +1 -1
  82. package/components/Resource/Detail/TitleBar/Title.vue +2 -1
  83. package/components/Resource/Detail/TitleBar/__tests__/Title.test.ts +1 -1
  84. package/components/Resource/Detail/TitleBar/__tests__/Top.test.ts +1 -1
  85. package/components/Resource/Detail/TitleBar/__tests__/composables.test.ts +63 -0
  86. package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +1 -1
  87. package/components/Resource/Detail/TitleBar/composables.ts +45 -0
  88. package/components/Resource/Detail/TitleBar/index.vue +85 -13
  89. package/components/Resource/Detail/composables.ts +45 -0
  90. package/components/ResourceDetail/Masthead/__tests__/index.test.ts +70 -0
  91. package/components/ResourceDetail/{__tests__/Masthead.test.ts → Masthead/__tests__/legacy.test.ts} +3 -3
  92. package/components/ResourceDetail/Masthead/index.vue +65 -0
  93. package/components/ResourceDetail/Masthead/latest.vue +44 -0
  94. package/components/ResourceDetail/{Masthead.vue → Masthead/legacy.vue} +1 -1
  95. package/components/ResourceDetail/__tests__/index.test.ts +26 -5
  96. package/components/ResourceDetail/index.vue +33 -17
  97. package/components/ResourceDetail/legacy.vue +18 -1
  98. package/components/ResourceList/Masthead.vue +6 -0
  99. package/components/ResourceList/index.vue +1 -0
  100. package/components/ResourceTable.vue +6 -1
  101. package/components/ResourceYaml.vue +15 -2
  102. package/components/RichTranslation.vue +106 -0
  103. package/components/SlideInPanelManager.vue +46 -11
  104. package/components/SortableTable/index.vue +1 -1
  105. package/components/SortableTable/selection.js +0 -1
  106. package/components/StateDot/index.vue +28 -0
  107. package/components/Tabbed/index.vue +17 -16
  108. package/components/Wizard.vue +4 -2
  109. package/components/__tests__/ConfigMapSettings.test.ts +376 -0
  110. package/components/__tests__/GrowlManager.test.ts +0 -25
  111. package/components/__tests__/PromptRestore.test.ts +1 -65
  112. package/components/__tests__/RichTranslation.test.ts +115 -0
  113. package/components/auth/login/ldap.vue +1 -1
  114. package/components/fleet/FleetApplications.vue +0 -7
  115. package/components/fleet/FleetClusterTargets/TargetsList.vue +66 -0
  116. package/components/fleet/FleetClusterTargets/index.vue +455 -0
  117. package/components/fleet/FleetClusters.vue +25 -6
  118. package/components/fleet/FleetGitRepoPaths.vue +476 -0
  119. package/components/fleet/FleetHelmOps.vue +8 -0
  120. package/components/fleet/FleetRepos.vue +1 -6
  121. package/components/fleet/FleetResources.vue +4 -5
  122. package/components/fleet/FleetValuesFrom.vue +295 -0
  123. package/components/fleet/__tests__/FleetClusterTargets.test.ts +1224 -0
  124. package/components/fleet/__tests__/FleetGitRepoPaths.test.ts +265 -0
  125. package/components/fleet/__tests__/FleetOCIStorageSecret.test.ts +13 -13
  126. package/components/fleet/__tests__/FleetValuesFrom.test.ts +300 -0
  127. package/components/fleet/dashboard/ResourceCard.vue +1 -0
  128. package/components/fleet/dashboard/ResourceCardSummary.vue +1 -5
  129. package/components/fleet/dashboard/ResourceDetails.vue +8 -10
  130. package/components/fleet/dashboard/ResourcePanel.vue +17 -9
  131. package/components/form/ArrayList.vue +13 -2
  132. package/components/form/ChangePassword.vue +3 -1
  133. package/components/form/FileImageSelector.vue +1 -1
  134. package/components/form/Footer.vue +10 -4
  135. package/components/form/KeyValue.vue +81 -43
  136. package/components/form/LabeledSelect.vue +56 -16
  137. package/components/form/Labels.vue +90 -17
  138. package/components/form/MatchExpressions.vue +46 -5
  139. package/components/form/NameNsDescription.vue +2 -1
  140. package/components/form/Networking.vue +24 -19
  141. package/components/form/ResourceLabeledSelect.vue +4 -3
  142. package/components/form/ResourceSelector.vue +1 -0
  143. package/components/form/ResourceTabs/index.vue +5 -0
  144. package/components/form/SecretSelector.vue +9 -2
  145. package/components/form/Select.vue +57 -19
  146. package/components/form/SelectOrCreateAuthSecret.vue +6 -3
  147. package/components/form/SimpleSecretSelector.vue +9 -2
  148. package/components/form/Taints.vue +21 -2
  149. package/components/form/UnitInput.vue +8 -0
  150. package/components/form/ValueFromResource.vue +1 -1
  151. package/components/form/__tests__/LabeledSelect.test.ts +8 -4
  152. package/components/form/__tests__/Labels.test.ts +360 -0
  153. package/components/form/__tests__/MatchExpressions.test.ts +16 -13
  154. package/components/form/__tests__/Networking.test.ts +116 -0
  155. package/components/form/__tests__/Select.test.ts +5 -2
  156. package/components/formatter/FleetApplicationSource.vue +1 -1
  157. package/components/formatter/PodImages.vue +1 -1
  158. package/components/formatter/WorkloadHealthScale.vue +1 -1
  159. package/components/formatter/__tests__/LiveDate.test.ts +10 -2
  160. package/components/google/AccountAccess.vue +209 -0
  161. package/components/google/types/gcp.d.ts +136 -0
  162. package/components/google/types/index.d.ts +101 -0
  163. package/components/google/util/__mocks__/gcp.ts +465 -0
  164. package/components/google/util/formatter.ts +82 -0
  165. package/components/google/util/gcp.ts +134 -0
  166. package/components/google/util/index.d.ts +11 -0
  167. package/components/nav/Favorite.vue +1 -1
  168. package/components/nav/Group.vue +71 -45
  169. package/components/nav/Header.vue +5 -1
  170. package/components/nav/NamespaceFilter.vue +13 -1
  171. package/components/nav/NotificationCenter/Notification.vue +510 -0
  172. package/components/nav/NotificationCenter/NotificationHeader.vue +112 -0
  173. package/components/nav/NotificationCenter/index.vue +148 -0
  174. package/composables/drawer.ts +26 -0
  175. package/composables/resources.test.ts +63 -0
  176. package/composables/resources.ts +38 -0
  177. package/composables/useIsNewDetailPageEnabled.ts +17 -0
  178. package/config/labels-annotations.js +8 -0
  179. package/config/pagination-table-headers.js +8 -1
  180. package/config/product/auth.js +16 -1
  181. package/config/product/{cis.js → compliance.js} +23 -26
  182. package/config/product/explorer.js +32 -3
  183. package/config/product/fleet.js +7 -0
  184. package/config/product/manager.js +0 -1
  185. package/config/product/settings.js +22 -11
  186. package/config/query-params.js +13 -0
  187. package/config/roles.ts +1 -1
  188. package/config/router/navigation-guards/authentication.js +51 -2
  189. package/config/router/routes.js +47 -31
  190. package/config/settings.ts +21 -3
  191. package/config/store.js +2 -0
  192. package/config/system-namespaces.js +1 -1
  193. package/config/table-headers.js +32 -3
  194. package/config/types.js +16 -7
  195. package/config/version.js +1 -1
  196. package/core/plugin.ts +32 -7
  197. package/core/types.ts +18 -1
  198. package/detail/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +22 -18
  199. package/detail/management.cattle.io.fleetworkspace.vue +18 -27
  200. package/detail/management.cattle.io.oidcclient.vue +369 -0
  201. package/detail/node.vue +2 -2
  202. package/detail/pod.vue +2 -2
  203. package/detail/provisioning.cattle.io.cluster.vue +3 -47
  204. package/detail/service.vue +10 -1
  205. package/detail/workload/index.vue +8 -2
  206. package/dialog/ExtensionCatalogUninstallDialog.vue +7 -4
  207. package/dialog/GenericPrompt.vue +1 -1
  208. package/dialog/ImportDialog.vue +8 -8
  209. package/dialog/OidcClientSecretDialog.vue +117 -0
  210. package/dialog/RotateEncryptionKeyDialog.vue +10 -30
  211. package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +3 -3
  212. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +5 -2
  213. package/edit/auth/ldap/__tests__/config.test.ts +14 -0
  214. package/edit/auth/ldap/config.vue +24 -0
  215. package/edit/autoscaling.horizontalpodautoscaler/index.vue +4 -1
  216. package/edit/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +30 -31
  217. package/edit/{cis.cattle.io.clusterscanbenchmark.vue → compliance.cattle.io.clusterscanbenchmark.vue} +4 -4
  218. package/edit/{cis.cattle.io.clusterscanprofile.vue → compliance.cattle.io.clusterscanprofile.vue} +5 -5
  219. package/edit/configmap.vue +8 -2
  220. package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -0
  221. package/edit/fleet.cattle.io.gitrepo.vue +44 -222
  222. package/edit/fleet.cattle.io.helmop.vue +44 -269
  223. package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
  224. package/edit/k8s.cni.cncf.io.networkattachmentdefinition.vue +1 -0
  225. package/edit/logging-flow/index.vue +1 -0
  226. package/edit/logging.banzaicloud.io.output/index.vue +1 -0
  227. package/edit/management.cattle.io.fleetworkspace.vue +1 -0
  228. package/edit/management.cattle.io.oidcclient.vue +162 -0
  229. package/edit/management.cattle.io.project.vue +4 -1
  230. package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +1 -1
  231. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +5 -0
  232. package/edit/monitoring.coreos.com.prometheusrule/index.vue +1 -0
  233. package/edit/monitoring.coreos.com.receiver/auth.vue +30 -30
  234. package/edit/monitoring.coreos.com.receiver/index.vue +1 -0
  235. package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
  236. package/edit/monitoring.coreos.com.route.vue +1 -0
  237. package/edit/namespace.vue +1 -0
  238. package/edit/networking.istio.io.destinationrule/index.vue +4 -1
  239. package/edit/networking.k8s.io.ingress/Certificate.vue +12 -12
  240. package/edit/networking.k8s.io.ingress/__tests__/Certificate.test.ts +165 -0
  241. package/edit/networking.k8s.io.ingress/index.vue +4 -1
  242. package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +7 -2
  243. package/edit/networking.k8s.io.networkpolicy/index.vue +6 -2
  244. package/edit/node.vue +1 -0
  245. package/edit/persistentvolume/index.vue +4 -1
  246. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +3 -2
  247. package/edit/provisioning.cattle.io.cluster/rke2.vue +516 -426
  248. package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +48 -39
  249. package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +5 -0
  250. package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryConfigs.vue +2 -2
  251. package/edit/resources.cattle.io.restore.vue +1 -1
  252. package/edit/secret/basic.vue +1 -0
  253. package/edit/secret/index.vue +127 -15
  254. package/edit/service.vue +4 -1
  255. package/edit/serviceaccount.vue +4 -1
  256. package/edit/storage.k8s.io.storageclass/index.vue +4 -1
  257. package/edit/workload/index.vue +5 -0
  258. package/list/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +2 -2
  259. package/list/management.cattle.io.oidcclient.vue +108 -0
  260. package/list/node.vue +2 -0
  261. package/list/projectsecret.vue +345 -0
  262. package/list/secret.vue +109 -0
  263. package/machine-config/amazonec2.vue +3 -24
  264. package/machine-config/components/GCEImage.vue +374 -0
  265. package/machine-config/google.vue +617 -0
  266. package/mixins/__tests__/brand.spec.ts +170 -0
  267. package/mixins/brand.js +16 -17
  268. package/mixins/create-edit-view/impl.js +10 -1
  269. package/mixins/create-edit-view/index.js +5 -0
  270. package/mixins/resource-fetch-api-pagination.js +24 -8
  271. package/mixins/resource-fetch.js +3 -1
  272. package/mixins/vue-select-overrides.js +1 -0
  273. package/models/cluster.x-k8s.io.machinedeployment.js +11 -2
  274. package/models/{cis.cattle.io.clusterscan.js → compliance.cattle.io.clusterscan.js} +8 -8
  275. package/models/{cis.cattle.io.clusterscanbenchmark.js → compliance.cattle.io.clusterscanbenchmark.js} +1 -1
  276. package/models/{cis.cattle.io.clusterscanprofile.js → compliance.cattle.io.clusterscanprofile.js} +5 -5
  277. package/models/{cis.cattle.io.clusterscanreport.js → compliance.cattle.io.clusterscanreport.js} +1 -1
  278. package/models/fleet-application.js +8 -79
  279. package/models/fleet.cattle.io.cluster.js +13 -2
  280. package/models/fleet.cattle.io.gitrepo.js +2 -2
  281. package/models/fleet.cattle.io.helmop.js +9 -39
  282. package/models/management.cattle.io.fleetworkspace.js +2 -1
  283. package/models/management.cattle.io.oidcclient.js +18 -0
  284. package/models/management.cattle.io.registration.js +3 -0
  285. package/models/provisioning.cattle.io.cluster.js +29 -33
  286. package/models/secret.js +157 -2
  287. package/models/service.js +4 -0
  288. package/models/workload.js +5 -0
  289. package/package.json +2 -2
  290. package/pages/about.vue +4 -58
  291. package/pages/auth/login.vue +1 -1
  292. package/pages/c/_cluster/apps/charts/AddRepoLink.vue +0 -1
  293. package/pages/c/_cluster/apps/charts/index.vue +296 -81
  294. package/pages/c/_cluster/auth/user.retention/index.vue +87 -78
  295. package/pages/c/_cluster/explorer/index.vue +3 -3
  296. package/pages/c/_cluster/explorer/projectsecret.vue +34 -0
  297. package/pages/c/_cluster/explorer/tools/pages/_page.vue +0 -1
  298. package/pages/c/_cluster/fleet/application/create.vue +3 -2
  299. package/pages/c/_cluster/fleet/index.vue +94 -57
  300. package/pages/c/_cluster/fleet/settings/index.vue +229 -0
  301. package/pages/c/_cluster/longhorn/index.vue +5 -2
  302. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +16 -1
  303. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +2 -2
  304. package/pages/explorer/resource/detail/configmap.vue +30 -7
  305. package/pages/explorer/resource/detail/projectsecret.vue +9 -0
  306. package/pages/explorer/resource/detail/secret.vue +63 -0
  307. package/pages/home.vue +9 -55
  308. package/pages/support/index.vue +4 -6
  309. package/plugins/dashboard-store/__tests__/normalize.test.ts +223 -0
  310. package/plugins/dashboard-store/__tests__/resource-class.test.ts +191 -0
  311. package/plugins/dashboard-store/__tests__/utils/normalize-usecases.ts +1526 -0
  312. package/plugins/dashboard-store/actions.js +19 -5
  313. package/plugins/dashboard-store/getters.js +4 -0
  314. package/plugins/dashboard-store/normalize.js +29 -17
  315. package/plugins/dashboard-store/resource-class.js +68 -19
  316. package/plugins/steve/steve-pagination-utils.ts +38 -19
  317. package/plugins/steve/subscribe.js +6 -1
  318. package/rancher-components/Banner/Banner.vue +13 -0
  319. package/rancher-components/Form/Checkbox/Checkbox.vue +9 -4
  320. package/rancher-components/Form/LabeledInput/LabeledInput.vue +1 -1
  321. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +1 -0
  322. package/rancher-components/RcItemCard/RcItemCard.vue +8 -3
  323. package/store/auth.js +2 -0
  324. package/store/catalog.js +23 -1
  325. package/store/growl.js +97 -8
  326. package/store/index.js +6 -0
  327. package/store/notifications.ts +426 -0
  328. package/store/prefs.js +0 -1
  329. package/store/type-map.js +19 -16
  330. package/store/uiplugins.ts +15 -1
  331. package/types/fleet.d.ts +24 -0
  332. package/types/kube/kube-api.ts +12 -0
  333. package/types/notifications/index.ts +74 -0
  334. package/types/shell/index.d.ts +661 -589
  335. package/types/store/dashboard-store.types.ts +16 -0
  336. package/types/store/pagination.types.ts +16 -6
  337. package/utils/__tests__/create-yaml.test.ts +235 -0
  338. package/utils/__tests__/fleet.test.ts +148 -0
  339. package/utils/__tests__/object.test.ts +54 -1
  340. package/utils/__tests__/string.test.ts +273 -1
  341. package/utils/__tests__/time.test.ts +31 -0
  342. package/utils/auth.js +9 -2
  343. package/utils/create-yaml.js +103 -9
  344. package/utils/crypto/encryption.ts +103 -0
  345. package/utils/cspAdaptor.ts +51 -0
  346. package/utils/fleet.ts +54 -65
  347. package/utils/object.js +36 -0
  348. package/utils/pagination-utils.ts +19 -1
  349. package/utils/release-notes.ts +48 -0
  350. package/utils/selector-typed.ts +7 -2
  351. package/utils/string.js +24 -0
  352. package/utils/{time.js → time.ts} +25 -6
  353. package/utils/uiplugins.ts +22 -0
  354. package/utils/validators/formRules/index.ts +3 -0
  355. package/components/Resource/Detail/TitleBar/composable.ts +0 -31
  356. package/config/product/legacy.js +0 -62
  357. package/models/etcdbackup.js +0 -45
  358. package/pages/c/_cluster/legacy/pages/_page.vue +0 -29
  359. package/pages/c/_cluster/legacy/project/_page.vue +0 -57
  360. package/pages/c/_cluster/legacy/project/index.vue +0 -32
  361. package/pages/c/_cluster/legacy/project/pipelines.vue +0 -96
@@ -7,6 +7,7 @@ generic:
7
7
  userMenu: user menu
8
8
  actionMenu: action menu
9
9
  namespaceFilter: namespace filter menu
10
+ imageAlt: Generic Rancher image alt
10
11
  banners:
11
12
  altCloseBanner: Close banner icon
12
13
  bannerIcon: Banner icon
@@ -67,6 +68,11 @@ generic:
67
68
  warning: Warning
68
69
  error: Error
69
70
  ok: OK
71
+ other: |-
72
+ {count, plural,
73
+ one {other}
74
+ other {others}
75
+ }
70
76
  overview: Overview
71
77
  plusMore: "+ {n} more"
72
78
  readFromFile: Read from File
@@ -75,6 +81,7 @@ generic:
75
81
  reload: Reload
76
82
  register: Register
77
83
  remove: Remove
84
+ delete: Delete
78
85
  addCatalog: Add Catalog
79
86
  resource: |-
80
87
  {count, plural,
@@ -152,6 +159,9 @@ generic:
152
159
  showMore: Show more
153
160
  opensInNewTab: Opens in a new tab
154
161
 
162
+ tabs:
163
+ addItem: Add a new tab item
164
+ removeItem: Remove selected tab item
155
165
 
156
166
  graph:
157
167
  noPermissions: You do not have permission to Graph view
@@ -284,6 +294,10 @@ nav:
284
294
  label: Page actions menu
285
295
  button:
286
296
  label: Open page actions menu
297
+ notifications:
298
+ label: Notification Center
299
+ button:
300
+ label: Open notification center
287
301
  failWhale:
288
302
  authMiddleware: Auth Middleware
289
303
  clusterNotFound: Cluster { clusterId } not found
@@ -298,7 +312,7 @@ product:
298
312
  apps: Apps
299
313
  auth: Users & Authentication
300
314
  backup: Rancher Backups
301
- cis: CIS Benchmark
315
+ compliance: Compliance
302
316
  ecm: Cluster Manager
303
317
  explorer: Cluster Explorer
304
318
  fleet: Continuous Delivery
@@ -593,6 +607,9 @@ authConfig:
593
607
  starttls:
594
608
  label: Start TLS
595
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.
596
613
  tls: TLS
597
614
  userEnabledAttribute: User Enabled Attribute
598
615
  userMemberAttribute: User Member Attribute
@@ -748,6 +765,14 @@ assignTo:
748
765
  asyncButton:
749
766
  alt:
750
767
  iconAlt: Async button icon
768
+ registerApplication:
769
+ action: Add Application
770
+ success: Added
771
+ waiting: Adding…
772
+ saveApplication:
773
+ action: Save Application
774
+ success: Saved
775
+ waiting: Saving…
751
776
  apply:
752
777
  action: Apply
753
778
  success: Applied
@@ -1050,15 +1075,17 @@ catalog:
1050
1075
  windowsIncompatible: Linux only
1051
1076
  versionWindowsIncompatible: Linux only version
1052
1077
  header: Charts
1053
- featuredCharts: Featured Charts
1054
- 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>.'
1055
1082
  noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
1056
1083
  noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
1057
1084
  operatingSystems:
1058
1085
  all: All Operating Systems
1059
1086
  linux: Linux
1060
1087
  windows: Windows
1061
- search: Filter charts results
1088
+ search: Search the catalogue...
1062
1089
  deprecatedChartsFilter:
1063
1090
  label: Show deprecated apps
1064
1091
  addNewRepo:
@@ -1067,8 +1094,29 @@ catalog:
1067
1094
  appChartCard:
1068
1095
  footerItem:
1069
1096
  ariaLabel: Apply filter
1070
- experimentalStatus:
1071
- tooltip: Experimental - using this filter is not yet 100% accurate. Proceed with caution.
1097
+ statusFilterCautions:
1098
+ installation: Installation status cannot be determined with 100% accuracy
1099
+ upgradeable: Upgradeable status cannot be determined with 100% accuracy
1100
+ totalChartsMessage: |-
1101
+ {count , plural,
1102
+ =1 { {count} chart in total }
1103
+ other { {count} charts in total }
1104
+ }
1105
+ totalMatchedChartsMessage: |-
1106
+ {count , plural,
1107
+ =1 { {count} chart matching your criteria. }
1108
+ other { {count} charts matching your criteria. }
1109
+ }
1110
+ resetFilters:
1111
+ title: Clear all filters
1112
+ sort:
1113
+ prefix: Sort by
1114
+ recommended: Recommended
1115
+ lastUpdatedDesc: Last updated
1116
+ alphaAscending: Chart name, A → Z
1117
+ alphaDescending: Chart name, Z → A
1118
+ refreshButton:
1119
+ label: Refresh all repositories
1072
1120
  install:
1073
1121
  action:
1074
1122
  goToUpgrade: Edit/Upgrade
@@ -1273,10 +1321,10 @@ chartHeading:
1273
1321
  overview: Overview
1274
1322
  poweredBy: "Powered by:"
1275
1323
 
1276
- cis:
1324
+ compliance:
1277
1325
  addTest: Add Test ID
1278
1326
  alertNeeded: |-
1279
- Alerting must be enabled within the CIS chart values.yaml.
1327
+ Alerting must be enabled within the compliance chart values.yaml.
1280
1328
  This requires that the <a tabindex="0" href="{link}">{vendor} Monitoring and Alerting app</a> is installed
1281
1329
  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>
1282
1330
  alertOnComplete: Alert on scan completion
@@ -1331,6 +1379,9 @@ cis:
1331
1379
  testsSkipped: Tests Skipped
1332
1380
  testsToSkip: Tests to Skip
1333
1381
  alerting: Alerting
1382
+ detail:
1383
+ subRow:
1384
+ noNodes: No Additional Information
1334
1385
 
1335
1386
  cluster:
1336
1387
  jwtAuthentication:
@@ -1508,16 +1559,27 @@ cluster:
1508
1559
  authEncodedJson:
1509
1560
  label: Service Account
1510
1561
  placeholder: Service Account private key JSON file
1511
- help: |-
1512
- <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.
1513
- These IAM roles are required:</p>
1514
- <ul>
1515
- <li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
1516
- <li><b>Project:</b> Viewer (roles/viewer)</li>
1517
- <li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
1518
- <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1519
- </ul>
1520
- 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>.
1562
+ gke: GKE
1563
+ gce: GCE
1564
+ help:
1565
+ 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>
1566
+ gke: |-
1567
+ <p>These IAM roles are required for GKE:</p>
1568
+ <ul>
1569
+ <li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
1570
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1571
+ <li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
1572
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1573
+ </ul>
1574
+ 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>.
1575
+ gce: |-
1576
+ <p>These IAM roles are required for GCE:</p>
1577
+ <ul>
1578
+ <li><b>Compute Engine:</b> Compute Engine Admin (roles/compute.admin)</li>
1579
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1580
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1581
+ </ul>
1582
+ 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>.
1521
1583
  harvester:
1522
1584
  namespace: Namespace
1523
1585
  cpu: CPUs
@@ -1593,6 +1655,9 @@ cluster:
1593
1655
  sshUser:
1594
1656
  placeholder: e.g. ubuntu
1595
1657
  toolTip: SSH user to login with the selected OS image.
1658
+ kubeconfigSecret:
1659
+ nameRequired: Cluster name is required.
1660
+ error: 'Error generating Harvester kubeconfig secret: {err}'
1596
1661
  haveOneOwner: There must be at least one member with the Owner role.
1597
1662
  import:
1598
1663
  warningBanner: 'You should not import a cluster which has already been connected to another instance of Rancher as it will lead to data corruption.'
@@ -1906,6 +1971,63 @@ cluster:
1906
1971
  label: Network
1907
1972
  serverOs:
1908
1973
  label: OS
1974
+ gce:
1975
+ machineImage:
1976
+ label: Machine Image
1977
+ option: '{name} - {description}'
1978
+ deprecatedOption: '{name}(deprecated) - {description}'
1979
+ tooltip: Please select Image Family to get available images
1980
+ imageProjects:
1981
+ label: Image Projects
1982
+ firewall:
1983
+ header: Firewall Configuration
1984
+ showDeprecated:
1985
+ label: Show Deprecated
1986
+ tooltip: Includes deprecated images
1987
+ diskType:
1988
+ label: Disk Type
1989
+ diskSize:
1990
+ label: Disk Size
1991
+ network:
1992
+ label: Network
1993
+ subnetwork:
1994
+ label: Subnetwork
1995
+ machineType:
1996
+ label: Machine Type
1997
+ family:
1998
+ label: Image Family
1999
+ location:
2000
+ zone:
2001
+ label: Zone
2002
+ scopes:
2003
+ add: Add scope
2004
+ label: Scopes
2005
+ tags:
2006
+ add: Add tags
2007
+ label: Tags
2008
+ openPort:
2009
+ add: Add port
2010
+ label: Open Ports
2011
+ address:
2012
+ label: External Address
2013
+ placeholder: '10.0.0.0/14'
2014
+ tooltip: External IP address for the GCE VM instance.
2015
+ username:
2016
+ label: Username
2017
+ placeholder: docker-user
2018
+ tooltip: This is the username used when SSH'ing into the node, and not a username associated with the GCP account.
2019
+ internalFirewall:
2020
+ label: Allow communication between cluster nodes
2021
+ tooltip: Allows Rancher to open ports required for internal communication between nodes.
2022
+ banner: Tags can be used to impose additional firewall rules.
2023
+ externalFirewall:
2024
+ label: Expose external ports
2025
+ tooltip: Allows Rancher to open ports required for external access.
2026
+ 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.
2027
+ error:
2028
+ diskSizeWithoutMax: Disk size has to be greater than {diskSizeMin} based on this image and disk type.
2029
+ diskSizeWithMax: Disk size has to be between {diskSizeMin} and {diskSizeMax} based on this image and disk type.
2030
+ projects: Image projects should be a comma separated list of alphanumeric string which may contain '-' and '.'
1909
2031
  addOns:
1910
2032
  dependencyBanner: Add-On Configuration can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
1911
2033
  additionalManifest:
@@ -2152,8 +2274,8 @@ cluster:
2152
2274
  rke2:
2153
2275
  banner:
2154
2276
  psaChange: PSACT is now set to Rancher default automatically
2155
- cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
2156
- 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.
2277
+ complianceOverride: Changing this setting may affect cluster security as it overrides default compliance settings
2278
+ 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.
2157
2279
  modal:
2158
2280
  editYamlMachinePool:
2159
2281
  title: Save Machine Configurations
@@ -2180,10 +2302,11 @@ cluster:
2180
2302
  label: Default - RKE2 Embedded
2181
2303
  security:
2182
2304
  header: Security
2183
- cis:
2184
- server: Server CIS Profile
2185
- agent: CIS Profile
2186
- override: Allow the default Pod Security Admission Configuration Template to be overridden when using a CIS Profile
2305
+ compliance:
2306
+ server: Server compliance Profile
2307
+ agent: Compliance Profile
2308
+ override: Allow the default Pod Security Admission Configuration Template to be overridden when using a compliance profile
2309
+ 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
2187
2310
  defaultPodSecurityPolicyTemplateName:
2188
2311
  label: Default Pod Security Policy
2189
2312
  option: Default - RKE2 Embedded
@@ -2194,7 +2317,7 @@ cluster:
2194
2317
  default: Default - RKE2 Embedded
2195
2318
  secretEncryption:
2196
2319
  label: Encrypt Secrets
2197
- cisProfile:
2320
+ complianceProfile:
2198
2321
  option: (None)
2199
2322
  enableNetworkPolicy:
2200
2323
  label: Project Network Isolation
@@ -2470,6 +2593,9 @@ detailText:
2470
2593
  binary: '<Binary Data: {n, number} bytes>'
2471
2594
  empty: '<Empty>'
2472
2595
  unsupported: '<Value not supported by UI, see YAML>'
2596
+ sensitive:
2597
+ hide: Hide Sensitive Values
2598
+ show: Show Sensitive Values
2473
2599
  plusMore: |-
2474
2600
  {n, plural,
2475
2601
  =1 {+ 1 more char}
@@ -2503,6 +2629,99 @@ etcdInfoBanner:
2503
2629
  failedProposals: "Number of failed proposals:"
2504
2630
 
2505
2631
  fleet:
2632
+ settings:
2633
+ label: Fleet
2634
+ title: Fleet Settings
2635
+ info: Rancher will reboot Fleet agent and controller on settings change.
2636
+ apply: Apply changes
2637
+ noPermissions: You have no permissions to modify Fleet Settings
2638
+ parseError: 'Cannot parse values from "{ path }" in "{ id }" ConfigMap'
2639
+ fields:
2640
+ ariaLabel: Fleet {name} setting
2641
+ agentTLSMode:
2642
+ label: TLS Mode
2643
+ description: "Determines whether the agent should trust CA bundles from the operating system's trust store when connecting to a management cluster."
2644
+ options:
2645
+ system-store:
2646
+ label: system-store
2647
+ strict:
2648
+ label: strict
2649
+ agentCheckinInterval:
2650
+ label: Checkin Interval
2651
+ description: A duration string for how often agents should report a heartbeat.
2652
+ garbageCollectionInterval:
2653
+ label: Garbage Collection Interval
2654
+ 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.
2655
+ clusterEnqueueDelay:
2656
+ label: Cluster Enqueue Delay
2657
+ description: "Interval to sync a repo with bundle deployments states."
2658
+ proxy:
2659
+ label: Proxy
2660
+ description: Fleet http[s] proxy server.
2661
+ placeholder: http://<username>@<password>:<url>:<port>
2662
+ noProxy:
2663
+ label: No Proxy
2664
+ description: Comma separated list of domains or ip addresses that will not use the proxy.
2665
+ gitClientTimeout:
2666
+ label: Git Client Timeout
2667
+ 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."
2668
+ nodeSelector:
2669
+ label: Node Selector
2670
+ description: "Node labels for pod assignment."
2671
+ add: Add Selector
2672
+ tolerations:
2673
+ label: Tolerations
2674
+ description: "List of node taints to tolerate (requires Kubernetes >= 1.6)"
2675
+ add: Add Toleration
2676
+ priorityClassName:
2677
+ label: Priority Class Name
2678
+ description: "PriorityClassName assigned to deployment."
2679
+ metrics:
2680
+ label: Metrics
2681
+ description: 'Enable metrics'
2682
+ debug:
2683
+ label: Debug
2684
+ description: 'Enable debug mode'
2685
+ controllerAnnotations:
2686
+ label: Controller
2687
+ description: ""
2688
+ add: Add Annotation
2689
+ gitjobAnnotations:
2690
+ label: Gitjob
2691
+ description: ""
2692
+ add: Add Annotation
2693
+ helmopsAnnotations:
2694
+ label: Helmops
2695
+ description: ""
2696
+ add: Add Annotation
2697
+ controllerReplicas:
2698
+ label: Controller
2699
+ description: ""
2700
+ gitjobReplicas:
2701
+ label: Gitjob
2702
+ description: ""
2703
+ helmopsReplicas:
2704
+ label: Helmops
2705
+ description: ""
2706
+ agentReplicas:
2707
+ label: Agent
2708
+ description: ""
2709
+ general:
2710
+ label: General
2711
+ description: 'General settings.'
2712
+ agent:
2713
+ label: Agent
2714
+ description: 'Agent deployment settings.'
2715
+ replicas:
2716
+ label: Replicas
2717
+ description: 'Number of replicas of Fleet pods.'
2718
+ annotations:
2719
+ label: Extra Annotations
2720
+ description: 'Extra annotations passed to the Fleet pods.'
2721
+ developer:
2722
+ label: Developer
2723
+ description: 'Enable debug info from Fleet.'
2724
+
2506
2725
  tableHeaders:
2507
2726
  applicationType: Type
2508
2727
  applicationSource: Source
@@ -2542,6 +2761,7 @@ fleet:
2542
2761
  resources: Resources
2543
2762
  source: Source
2544
2763
  cluster:
2764
+ label: Cluster
2545
2765
  summary: Resource Summary
2546
2766
  nonReady: Non-Ready Bundles
2547
2767
  labels: Labels
@@ -2578,6 +2798,25 @@ fleet:
2578
2798
  unknown: 'Unknown'
2579
2799
  notReady: Not Ready
2580
2800
  waitApplied: Wait Applied
2801
+ clusterTargets:
2802
+ title: Select by name
2803
+ label: Clusters
2804
+ advancedConfigs: Advanced target configurations are defined, check the YAML file for further details.
2805
+ placeholders:
2806
+ selectMultiple: Select Multiple Clusters
2807
+ rules:
2808
+ title: Select by labels
2809
+ addSelector: Add cluster selector
2810
+ labelKey: Label
2811
+ matching:
2812
+ title: Selected clusters
2813
+ placeholder: Select clusters by name or labels
2814
+ empty: No clusters in the workspace
2815
+ plusMore: |-
2816
+ {n, plural,
2817
+ =1 {+ 1 more cluster}
2818
+ other {+ {n, number} more clusters}
2819
+ }
2581
2820
  application:
2582
2821
  pageTitle: App Bundles
2583
2822
  menuLabel: App Bundles
@@ -2632,11 +2871,24 @@ fleet:
2632
2871
  label: Certificates
2633
2872
  placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
2634
2873
  paths:
2635
- label: Paths
2636
- ariaLabel: Enter path for Git Repo
2874
+ title: Custom paths
2875
+ description: Root directory
2876
+ index: Path {index}
2877
+ description1: The root folder is used by default. Fleet will scan recursively all folders and subfolders to find fleet.yaml files.
2878
+ description2: You can provide multiple different directories. You can also add subpaths to specify different YAML config file paths.
2879
+ ariaLabel: Enter paths for Git Repo
2637
2880
  placeholder: e.g. /directory/in/your/repo
2638
2881
  addLabel: Add Path
2639
- empty: The root of the repo is used by default. Multiple different directories can be provided.
2882
+ enableBundles: Manually specify config files subpaths (Fleet won't scan subfolders recursively to find fleet.yaml files)
2883
+ subpaths:
2884
+ addLabel: Add Subpath
2885
+ protipValue: 'Only necessary if the filename differs from "fleet.yaml"'
2886
+ props:
2887
+ base: Subpath
2888
+ options: Fleet YAML file (optional)
2889
+ placeholders:
2890
+ key: e.g. dev
2891
+ value: e.g. kustomize.yaml
2640
2892
  repo:
2641
2893
  title: Source
2642
2894
  label: Repository URL
@@ -2709,10 +2961,10 @@ fleet:
2709
2961
  clusterGroup: Cluster Group
2710
2962
  label: Deploy To
2711
2963
  labelLocal: Deploy With
2964
+ additionalOptions: Additional settings
2712
2965
  targetDisplay:
2713
2966
  advanced: Advanced
2714
- cluster: "Cluster"
2715
- clusterGroup: "Group"
2967
+ clusters: Clusters
2716
2968
  all: All
2717
2969
  none: None
2718
2970
  local: Local
@@ -2828,6 +3080,10 @@ fleet:
2828
3080
  empty: empty
2829
3081
  valuesFrom:
2830
3082
  selectLabel: Values From
3083
+ options:
3084
+ configMapKeyRef: ConfigMap Key
3085
+ secretKeyRef: Secret Key
3086
+ loading: Loading ConfigMaps and Secrets
2831
3087
  serviceAccount:
2832
3088
  label: Service Account Name
2833
3089
  placeholder: "Optional: Use a service account in the target clusters"
@@ -2841,10 +3097,10 @@ fleet:
2841
3097
  clusterGroup: Cluster Group
2842
3098
  label: Deploy To
2843
3099
  labelLocal: Deploy With
3100
+ additionalOptions: Additional Options
2844
3101
  targetDisplay:
2845
3102
  advanced: Advanced
2846
- cluster: "Cluster"
2847
- clusterGroup: "Group"
3103
+ clusters: Clusters
2848
3104
  all: All
2849
3105
  none: None
2850
3106
  local: Local
@@ -2860,7 +3116,7 @@ fleet:
2860
3116
  pollingInterval:
2861
3117
  label: Polling Interval
2862
3118
  tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
2863
- 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.
3119
+ 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.
2864
3120
  tls:
2865
3121
  insecure: Accept any certificate (insecure)
2866
3122
  auth:
@@ -3395,6 +3651,7 @@ labels:
3395
3651
  addTag: Add Tag
3396
3652
  addTaint: Add Taint
3397
3653
  addAnnotation: Add Annotation
3654
+ protectedWarning: This key is protected and will be discarded
3398
3655
  labels:
3399
3656
  title: Labels
3400
3657
  description: Key/value pairs that are attached to objects which specify identifying attributes.
@@ -3433,8 +3690,10 @@ landing:
3433
3690
  other {cores}}
3434
3691
  cpuUsed: CPU Used
3435
3692
  memoryUsed: Memory Used
3436
- seeWhatsNew: Learn more about the improvements and new capabilities in {version}
3437
- whatsNewLink: "What's new in {version}"
3693
+ whatsNew:
3694
+ title: Welcome to Rancher {version}
3695
+ message: Learn more about the improvements and new capabilities in this version
3696
+ link: Release Notes
3438
3697
  learnMore: Learn More
3439
3698
  support: Support
3440
3699
  community:
@@ -4283,11 +4542,11 @@ networkpolicy:
4283
4542
  invalidCidr: "Invalid CIDR"
4284
4543
  invalidExceptionCidrs: "Invalid Exceptions: "
4285
4544
  podSelector:
4286
- label: Pod Selector
4545
+ label: Pod Label Selector
4287
4546
  namespaceSelector:
4288
- label: Namespace Selector
4547
+ label: Namespace Label Selector
4289
4548
  namespaceAndPodSelector:
4290
- label: Namespace/Pod Selector
4549
+ label: Namespace/Pod Label Selector
4291
4550
  config:
4292
4551
  label: Configuration
4293
4552
  selectors:
@@ -4376,6 +4635,17 @@ node:
4376
4635
  scaleDown: Scale Down
4377
4636
  forceDelete: Force Delete
4378
4637
 
4638
+ notificationCenter:
4639
+ caughtUp: "You're all caught up!"
4640
+ dates:
4641
+ today: Today
4642
+ yesterday: Yesterday
4643
+ markAllRead: Mark all as read
4644
+ markRead: Mark as read
4645
+ markUnread: Mark as unread
4646
+ title: Notifications
4647
+ ariaLabel: 'Notification {title}: Press enter to interact'
4648
+
4379
4649
  persistentVolume:
4380
4650
  pluginConfiguration:
4381
4651
  label: Plugin configuration
@@ -5347,8 +5617,8 @@ rbac:
5347
5617
  label: Manage all Clusters
5348
5618
  description: Allows the user to manage all clusters, including ones they are not a member of.
5349
5619
  clusterscans-manage:
5350
- label: Manage CIS Cluster Scans
5351
- description: Allows the user to launch new and manage CIS cluster scans.
5620
+ label: Manage Compliance Cluster Scans
5621
+ description: Allows the user to launch new and manage compliance cluster scans.
5352
5622
  kontainerdrivers-manage:
5353
5623
  label: Create new Cluster Drivers
5354
5624
  description: Allows the user to create new cluster drivers and become the owner of them.
@@ -5603,6 +5873,13 @@ secret:
5603
5873
  'kubernetes.io/tls':
5604
5874
  description: Store a certificate and key for TLS
5605
5875
  docLink: https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets
5876
+ tabs:
5877
+ namespaced:
5878
+ label: Namespaced
5879
+ create: Create Secret
5880
+ projectScoped:
5881
+ label: Project Scoped
5882
+ create: Create Project Secret
5606
5883
 
5607
5884
  selectOrCreateAuthSecret:
5608
5885
  label: Authentication
@@ -6187,10 +6464,12 @@ tableHeaders:
6187
6464
  flow: Flow
6188
6465
  fingerprint: Fingerprint
6189
6466
  gitRepos: Git Repos
6467
+ helmOps: Helm Ops
6190
6468
  groups: Groups
6191
6469
  groupName: Group Name
6192
6470
  groupRoleNames: Group Role Names
6193
6471
  global-Default: Global-Default
6472
+ helmOpsReady: Helm Ops Ready
6194
6473
  host: Host
6195
6474
  hostIp: Host IP
6196
6475
  holder: Holder
@@ -6284,7 +6563,7 @@ tableHeaders:
6284
6563
  repo: Repo
6285
6564
  repositories: Repositories
6286
6565
  repoName: Repository Name
6287
- reposReady: Repos Ready
6566
+ reposReady: Git Repos Ready
6288
6567
  replicas: Replicas
6289
6568
  reqRate: Req Rate
6290
6569
  resource: Resource
@@ -6303,6 +6582,11 @@ tableHeaders:
6303
6582
  scope: Scope
6304
6583
  selector: Selector
6305
6584
  secrets: Secrets
6585
+ secret:
6586
+ project-clone: Created by Project Secret
6587
+ project-clone-tooltip: Has a Project Scoped Secret created this Secret in this Namespace
6588
+ project-scoped: Project Secret
6589
+ project-scoped-tooltip: This Project Scoped Secret will create matching Secrets in the Namespaces it contains
6306
6590
  schedule: Schedule
6307
6591
  service: Service
6308
6592
  serviceAccounts: Service Accounts
@@ -6576,6 +6860,7 @@ validation:
6576
6860
  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.
6577
6861
  trailingForwardSlash: Server URL should not have a trailing forward slash.
6578
6862
  url: Server URL must be an URL.
6863
+ genericUrl: Field must be a valid URL
6579
6864
  stringLength:
6580
6865
  between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
6581
6866
  exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
@@ -7247,10 +7532,10 @@ typeDescription:
7247
7532
  jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
7248
7533
  branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
7249
7534
  chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
7250
- 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.
7251
- 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.
7252
- 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.
7253
- cis.cattle.io.clusterscanreport: A report is the result of a CIS scan of the cluster.
7535
+ 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.
7536
+ 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.
7537
+ 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.
7538
+ compliance.cattle.io.clusterscanreport: A report is the result of a compliance scan of the cluster.
7254
7539
  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.
7255
7540
  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.
7256
7541
  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.
@@ -7273,24 +7558,30 @@ typeDescription:
7273
7558
  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.
7274
7559
  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.
7275
7560
  group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
7561
+ management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
7276
7562
 
7277
7563
  typeLabel:
7564
+ management.cattle.io.oidcclient: |-
7565
+ {count, plural,
7566
+ one { OIDC App }
7567
+ other { OIDC Apps }
7568
+ }
7278
7569
  management.cattle.io.token: |-
7279
7570
  {count, plural,
7280
7571
  one { API Key }
7281
7572
  other { API Keys }
7282
7573
  }
7283
- cis.cattle.io.clusterscan: |-
7574
+ compliance.cattle.io.clusterscan: |-
7284
7575
  {count, plural,
7285
7576
  one { Scan }
7286
7577
  other { Scans }
7287
7578
  }
7288
- cis.cattle.io.clusterscanprofile: |-
7579
+ compliance.cattle.io.clusterscanprofile: |-
7289
7580
  {count, plural,
7290
7581
  one { Profile }
7291
7582
  other { Profiles }
7292
7583
  }
7293
- cis.cattle.io.clusterscanbenchmark: |-
7584
+ compliance.cattle.io.clusterscanbenchmark: |-
7294
7585
  {count, plural,
7295
7586
  one { Benchmark Version }
7296
7587
  other { Benchmark Versions }
@@ -7581,6 +7872,11 @@ typeLabel:
7581
7872
  one { Secret }
7582
7873
  other { Secrets }
7583
7874
  }
7875
+ projectsecret: |-
7876
+ {count, plural,
7877
+ one { Project Secret }
7878
+ other { Project Secrets }
7879
+ }
7584
7880
  apiregistration.k8s.io.apiservice: |-
7585
7881
  {count, plural,
7586
7882
  one { APIService }
@@ -7837,6 +8133,62 @@ typeLabel:
7837
8133
  other { Cluster Registration Tokens }
7838
8134
  }
7839
8135
 
8136
+ oidcclient:
8137
+ a11y:
8138
+ copyText:
8139
+ issuerURL: Copy Issuer URL to clipboard
8140
+ discoveryDocument: Copy Discovery Document URL to clipboard
8141
+ jwksUri: Copy JWKS URI to clipboard
8142
+ clientId: Copy client Id to clipboard
8143
+ clientSecret: Copy client secret to clipboard
8144
+ usedNever: Never
8145
+ listViewCreate: Add Application
8146
+ oidcEndpoints: Provider Endpoints
8147
+ createClient: Create a new application
8148
+ clientData: Application
8149
+ clientId: Client ID
8150
+ clientSecrets: Client Secrets
8151
+ issuerURL: Issuer URL
8152
+ discoveryDocument: Discovery Document
8153
+ jwksUri: JWKS URI
8154
+ regenerate: Regenerate
8155
+ addNewSecret: Add new secret
8156
+ 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
8157
+ secretRegenerated: Secret regenerated!
8158
+ secretAdded: Secret Added!
8159
+ noClientId: No Client Id found for this application. If the problem persists please recreate the application
8160
+ errors:
8161
+ performSecretAction: The action on OIDC secrets tried to perform is invalid. Please check the the valid parameters for this function
8162
+ removeOidcClientModal:
8163
+ title: OIDC Application deletion
8164
+ content: Are you sure you want to delete the following OIDC applications?
8165
+ action: Delete Application
8166
+ regenModal:
8167
+ title: OIDC Application Secret regeneration
8168
+ content: Are you sure you want to regenerate this OIDC application secret? The old secret will stop working immediately
8169
+ action: Regenerate Secret
8170
+ deleteModal:
8171
+ title: OIDC Application Secret deletion
8172
+ content: Are you sure you want to delete this OIDC application secret? It will stop working immediately
8173
+ action: Delete Secret
8174
+ appName:
8175
+ placeholder: App name shown during the authorization flow
8176
+ appDescription:
8177
+ placeholder: A brief description of your application
8178
+ redirectURIs:
8179
+ label: Authorization Callback URLs
8180
+ addLabel: Add Callback URL
8181
+ valueLabel: Redirect URIs
8182
+ placeholder: The allowed redirect URL for your application after a user authenticates. HTTPS is required. You may add multiple URLs
8183
+ refreshTokenExpirationSeconds:
8184
+ detailLabel: Refresh Token Expiration (seconds)
8185
+ label: Refresh Token Expiration
8186
+ placeholder: Duration (in seconds) a refresh token can be used to obtain new access/ID tokens without re-login
8187
+ tokenExpirationSeconds:
8188
+ detailLabel: Token Expiration (seconds)
8189
+ label: Token Expiration
8190
+ placeholder: Duration (in seconds) the token containing user authentication information is valid
8191
+
7840
8192
  action:
7841
8193
  ariaLabel:
7842
8194
  hidePass: Hide {area}
@@ -7972,7 +8324,8 @@ advancedSettings:
7972
8324
  'brand': Folder name for an alternative theme defined in '/assets/brand'
7973
8325
  'hide-local-cluster': Hide the local cluster
7974
8326
  '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."
7975
- 'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported K3s or RKE2 clusters.
8327
+ '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.
8328
+ 'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
7976
8329
  '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).
7977
8330
  warnings:
7978
8331
  'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
@@ -7998,7 +8351,7 @@ advancedSettings:
7998
8351
  strict: 'Strict'
7999
8352
  system-store: 'System Store'
8000
8353
  provisioning:
8001
- header: Cluster provisioning
8354
+ header: Cluster Provisioning
8002
8355
 
8003
8356
  featureFlags:
8004
8357
  label: Feature Flags
@@ -8296,20 +8649,6 @@ embedding:
8296
8649
  retry: Retry
8297
8650
  unavailable: Cluster Manager UI is not available
8298
8651
 
8299
- legacy:
8300
- alerts: Alerts
8301
- apps: Apps
8302
- catalogs: Catalogs
8303
- configMaps: Config Maps
8304
- configuration: Configuration
8305
- notifiers: Notifiers
8306
- monitoring: Monitoring
8307
- secrets: Secrets
8308
-
8309
- project:
8310
- label: Project
8311
- select: "Use the Project/Namespace filter at the top of the page to select a Project in order to see legacy Project features."
8312
-
8313
8652
  serverUpgrade:
8314
8653
  title: "{vendor} Server Changed"
8315
8654
  message: "The page reloaded because the version of {vendor} running on your server changed."
@@ -8457,6 +8796,22 @@ errors:
8457
8796
  withUrl: '{msg}: {url}'
8458
8797
  withoutUrl: '{msg}'
8459
8798
  component:
8799
+ drawer:
8800
+ chrome:
8801
+ ariaLabel:
8802
+ close: Close {target} drawer
8803
+ close: Close
8804
+ resourceDetailDrawer:
8805
+ title: "{resourceName} ({resourceType}) - Configuration"
8806
+ editConfig: Edit Config
8807
+ editYaml: Edit YAML
8808
+ ariaLabel:
8809
+ editConfig: Edit Config
8810
+ editYaml: Edit YAML
8811
+ yamlTab:
8812
+ title: YAML
8813
+ configTab:
8814
+ title: Config
8460
8815
  resource:
8461
8816
  detail:
8462
8817
  card:
@@ -8493,6 +8848,7 @@ component:
8493
8848
  metadata:
8494
8849
  labelsAndAnnotations: Labels and Annotations
8495
8850
  identifyingInformation:
8851
+ createdBy: Created by
8496
8852
  namespace: Namespace
8497
8853
  project: Project
8498
8854
  age: Age
@@ -8500,6 +8856,12 @@ component:
8500
8856
  ready: Ready
8501
8857
  up-to-date: Up-to-date
8502
8858
  available: Available
8859
+ serviceAccount: Service Account
8860
+ type: Type
8861
+ certificate: Certificate
8862
+ issuer: Issuer
8863
+ expires: Expires
8864
+ workspace: Workspace
8503
8865
  annotations:
8504
8866
  title: Annotations
8505
8867
  labels: