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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (312) 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/global/_form.scss +1 -1
  5. package/assets/styles/global/_labeled-input.scss +1 -1
  6. package/assets/styles/themes/_dark.scss +3 -0
  7. package/assets/styles/themes/_light.scss +3 -0
  8. package/assets/styles/vendor/vue-select.scss +1 -1
  9. package/assets/translations/en-us.yaml +404 -64
  10. package/assets/translations/zh-hans.yaml +3 -4
  11. package/cloud-credential/gcp.vue +9 -1
  12. package/components/AppModal.vue +2 -0
  13. package/components/CodeMirror.vue +1 -1
  14. package/components/ConfigMapSettings/Settings.vue +377 -0
  15. package/components/ConfigMapSettings/index.vue +354 -0
  16. package/components/CruResource.vue +1 -2
  17. package/components/DetailText.vue +61 -11
  18. package/components/Drawer/Chrome.vue +116 -0
  19. package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +61 -0
  20. package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +48 -0
  21. package/components/Drawer/ResourceDetailDrawer/__tests__/ConfigTab.test.ts +54 -0
  22. package/components/Drawer/ResourceDetailDrawer/__tests__/YamlTab.test.ts +80 -0
  23. package/components/Drawer/ResourceDetailDrawer/__tests__/composables.test.ts +82 -0
  24. package/components/Drawer/ResourceDetailDrawer/__tests__/helpers.test.ts +42 -0
  25. package/components/Drawer/ResourceDetailDrawer/composables.ts +50 -0
  26. package/components/Drawer/ResourceDetailDrawer/helpers.ts +10 -0
  27. package/components/Drawer/ResourceDetailDrawer/index.vue +110 -0
  28. package/components/GrowlManager.vue +16 -15
  29. package/components/IconOrSvg.vue +5 -0
  30. package/components/KeyValueView.vue +1 -1
  31. package/components/LocaleSelector.vue +9 -1
  32. package/components/ProgressBarMulti.vue +1 -0
  33. package/components/PromptModal.vue +6 -1
  34. package/components/RelatedResources.vue +4 -12
  35. package/components/Resource/Detail/Additional.vue +46 -0
  36. package/components/Resource/Detail/Metadata/Annotations/__tests__/index.test.ts +1 -1
  37. package/components/Resource/Detail/Metadata/Annotations/index.vue +5 -0
  38. package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +223 -0
  39. package/components/Resource/Detail/Metadata/IdentifyingInformation/composable.ts +37 -254
  40. package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +298 -0
  41. package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +27 -5
  42. package/components/Resource/Detail/Metadata/KeyValue.vue +25 -17
  43. package/components/Resource/Detail/Metadata/Labels/__tests__/index.test.ts +1 -1
  44. package/components/Resource/Detail/Metadata/Labels/index.vue +4 -0
  45. package/components/Resource/Detail/Metadata/__tests__/KeyValue.test.ts +1 -1
  46. package/components/Resource/Detail/Metadata/__tests__/Rectangle.test.ts +1 -1
  47. package/components/Resource/Detail/Metadata/__tests__/composables.test.ts +75 -0
  48. package/components/Resource/Detail/Metadata/composables.ts +60 -11
  49. package/components/Resource/Detail/Metadata/index.vue +12 -5
  50. package/components/Resource/Detail/Page.vue +15 -0
  51. package/components/Resource/Detail/ResourceRow.vue +37 -18
  52. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/composables.test.ts +29 -0
  53. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/index.test.ts +48 -0
  54. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/composables.ts +31 -0
  55. package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/index.vue +50 -0
  56. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/__tests__/composables.test.ts +66 -0
  57. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/composables.ts +21 -0
  58. package/components/Resource/Detail/ResourceTabs/KnownHostsTab/index.vue +31 -0
  59. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Basic.vue +45 -0
  60. package/components/Resource/Detail/ResourceTabs/SecretDataTab/BasicAuth.vue +31 -0
  61. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Certificate.vue +31 -0
  62. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Registry.vue +22 -0
  63. package/components/Resource/Detail/ResourceTabs/SecretDataTab/ServiceAccountToken.vue +31 -0
  64. package/components/Resource/Detail/ResourceTabs/SecretDataTab/Ssh.vue +32 -0
  65. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Basic.test.ts +40 -0
  66. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/BasicAuth.test.ts +33 -0
  67. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Certificate.test.ts +33 -0
  68. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Registry.test.ts +27 -0
  69. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/ServiceAccountToken.test.ts +33 -0
  70. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Ssh.test.ts +33 -0
  71. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/auth-types.test.ts +186 -0
  72. package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/composables.test.ts +102 -0
  73. package/components/Resource/Detail/ResourceTabs/SecretDataTab/auth-types.ts +109 -0
  74. package/components/Resource/Detail/ResourceTabs/SecretDataTab/composeables.ts +52 -0
  75. package/components/Resource/Detail/ResourceTabs/SecretDataTab/index.vue +71 -0
  76. package/components/Resource/Detail/TitleBar/Title.vue +2 -1
  77. package/components/Resource/Detail/TitleBar/__tests__/Title.test.ts +1 -1
  78. package/components/Resource/Detail/TitleBar/__tests__/Top.test.ts +1 -1
  79. package/components/Resource/Detail/TitleBar/__tests__/composables.test.ts +63 -0
  80. package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +1 -1
  81. package/components/Resource/Detail/TitleBar/composables.ts +44 -0
  82. package/components/Resource/Detail/TitleBar/index.vue +83 -11
  83. package/components/Resource/Detail/composables.ts +45 -0
  84. package/components/ResourceDetail/Masthead/__tests__/index.test.ts +70 -0
  85. package/components/ResourceDetail/{__tests__/Masthead.test.ts → Masthead/__tests__/legacy.test.ts} +3 -3
  86. package/components/ResourceDetail/Masthead/index.vue +65 -0
  87. package/components/ResourceDetail/Masthead/latest.vue +44 -0
  88. package/components/ResourceDetail/__tests__/index.test.ts +26 -5
  89. package/components/ResourceDetail/index.vue +30 -16
  90. package/components/ResourceDetail/legacy.vue +18 -1
  91. package/components/ResourceList/Masthead.vue +6 -0
  92. package/components/ResourceYaml.vue +14 -1
  93. package/components/SlideInPanelManager.vue +46 -7
  94. package/components/StateDot/index.vue +28 -0
  95. package/components/Tabbed/index.vue +11 -15
  96. package/components/Wizard.vue +4 -2
  97. package/components/__tests__/ConfigMapSettings.test.ts +376 -0
  98. package/components/__tests__/GrowlManager.test.ts +0 -25
  99. package/components/auth/login/ldap.vue +1 -1
  100. package/components/fleet/FleetApplications.vue +0 -7
  101. package/components/fleet/FleetClusterTargets/TargetsList.vue +66 -0
  102. package/components/fleet/FleetClusterTargets/index.vue +455 -0
  103. package/components/fleet/FleetClusters.vue +25 -6
  104. package/components/fleet/FleetGitRepoPaths.vue +476 -0
  105. package/components/fleet/FleetHelmOps.vue +8 -0
  106. package/components/fleet/FleetRepos.vue +1 -6
  107. package/components/fleet/FleetResources.vue +4 -5
  108. package/components/fleet/FleetValuesFrom.vue +295 -0
  109. package/components/fleet/__tests__/FleetClusterTargets.test.ts +1224 -0
  110. package/components/fleet/__tests__/FleetGitRepoPaths.test.ts +265 -0
  111. package/components/fleet/__tests__/FleetOCIStorageSecret.test.ts +13 -13
  112. package/components/fleet/__tests__/FleetValuesFrom.test.ts +300 -0
  113. package/components/fleet/dashboard/ResourceCard.vue +1 -0
  114. package/components/fleet/dashboard/ResourceCardSummary.vue +1 -5
  115. package/components/fleet/dashboard/ResourceDetails.vue +8 -10
  116. package/components/fleet/dashboard/ResourcePanel.vue +15 -8
  117. package/components/form/ArrayList.vue +13 -2
  118. package/components/form/ChangePassword.vue +3 -1
  119. package/components/form/Footer.vue +10 -4
  120. package/components/form/KeyValue.vue +81 -43
  121. package/components/form/LabeledSelect.vue +56 -16
  122. package/components/form/Labels.vue +90 -17
  123. package/components/form/MatchExpressions.vue +46 -5
  124. package/components/form/NameNsDescription.vue +1 -1
  125. package/components/form/ResourceSelector.vue +1 -0
  126. package/components/form/ResourceTabs/index.vue +5 -0
  127. package/components/form/SecretSelector.vue +9 -2
  128. package/components/form/Select.vue +57 -19
  129. package/components/form/SimpleSecretSelector.vue +9 -2
  130. package/components/form/Taints.vue +21 -2
  131. package/components/form/UnitInput.vue +8 -0
  132. package/components/form/ValueFromResource.vue +1 -1
  133. package/components/form/__tests__/LabeledSelect.test.ts +8 -4
  134. package/components/form/__tests__/Labels.test.ts +360 -0
  135. package/components/form/__tests__/MatchExpressions.test.ts +16 -13
  136. package/components/form/__tests__/Select.test.ts +5 -2
  137. package/components/formatter/FleetApplicationSource.vue +1 -1
  138. package/components/formatter/WorkloadHealthScale.vue +1 -1
  139. package/components/google/AccountAccess.vue +211 -0
  140. package/components/google/types/gcp.d.ts +136 -0
  141. package/components/google/types/index.d.ts +101 -0
  142. package/components/google/util/__mocks__/gcp.ts +465 -0
  143. package/components/google/util/formatter.ts +82 -0
  144. package/components/google/util/gcp.ts +134 -0
  145. package/components/google/util/index.d.ts +11 -0
  146. package/components/nav/Favorite.vue +1 -1
  147. package/components/nav/Group.vue +70 -47
  148. package/components/nav/Header.vue +5 -1
  149. package/components/nav/NamespaceFilter.vue +13 -1
  150. package/components/nav/NotificationCenter/Notification.vue +510 -0
  151. package/components/nav/NotificationCenter/NotificationHeader.vue +112 -0
  152. package/components/nav/NotificationCenter/index.vue +148 -0
  153. package/composables/drawer.ts +26 -0
  154. package/composables/resources.test.ts +63 -0
  155. package/composables/resources.ts +38 -0
  156. package/composables/useIsNewDetailPageEnabled.ts +17 -0
  157. package/config/labels-annotations.js +6 -0
  158. package/config/product/auth.js +16 -1
  159. package/config/product/{cis.js → compliance.js} +23 -26
  160. package/config/product/explorer.js +5 -1
  161. package/config/product/fleet.js +7 -0
  162. package/config/product/settings.js +22 -11
  163. package/config/query-params.js +3 -0
  164. package/config/roles.ts +1 -1
  165. package/config/router/navigation-guards/authentication.js +51 -2
  166. package/config/router/routes.js +27 -31
  167. package/config/settings.ts +21 -3
  168. package/config/store.js +2 -0
  169. package/config/system-namespaces.js +1 -1
  170. package/config/table-headers.js +2 -2
  171. package/config/types.js +15 -6
  172. package/core/plugin.ts +32 -7
  173. package/core/types.ts +18 -1
  174. package/detail/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +22 -18
  175. package/detail/management.cattle.io.fleetworkspace.vue +18 -27
  176. package/detail/management.cattle.io.oidcclient.vue +369 -0
  177. package/detail/node.vue +2 -2
  178. package/detail/pod.vue +2 -2
  179. package/detail/service.vue +10 -1
  180. package/detail/workload/index.vue +8 -2
  181. package/dialog/ExtensionCatalogUninstallDialog.vue +7 -4
  182. package/dialog/GenericPrompt.vue +1 -1
  183. package/dialog/ImportDialog.vue +8 -8
  184. package/dialog/OidcClientSecretDialog.vue +117 -0
  185. package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +3 -3
  186. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +5 -2
  187. package/edit/autoscaling.horizontalpodautoscaler/index.vue +4 -1
  188. package/edit/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +30 -31
  189. package/edit/{cis.cattle.io.clusterscanbenchmark.vue → compliance.cattle.io.clusterscanbenchmark.vue} +4 -4
  190. package/edit/{cis.cattle.io.clusterscanprofile.vue → compliance.cattle.io.clusterscanprofile.vue} +5 -5
  191. package/edit/configmap.vue +4 -1
  192. package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -0
  193. package/edit/fleet.cattle.io.gitrepo.vue +44 -222
  194. package/edit/fleet.cattle.io.helmop.vue +44 -269
  195. package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
  196. package/edit/k8s.cni.cncf.io.networkattachmentdefinition.vue +1 -0
  197. package/edit/logging-flow/index.vue +1 -0
  198. package/edit/logging.banzaicloud.io.output/index.vue +1 -0
  199. package/edit/management.cattle.io.fleetworkspace.vue +1 -0
  200. package/edit/management.cattle.io.oidcclient.vue +162 -0
  201. package/edit/management.cattle.io.project.vue +4 -1
  202. package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +1 -1
  203. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +5 -0
  204. package/edit/monitoring.coreos.com.prometheusrule/index.vue +1 -0
  205. package/edit/monitoring.coreos.com.receiver/auth.vue +30 -30
  206. package/edit/monitoring.coreos.com.receiver/index.vue +1 -0
  207. package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
  208. package/edit/monitoring.coreos.com.route.vue +1 -0
  209. package/edit/namespace.vue +1 -0
  210. package/edit/networking.istio.io.destinationrule/index.vue +4 -1
  211. package/edit/networking.k8s.io.ingress/index.vue +4 -1
  212. package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +7 -2
  213. package/edit/networking.k8s.io.networkpolicy/index.vue +6 -2
  214. package/edit/node.vue +1 -0
  215. package/edit/persistentvolume/index.vue +4 -1
  216. package/edit/provisioning.cattle.io.cluster/rke2.vue +418 -382
  217. package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +27 -27
  218. package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +5 -0
  219. package/edit/resources.cattle.io.restore.vue +1 -1
  220. package/edit/secret/index.vue +1 -0
  221. package/edit/service.vue +4 -1
  222. package/edit/serviceaccount.vue +4 -1
  223. package/edit/storage.k8s.io.storageclass/index.vue +4 -1
  224. package/edit/workload/index.vue +5 -0
  225. package/list/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +2 -2
  226. package/list/management.cattle.io.oidcclient.vue +108 -0
  227. package/list/node.vue +2 -0
  228. package/machine-config/amazonec2.vue +3 -24
  229. package/machine-config/components/GCEImage.vue +374 -0
  230. package/machine-config/google.vue +617 -0
  231. package/mixins/__tests__/brand.spec.ts +170 -0
  232. package/mixins/brand.js +16 -17
  233. package/mixins/create-edit-view/index.js +5 -0
  234. package/mixins/resource-fetch-api-pagination.js +16 -0
  235. package/mixins/vue-select-overrides.js +1 -0
  236. package/models/{cis.cattle.io.clusterscan.js → compliance.cattle.io.clusterscan.js} +8 -8
  237. package/models/{cis.cattle.io.clusterscanbenchmark.js → compliance.cattle.io.clusterscanbenchmark.js} +1 -1
  238. package/models/{cis.cattle.io.clusterscanprofile.js → compliance.cattle.io.clusterscanprofile.js} +5 -5
  239. package/models/{cis.cattle.io.clusterscanreport.js → compliance.cattle.io.clusterscanreport.js} +1 -1
  240. package/models/fleet-application.js +8 -79
  241. package/models/fleet.cattle.io.cluster.js +11 -0
  242. package/models/fleet.cattle.io.gitrepo.js +2 -2
  243. package/models/fleet.cattle.io.helmop.js +9 -39
  244. package/models/management.cattle.io.fleetworkspace.js +2 -1
  245. package/models/management.cattle.io.oidcclient.js +18 -0
  246. package/models/management.cattle.io.registration.js +3 -0
  247. package/models/provisioning.cattle.io.cluster.js +5 -5
  248. package/models/service.js +4 -0
  249. package/models/workload.js +5 -0
  250. package/package.json +1 -1
  251. package/pages/about.vue +4 -58
  252. package/pages/auth/login.vue +1 -1
  253. package/pages/c/_cluster/apps/charts/AddRepoLink.vue +0 -1
  254. package/pages/c/_cluster/apps/charts/index.vue +285 -81
  255. package/pages/c/_cluster/auth/user.retention/index.vue +87 -78
  256. package/pages/c/_cluster/explorer/index.vue +3 -3
  257. package/pages/c/_cluster/explorer/tools/pages/_page.vue +0 -1
  258. package/pages/c/_cluster/fleet/application/create.vue +3 -2
  259. package/pages/c/_cluster/fleet/index.vue +94 -56
  260. package/pages/c/_cluster/fleet/settings/index.vue +229 -0
  261. package/pages/c/_cluster/longhorn/index.vue +5 -2
  262. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +16 -1
  263. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +2 -2
  264. package/pages/explorer/resource/detail/configmap.vue +30 -7
  265. package/pages/explorer/resource/detail/secret.vue +50 -0
  266. package/pages/home.vue +9 -55
  267. package/pages/support/index.vue +4 -6
  268. package/plugins/dashboard-store/actions.js +19 -5
  269. package/plugins/dashboard-store/getters.js +4 -0
  270. package/plugins/dashboard-store/resource-class.js +16 -2
  271. package/plugins/steve/steve-pagination-utils.ts +26 -18
  272. package/plugins/steve/subscribe.js +6 -1
  273. package/rancher-components/Banner/Banner.vue +13 -0
  274. package/rancher-components/Form/Checkbox/Checkbox.vue +9 -4
  275. package/rancher-components/Form/LabeledInput/LabeledInput.vue +1 -1
  276. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +1 -0
  277. package/rancher-components/RcItemCard/RcItemCard.vue +8 -3
  278. package/store/auth.js +2 -0
  279. package/store/catalog.js +23 -1
  280. package/store/growl.js +97 -8
  281. package/store/index.js +6 -0
  282. package/store/notifications.ts +426 -0
  283. package/store/prefs.js +0 -1
  284. package/store/type-map.js +19 -16
  285. package/store/uiplugins.ts +15 -1
  286. package/types/fleet.d.ts +24 -0
  287. package/types/notifications/index.ts +74 -0
  288. package/types/shell/index.d.ts +46 -32
  289. package/types/store/dashboard-store.types.ts +16 -0
  290. package/utils/__tests__/fleet.test.ts +148 -0
  291. package/utils/__tests__/object.test.ts +54 -1
  292. package/utils/__tests__/string.test.ts +273 -1
  293. package/utils/__tests__/time.test.ts +31 -0
  294. package/utils/auth.js +9 -2
  295. package/utils/crypto/encryption.ts +103 -0
  296. package/utils/cspAdaptor.ts +51 -0
  297. package/utils/fleet.ts +54 -65
  298. package/utils/object.js +36 -0
  299. package/utils/pagination-utils.ts +1 -1
  300. package/utils/release-notes.ts +48 -0
  301. package/utils/selector-typed.ts +7 -2
  302. package/utils/string.js +24 -0
  303. package/utils/{time.js → time.ts} +25 -6
  304. package/utils/uiplugins.ts +22 -0
  305. package/utils/validators/formRules/index.ts +3 -0
  306. package/components/Resource/Detail/TitleBar/composable.ts +0 -31
  307. package/config/product/legacy.js +0 -62
  308. package/pages/c/_cluster/legacy/pages/_page.vue +0 -29
  309. package/pages/c/_cluster/legacy/project/_page.vue +0 -57
  310. package/pages/c/_cluster/legacy/project/index.vue +0 -32
  311. package/pages/c/_cluster/legacy/project/pipelines.vue +0 -96
  312. /package/components/ResourceDetail/{Masthead.vue → Masthead/legacy.vue} +0 -0
@@ -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
@@ -748,6 +762,14 @@ assignTo:
748
762
  asyncButton:
749
763
  alt:
750
764
  iconAlt: Async button icon
765
+ registerApplication:
766
+ action: Add Application
767
+ success: Added
768
+ waiting: Adding…
769
+ saveApplication:
770
+ action: Save Application
771
+ success: Saved
772
+ waiting: Saving…
751
773
  apply:
752
774
  action: Apply
753
775
  success: Applied
@@ -1050,15 +1072,19 @@ catalog:
1050
1072
  windowsIncompatible: Linux only
1051
1073
  versionWindowsIncompatible: Linux only version
1052
1074
  header: Charts
1053
- featuredCharts: Featured Charts
1054
- noCharts: 'There are no charts available, have you added any repos or set filters?'
1075
+ noCharts:
1076
+ title: No charts to show
1077
+ messagePart1: <b>Tips:</b> undo the last filter you applied or
1078
+ messagePart2: clear all filters
1079
+ messagePart3: ', and ensure you have the right <a tabindex="0" href={repositoriesUrl} rel="noopener noreferrer nofollow">repositories</a> in place.'
1080
+ messagePart4: 'Want to learn more about Helm Charts and Apps? Read our <a tabindex="0" href="{docsBase}/how-to-guides/new-user-guides/helm-charts-in-rancher" target="_blank" class="secondary-text-link">documentation <i class="icon icon-external-link"></i></a>.'
1055
1081
  noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
1056
1082
  noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
1057
1083
  operatingSystems:
1058
1084
  all: All Operating Systems
1059
1085
  linux: Linux
1060
1086
  windows: Windows
1061
- search: Filter charts results
1087
+ search: Search the catalogue...
1062
1088
  deprecatedChartsFilter:
1063
1089
  label: Show deprecated apps
1064
1090
  addNewRepo:
@@ -1067,8 +1093,29 @@ catalog:
1067
1093
  appChartCard:
1068
1094
  footerItem:
1069
1095
  ariaLabel: Apply filter
1070
- experimentalStatus:
1071
- tooltip: Experimental - using this filter is not yet 100% accurate. Proceed with caution.
1096
+ statusFilterCautions:
1097
+ installation: Installation status cannot be determined with 100% accuracy
1098
+ upgradeable: Upgradeable status cannot be determined with 100% accuracy
1099
+ totalChartsMessage: |-
1100
+ {count , plural,
1101
+ =1 { {count} chart in total }
1102
+ other { {count} charts in total }
1103
+ }
1104
+ totalMatchedChartsMessage: |-
1105
+ {count , plural,
1106
+ =1 { {count} chart matching your criteria. }
1107
+ other { {count} charts matching your criteria. }
1108
+ }
1109
+ resetFilters:
1110
+ title: Clear all filters
1111
+ sort:
1112
+ prefix: Sort by
1113
+ recommended: Recommended
1114
+ lastUpdatedDesc: Last updated
1115
+ alphaAscending: Chart name, A → Z
1116
+ alphaDescending: Chart name, Z → A
1117
+ refreshButton:
1118
+ label: Refresh all repositories
1072
1119
  install:
1073
1120
  action:
1074
1121
  goToUpgrade: Edit/Upgrade
@@ -1273,10 +1320,10 @@ chartHeading:
1273
1320
  overview: Overview
1274
1321
  poweredBy: "Powered by:"
1275
1322
 
1276
- cis:
1323
+ compliance:
1277
1324
  addTest: Add Test ID
1278
1325
  alertNeeded: |-
1279
- Alerting must be enabled within the CIS chart values.yaml.
1326
+ Alerting must be enabled within the compliance chart values.yaml.
1280
1327
  This requires that the <a tabindex="0" href="{link}">{vendor} Monitoring and Alerting app</a> is installed
1281
1328
  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
1329
  alertOnComplete: Alert on scan completion
@@ -1331,6 +1378,9 @@ cis:
1331
1378
  testsSkipped: Tests Skipped
1332
1379
  testsToSkip: Tests to Skip
1333
1380
  alerting: Alerting
1381
+ detail:
1382
+ subRow:
1383
+ noNodes: No Additional Information
1334
1384
 
1335
1385
  cluster:
1336
1386
  jwtAuthentication:
@@ -1508,16 +1558,27 @@ cluster:
1508
1558
  authEncodedJson:
1509
1559
  label: Service Account
1510
1560
  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>.
1561
+ gke: GKE
1562
+ gce: GCE
1563
+ help:
1564
+ 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>
1565
+ gke: |-
1566
+ <p>These IAM roles are required for GKE:</p>
1567
+ <ul>
1568
+ <li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
1569
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1570
+ <li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
1571
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1572
+ </ul>
1573
+ 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>.
1574
+ gce: |-
1575
+ <p>These IAM roles are required for GCE:</p>
1576
+ <ul>
1577
+ <li><b>Compute Engine:</b> Compute Engine Admin (roles/compute.admin)</li>
1578
+ <li><b>Project:</b> Viewer (roles/viewer)</li>
1579
+ <li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
1580
+ </ul>
1581
+ 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
1582
  harvester:
1522
1583
  namespace: Namespace
1523
1584
  cpu: CPUs
@@ -1906,6 +1967,63 @@ cluster:
1906
1967
  label: Network
1907
1968
  serverOs:
1908
1969
  label: OS
1970
+ gce:
1971
+ machineImage:
1972
+ label: Machine Image
1973
+ option: '{name} - {description}'
1974
+ deprecatedOption: '{name}(deprecated) - {description}'
1975
+ tooltip: Please select Image Family to get available images
1976
+ imageProjects:
1977
+ label: Image Projects
1978
+ firewall:
1979
+ header: Firewall Configuration
1980
+ showDeprecated:
1981
+ label: Show Deprecated
1982
+ tooltip: Includes deprecated images
1983
+ diskType:
1984
+ label: Disk Type
1985
+ diskSize:
1986
+ label: Disk Size
1987
+ network:
1988
+ label: Network
1989
+ subnetwork:
1990
+ label: Subnetwork
1991
+ machineType:
1992
+ label: Machine Type
1993
+ family:
1994
+ label: Image Family
1995
+ location:
1996
+ zone:
1997
+ label: Zone
1998
+ scopes:
1999
+ add: Add scope
2000
+ label: Scopes
2001
+ tags:
2002
+ add: Add tags
2003
+ label: Tags
2004
+ openPort:
2005
+ add: Add port
2006
+ label: Open Ports
2007
+ address:
2008
+ label: External Address
2009
+ placeholder: '10.0.0.0/14'
2010
+ tooltip: External IP address for the GCE VM instance.
2011
+ username:
2012
+ label: Username
2013
+ placeholder: docker-user
2014
+ tooltip: This is the username used when SSH'ing into the node, and not a username associated with the GCP account.
2015
+ internalFirewall:
2016
+ label: Allow communication between cluster nodes
2017
+ tooltip: Allows Rancher to open ports required for internal communication between nodes.
2018
+ banner: Tags can be used to impose additional firewall rules.
2019
+ externalFirewall:
2020
+ label: Expose external ports
2021
+ tooltip: Allows Rancher to open ports required for external access.
2022
+ 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.
2023
+ error:
2024
+ diskSizeWithoutMax: Disk size has to be greater than {diskSizeMin} based on this image and disk type.
2025
+ diskSizeWithMax: Disk size has to be between {diskSizeMin} and {diskSizeMax} based on this image and disk type.
2026
+ projects: Image projects should be a comma separated list of alphanumeric string which may contain '-' and '.'
1909
2027
  addOns:
1910
2028
  dependencyBanner: Add-On Configuration can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
1911
2029
  additionalManifest:
@@ -2152,8 +2270,8 @@ cluster:
2152
2270
  rke2:
2153
2271
  banner:
2154
2272
  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.
2273
+ complianceOverride: Changing this setting may affect cluster security as it overrides default compliance settings
2274
+ 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
2275
  modal:
2158
2276
  editYamlMachinePool:
2159
2277
  title: Save Machine Configurations
@@ -2180,10 +2298,10 @@ cluster:
2180
2298
  label: Default - RKE2 Embedded
2181
2299
  security:
2182
2300
  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
2301
+ compliance:
2302
+ server: Server compliance Profile
2303
+ agent: Compliance Profile
2304
+ override: Allow the default Pod Security Admission Configuration Template to be overridden when using a compliance profile
2187
2305
  defaultPodSecurityPolicyTemplateName:
2188
2306
  label: Default Pod Security Policy
2189
2307
  option: Default - RKE2 Embedded
@@ -2194,7 +2312,7 @@ cluster:
2194
2312
  default: Default - RKE2 Embedded
2195
2313
  secretEncryption:
2196
2314
  label: Encrypt Secrets
2197
- cisProfile:
2315
+ complianceProfile:
2198
2316
  option: (None)
2199
2317
  enableNetworkPolicy:
2200
2318
  label: Project Network Isolation
@@ -2470,6 +2588,9 @@ detailText:
2470
2588
  binary: '<Binary Data: {n, number} bytes>'
2471
2589
  empty: '<Empty>'
2472
2590
  unsupported: '<Value not supported by UI, see YAML>'
2591
+ sensitive:
2592
+ hide: Hide Sensitive Values
2593
+ show: Show Sensitive Values
2473
2594
  plusMore: |-
2474
2595
  {n, plural,
2475
2596
  =1 {+ 1 more char}
@@ -2503,6 +2624,99 @@ etcdInfoBanner:
2503
2624
  failedProposals: "Number of failed proposals:"
2504
2625
 
2505
2626
  fleet:
2627
+ settings:
2628
+ label: Fleet
2629
+ title: Fleet Settings
2630
+ info: Rancher will reboot Fleet agent and controller on settings change.
2631
+ apply: Apply changes
2632
+ noPermissions: You have no permissions to modify Fleet Settings
2633
+ parseError: 'Cannot parse values from "{ path }" in "{ id }" ConfigMap'
2634
+ fields:
2635
+ ariaLabel: Fleet {name} setting
2636
+ agentTLSMode:
2637
+ label: TLS Mode
2638
+ description: "Determines whether the agent should trust CA bundles from the operating system's trust store when connecting to a management cluster."
2639
+ options:
2640
+ system-store:
2641
+ label: system-store
2642
+ strict:
2643
+ label: strict
2644
+ agentCheckinInterval:
2645
+ label: Checkin Interval
2646
+ description: A duration string for how often agents should report a heartbeat.
2647
+ garbageCollectionInterval:
2648
+ label: Garbage Collection Interval
2649
+ 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.
2650
+ clusterEnqueueDelay:
2651
+ label: Cluster Enqueue Delay
2652
+ description: "Interval to sync a repo with bundle deployments states."
2653
+ proxy:
2654
+ label: Proxy
2655
+ description: Fleet http[s] proxy server.
2656
+ placeholder: http://<username>@<password>:<url>:<port>
2657
+ noProxy:
2658
+ label: No Proxy
2659
+ description: Comma separated list of domains or ip addresses that will not use the proxy.
2660
+ gitClientTimeout:
2661
+ label: Git Client Timeout
2662
+ 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."
2663
+ nodeSelector:
2664
+ label: Node Selector
2665
+ description: "Node labels for pod assignment."
2666
+ add: Add Selector
2667
+ tolerations:
2668
+ label: Tolerations
2669
+ description: "List of node taints to tolerate (requires Kubernetes >= 1.6)"
2670
+ add: Add Toleration
2671
+ priorityClassName:
2672
+ label: Priority Class Name
2673
+ description: "PriorityClassName assigned to deployment."
2674
+ metrics:
2675
+ label: Metrics
2676
+ description: 'Enable metrics'
2677
+ debug:
2678
+ label: Debug
2679
+ description: 'Enable debug mode'
2680
+ controllerAnnotations:
2681
+ label: Controller
2682
+ description: ""
2683
+ add: Add Annotation
2684
+ gitjobAnnotations:
2685
+ label: Gitjob
2686
+ description: ""
2687
+ add: Add Annotation
2688
+ helmopsAnnotations:
2689
+ label: Helmops
2690
+ description: ""
2691
+ add: Add Annotation
2692
+ controllerReplicas:
2693
+ label: Controller
2694
+ description: ""
2695
+ gitjobReplicas:
2696
+ label: Gitjob
2697
+ description: ""
2698
+ helmopsReplicas:
2699
+ label: Helmops
2700
+ description: ""
2701
+ agentReplicas:
2702
+ label: Agent
2703
+ description: ""
2704
+ general:
2705
+ label: General
2706
+ description: 'General settings.'
2707
+ agent:
2708
+ label: Agent
2709
+ description: 'Agent deployment settings.'
2710
+ replicas:
2711
+ label: Replicas
2712
+ description: 'Number of replicas of Fleet pods.'
2713
+ annotations:
2714
+ label: Extra Annotations
2715
+ description: 'Extra annotations passed to the Fleet pods.'
2716
+ developer:
2717
+ label: Developer
2718
+ description: 'Enable debug info from Fleet.'
2719
+
2506
2720
  tableHeaders:
2507
2721
  applicationType: Type
2508
2722
  applicationSource: Source
@@ -2542,6 +2756,7 @@ fleet:
2542
2756
  resources: Resources
2543
2757
  source: Source
2544
2758
  cluster:
2759
+ label: Cluster
2545
2760
  summary: Resource Summary
2546
2761
  nonReady: Non-Ready Bundles
2547
2762
  labels: Labels
@@ -2578,6 +2793,25 @@ fleet:
2578
2793
  unknown: 'Unknown'
2579
2794
  notReady: Not Ready
2580
2795
  waitApplied: Wait Applied
2796
+ clusterTargets:
2797
+ title: Select by name
2798
+ label: Clusters
2799
+ advancedConfigs: Advanced target configurations are defined, check the YAML file for further details.
2800
+ placeholders:
2801
+ selectMultiple: Select Multiple Clusters
2802
+ rules:
2803
+ title: Select by labels
2804
+ addSelector: Add cluster selector
2805
+ labelKey: Label
2806
+ matching:
2807
+ title: Selected clusters
2808
+ placeholder: Select clusters by name or labels
2809
+ empty: No clusters in the workspace
2810
+ plusMore: |-
2811
+ {n, plural,
2812
+ =1 {+ 1 more cluster}
2813
+ other {+ {n, number} more clusters}
2814
+ }
2581
2815
  application:
2582
2816
  pageTitle: App Bundles
2583
2817
  menuLabel: App Bundles
@@ -2632,11 +2866,24 @@ fleet:
2632
2866
  label: Certificates
2633
2867
  placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
2634
2868
  paths:
2635
- label: Paths
2636
- ariaLabel: Enter path for Git Repo
2869
+ title: Custom paths
2870
+ description: Root directory
2871
+ index: Path {index}
2872
+ description1: The root folder is used by default. Fleet will scan recursively all folders and subfolders to find fleet.yaml files.
2873
+ description2: You can provide multiple different directories. You can also add subpaths to specify different YAML config file paths.
2874
+ ariaLabel: Enter paths for Git Repo
2637
2875
  placeholder: e.g. /directory/in/your/repo
2638
2876
  addLabel: Add Path
2639
- empty: The root of the repo is used by default. Multiple different directories can be provided.
2877
+ enableBundles: Manually specify config files subpaths (Fleet won't scan subfolders recursively to find fleet.yaml files)
2878
+ subpaths:
2879
+ addLabel: Add Subpath
2880
+ protipValue: 'Only necessary if the filename differs from "fleet.yaml"'
2881
+ props:
2882
+ base: Subpath
2883
+ options: Fleet YAML file (optional)
2884
+ placeholders:
2885
+ key: e.g. dev
2886
+ value: e.g. kustomize.yaml
2640
2887
  repo:
2641
2888
  title: Source
2642
2889
  label: Repository URL
@@ -2709,10 +2956,10 @@ fleet:
2709
2956
  clusterGroup: Cluster Group
2710
2957
  label: Deploy To
2711
2958
  labelLocal: Deploy With
2959
+ additionalOptions: Additional settings
2712
2960
  targetDisplay:
2713
2961
  advanced: Advanced
2714
- cluster: "Cluster"
2715
- clusterGroup: "Group"
2962
+ clusters: Clusters
2716
2963
  all: All
2717
2964
  none: None
2718
2965
  local: Local
@@ -2828,6 +3075,10 @@ fleet:
2828
3075
  empty: empty
2829
3076
  valuesFrom:
2830
3077
  selectLabel: Values From
3078
+ options:
3079
+ configMapKeyRef: ConfigMap Key
3080
+ secretKeyRef: Secret Key
3081
+ loading: Loading ConfigMaps and Secrets
2831
3082
  serviceAccount:
2832
3083
  label: Service Account Name
2833
3084
  placeholder: "Optional: Use a service account in the target clusters"
@@ -2841,10 +3092,10 @@ fleet:
2841
3092
  clusterGroup: Cluster Group
2842
3093
  label: Deploy To
2843
3094
  labelLocal: Deploy With
3095
+ additionalOptions: Additional Options
2844
3096
  targetDisplay:
2845
3097
  advanced: Advanced
2846
- cluster: "Cluster"
2847
- clusterGroup: "Group"
3098
+ clusters: Clusters
2848
3099
  all: All
2849
3100
  none: None
2850
3101
  local: Local
@@ -2860,7 +3111,7 @@ fleet:
2860
3111
  pollingInterval:
2861
3112
  label: Polling Interval
2862
3113
  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.
3114
+ 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
3115
  tls:
2865
3116
  insecure: Accept any certificate (insecure)
2866
3117
  auth:
@@ -3395,6 +3646,7 @@ labels:
3395
3646
  addTag: Add Tag
3396
3647
  addTaint: Add Taint
3397
3648
  addAnnotation: Add Annotation
3649
+ protectedWarning: This key is protected and will be discarded
3398
3650
  labels:
3399
3651
  title: Labels
3400
3652
  description: Key/value pairs that are attached to objects which specify identifying attributes.
@@ -3433,8 +3685,10 @@ landing:
3433
3685
  other {cores}}
3434
3686
  cpuUsed: CPU Used
3435
3687
  memoryUsed: Memory Used
3436
- seeWhatsNew: Learn more about the improvements and new capabilities in {version}
3437
- whatsNewLink: "What's new in {version}"
3688
+ whatsNew:
3689
+ title: Welcome to Rancher {version}
3690
+ message: Learn more about the improvements and new capabilities in this version
3691
+ link: Release Notes
3438
3692
  learnMore: Learn More
3439
3693
  support: Support
3440
3694
  community:
@@ -4283,11 +4537,11 @@ networkpolicy:
4283
4537
  invalidCidr: "Invalid CIDR"
4284
4538
  invalidExceptionCidrs: "Invalid Exceptions: "
4285
4539
  podSelector:
4286
- label: Pod Selector
4540
+ label: Pod Label Selector
4287
4541
  namespaceSelector:
4288
- label: Namespace Selector
4542
+ label: Namespace Label Selector
4289
4543
  namespaceAndPodSelector:
4290
- label: Namespace/Pod Selector
4544
+ label: Namespace/Pod Label Selector
4291
4545
  config:
4292
4546
  label: Configuration
4293
4547
  selectors:
@@ -4376,6 +4630,17 @@ node:
4376
4630
  scaleDown: Scale Down
4377
4631
  forceDelete: Force Delete
4378
4632
 
4633
+ notificationCenter:
4634
+ caughtUp: "You're all caught up!"
4635
+ dates:
4636
+ today: Today
4637
+ yesterday: Yesterday
4638
+ markAllRead: Mark all as read
4639
+ markRead: Mark as read
4640
+ markUnread: Mark as unread
4641
+ title: Notifications
4642
+ ariaLabel: 'Notification {title}: Press enter to interact'
4643
+
4379
4644
  persistentVolume:
4380
4645
  pluginConfiguration:
4381
4646
  label: Plugin configuration
@@ -5347,8 +5612,8 @@ rbac:
5347
5612
  label: Manage all Clusters
5348
5613
  description: Allows the user to manage all clusters, including ones they are not a member of.
5349
5614
  clusterscans-manage:
5350
- label: Manage CIS Cluster Scans
5351
- description: Allows the user to launch new and manage CIS cluster scans.
5615
+ label: Manage Compliance Cluster Scans
5616
+ description: Allows the user to launch new and manage compliance cluster scans.
5352
5617
  kontainerdrivers-manage:
5353
5618
  label: Create new Cluster Drivers
5354
5619
  description: Allows the user to create new cluster drivers and become the owner of them.
@@ -6187,10 +6452,12 @@ tableHeaders:
6187
6452
  flow: Flow
6188
6453
  fingerprint: Fingerprint
6189
6454
  gitRepos: Git Repos
6455
+ helmOps: Helm Ops
6190
6456
  groups: Groups
6191
6457
  groupName: Group Name
6192
6458
  groupRoleNames: Group Role Names
6193
6459
  global-Default: Global-Default
6460
+ helmOpsReady: Helm Ops Ready
6194
6461
  host: Host
6195
6462
  hostIp: Host IP
6196
6463
  holder: Holder
@@ -6284,7 +6551,7 @@ tableHeaders:
6284
6551
  repo: Repo
6285
6552
  repositories: Repositories
6286
6553
  repoName: Repository Name
6287
- reposReady: Repos Ready
6554
+ reposReady: Git Repos Ready
6288
6555
  replicas: Replicas
6289
6556
  reqRate: Req Rate
6290
6557
  resource: Resource
@@ -6576,6 +6843,7 @@ validation:
6576
6843
  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
6844
  trailingForwardSlash: Server URL should not have a trailing forward slash.
6578
6845
  url: Server URL must be an URL.
6846
+ genericUrl: Field must be a valid URL
6579
6847
  stringLength:
6580
6848
  between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
6581
6849
  exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
@@ -7247,10 +7515,10 @@ typeDescription:
7247
7515
  jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
7248
7516
  branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
7249
7517
  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.
7518
+ 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.
7519
+ 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.
7520
+ 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.
7521
+ compliance.cattle.io.clusterscanreport: A report is the result of a compliance scan of the cluster.
7254
7522
  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
7523
  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
7524
  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 +7541,30 @@ typeDescription:
7273
7541
  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
7542
  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
7543
  group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
7544
+ management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
7276
7545
 
7277
7546
  typeLabel:
7547
+ management.cattle.io.oidcclient: |-
7548
+ {count, plural,
7549
+ one { OIDC App }
7550
+ other { OIDC Apps }
7551
+ }
7278
7552
  management.cattle.io.token: |-
7279
7553
  {count, plural,
7280
7554
  one { API Key }
7281
7555
  other { API Keys }
7282
7556
  }
7283
- cis.cattle.io.clusterscan: |-
7557
+ compliance.cattle.io.clusterscan: |-
7284
7558
  {count, plural,
7285
7559
  one { Scan }
7286
7560
  other { Scans }
7287
7561
  }
7288
- cis.cattle.io.clusterscanprofile: |-
7562
+ compliance.cattle.io.clusterscanprofile: |-
7289
7563
  {count, plural,
7290
7564
  one { Profile }
7291
7565
  other { Profiles }
7292
7566
  }
7293
- cis.cattle.io.clusterscanbenchmark: |-
7567
+ compliance.cattle.io.clusterscanbenchmark: |-
7294
7568
  {count, plural,
7295
7569
  one { Benchmark Version }
7296
7570
  other { Benchmark Versions }
@@ -7837,6 +8111,62 @@ typeLabel:
7837
8111
  other { Cluster Registration Tokens }
7838
8112
  }
7839
8113
 
8114
+ oidcclient:
8115
+ a11y:
8116
+ copyText:
8117
+ issuerURL: Copy Issuer URL to clipboard
8118
+ discoveryDocument: Copy Discovery Document URL to clipboard
8119
+ jwksUri: Copy JWKS URI to clipboard
8120
+ clientId: Copy client Id to clipboard
8121
+ clientSecret: Copy client secret to clipboard
8122
+ usedNever: Never
8123
+ listViewCreate: Add Application
8124
+ oidcEndpoints: Provider Endpoints
8125
+ createClient: Create a new application
8126
+ clientData: Application
8127
+ clientId: Client ID
8128
+ clientSecrets: Client Secrets
8129
+ issuerURL: Issuer URL
8130
+ discoveryDocument: Discovery Document
8131
+ jwksUri: JWKS URI
8132
+ regenerate: Regenerate
8133
+ addNewSecret: Add new secret
8134
+ 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
8135
+ secretRegenerated: Secret regenerated!
8136
+ secretAdded: Secret Added!
8137
+ noClientId: No Client Id found for this application. If the problem persists please recreate the application
8138
+ errors:
8139
+ performSecretAction: The action on OIDC secrets tried to perform is invalid. Please check the the valid parameters for this function
8140
+ removeOidcClientModal:
8141
+ title: OIDC Application deletion
8142
+ content: Are you sure you want to delete the following OIDC applications?
8143
+ action: Delete Application
8144
+ regenModal:
8145
+ title: OIDC Application Secret regeneration
8146
+ content: Are you sure you want to regenerate this OIDC application secret? The old secret will stop working immediately
8147
+ action: Regenerate Secret
8148
+ deleteModal:
8149
+ title: OIDC Application Secret deletion
8150
+ content: Are you sure you want to delete this OIDC application secret? It will stop working immediately
8151
+ action: Delete Secret
8152
+ appName:
8153
+ placeholder: App name shown during the authorization flow
8154
+ appDescription:
8155
+ placeholder: A brief description of your application
8156
+ redirectURIs:
8157
+ label: Authorization Callback URLs
8158
+ addLabel: Add Callback URL
8159
+ valueLabel: Redirect URIs
8160
+ placeholder: The allowed redirect URL for your application after a user authenticates. HTTPS is required. You may add multiple URLs
8161
+ refreshTokenExpirationSeconds:
8162
+ detailLabel: Refresh Token Expiration (seconds)
8163
+ label: Refresh Token Expiration
8164
+ placeholder: Duration (in seconds) a refresh token can be used to obtain new access/ID tokens without re-login
8165
+ tokenExpirationSeconds:
8166
+ detailLabel: Token Expiration (seconds)
8167
+ label: Token Expiration
8168
+ placeholder: Duration (in seconds) the token containing user authentication information is valid
8169
+
7840
8170
  action:
7841
8171
  ariaLabel:
7842
8172
  hidePass: Hide {area}
@@ -7972,7 +8302,8 @@ advancedSettings:
7972
8302
  'brand': Folder name for an alternative theme defined in '/assets/brand'
7973
8303
  'hide-local-cluster': Hide the local cluster
7974
8304
  '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.
8305
+ '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.
8306
+ '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
8307
  '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
8308
  warnings:
7978
8309
  'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
@@ -7998,7 +8329,7 @@ advancedSettings:
7998
8329
  strict: 'Strict'
7999
8330
  system-store: 'System Store'
8000
8331
  provisioning:
8001
- header: Cluster provisioning
8332
+ header: Cluster Provisioning
8002
8333
 
8003
8334
  featureFlags:
8004
8335
  label: Feature Flags
@@ -8296,20 +8627,6 @@ embedding:
8296
8627
  retry: Retry
8297
8628
  unavailable: Cluster Manager UI is not available
8298
8629
 
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
8630
  serverUpgrade:
8314
8631
  title: "{vendor} Server Changed"
8315
8632
  message: "The page reloaded because the version of {vendor} running on your server changed."
@@ -8457,6 +8774,22 @@ errors:
8457
8774
  withUrl: '{msg}: {url}'
8458
8775
  withoutUrl: '{msg}'
8459
8776
  component:
8777
+ drawer:
8778
+ chrome:
8779
+ ariaLabel:
8780
+ close: Close {target} drawer
8781
+ close: Close
8782
+ resourceDetailDrawer:
8783
+ title: "{resourceName} ({resourceType}) - Configuration"
8784
+ editConfig: Edit Config
8785
+ editYaml: Edit YAML
8786
+ ariaLabel:
8787
+ editConfig: Edit Config
8788
+ editYaml: Edit YAML
8789
+ yamlTab:
8790
+ title: YAML
8791
+ configTab:
8792
+ title: Config
8460
8793
  resource:
8461
8794
  detail:
8462
8795
  card:
@@ -8493,6 +8826,7 @@ component:
8493
8826
  metadata:
8494
8827
  labelsAndAnnotations: Labels and Annotations
8495
8828
  identifyingInformation:
8829
+ createdBy: Created by
8496
8830
  namespace: Namespace
8497
8831
  project: Project
8498
8832
  age: Age
@@ -8500,6 +8834,12 @@ component:
8500
8834
  ready: Ready
8501
8835
  up-to-date: Up-to-date
8502
8836
  available: Available
8837
+ serviceAccount: Service Account
8838
+ type: Type
8839
+ certificate: Certificate
8840
+ issuer: Issuer
8841
+ expires: Expires
8842
+ workspace: Workspace
8503
8843
  annotations:
8504
8844
  title: Annotations
8505
8845
  labels: