@rancher/shell 0.1.2 → 0.1.4

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 (347) hide show
  1. package/assets/brand/suse/dark/rancher-logo.svg +1 -148
  2. package/assets/brand/suse/rancher-logo.svg +1 -130
  3. package/assets/images/featured/img1.jpg +0 -0
  4. package/assets/images/featured.jpg +0 -0
  5. package/assets/images/generic-plugin.svg +7 -0
  6. package/assets/styles/themes/_dark.scss +3 -0
  7. package/assets/styles/themes/_light.scss +3 -0
  8. package/assets/styles/themes/_suse.scss +1 -1
  9. package/assets/translations/en-us.yaml +209 -813
  10. package/assets/translations/zh-hans.yaml +28 -792
  11. package/components/ActionMenu.vue +3 -3
  12. package/components/AsyncButton.vue +17 -2
  13. package/components/ButtonDropdown.vue +4 -0
  14. package/components/Carousel.vue +291 -0
  15. package/components/CodeMirror.vue +6 -8
  16. package/components/CommunityLinks.vue +70 -19
  17. package/components/ContainerResourceLimit.vue +14 -0
  18. package/components/CruResource.vue +11 -3
  19. package/components/Dialog.vue +102 -0
  20. package/components/ExplorerMembers.vue +121 -0
  21. package/components/ExplorerProjectsNamespaces.vue +404 -0
  22. package/components/GrafanaDashboard.vue +17 -2
  23. package/components/IconMessage.vue +9 -1
  24. package/components/LocaleSelector.vue +114 -0
  25. package/components/PromptModal.vue +2 -3
  26. package/components/ResourceList/index.vue +1 -1
  27. package/components/ResourceTable.vue +9 -7
  28. package/components/SimpleBox.vue +6 -4
  29. package/components/SingleClusterInfo.vue +1 -1
  30. package/components/SortableTable/index.vue +18 -25
  31. package/components/SortableTable/selection.js +1 -0
  32. package/components/Tabbed/Tab.vue +5 -0
  33. package/components/Tabbed/index.vue +29 -2
  34. package/components/auth/AzureWarning.vue +5 -1
  35. package/components/auth/Principal.vue +2 -1
  36. package/components/auth/RoleDetailEdit.vue +18 -11
  37. package/components/fleet/FleetBundles.vue +8 -3
  38. package/components/fleet/FleetRepos.vue +0 -2
  39. package/components/fleet/FleetSummary.vue +6 -0
  40. package/components/form/KeyValue.vue +80 -58
  41. package/components/form/NameNsDescription.vue +12 -8
  42. package/components/form/NodeScheduling.vue +1 -1
  43. package/components/form/ResourceTabs/index.vue +5 -1
  44. package/components/form/WorkloadPorts.vue +1 -1
  45. package/components/formatter/ClusterLink.vue +3 -7
  46. package/components/formatter/WorkloadHealthScale.vue +1 -1
  47. package/components/nav/Header.vue +9 -9
  48. package/components/nav/NamespaceFilter.vue +10 -7
  49. package/components/nav/TopLevelMenu.vue +10 -65
  50. package/components/nav/WindowManager/ContainerLogs.vue +1 -1
  51. package/config/footer.js +13 -14
  52. package/config/labels-annotations.js +2 -1
  53. package/config/product/explorer.js +5 -4
  54. package/config/product/harvester-manager.js +64 -2
  55. package/config/product/legacy.js +0 -47
  56. package/config/product/manager.js +9 -0
  57. package/config/product/multi-cluster-apps.js +0 -12
  58. package/config/product/settings.js +12 -1
  59. package/config/product/uiplugins.js +17 -0
  60. package/config/settings.js +37 -72
  61. package/config/table-headers.js +0 -1
  62. package/config/types.js +9 -25
  63. package/config/uiplugins.js +60 -0
  64. package/content/docs/en-us/getting-started.md +1 -26
  65. package/core/plugin-routes.ts +34 -22
  66. package/core/plugin.ts +15 -3
  67. package/core/plugins-loader.js +2 -0
  68. package/core/plugins.js +91 -36
  69. package/core/types.ts +7 -1
  70. package/detail/provisioning.cattle.io.cluster.vue +15 -2
  71. package/detail/workload/index.vue +11 -5
  72. package/{components/dialog → dialog}/AddClusterMemberDialog.vue +0 -0
  73. package/{components/dialog → dialog}/AddCustomBadgeDialog.vue +0 -0
  74. package/{components/dialog → dialog}/AddProjectMemberDialog.vue +0 -0
  75. package/{components/dialog → dialog}/AddonConfigConfirmationDialog.vue +0 -0
  76. package/dialog/DiagnosticTimingsDialog.vue +116 -0
  77. package/{components/dialog → dialog}/DrainNode.vue +0 -0
  78. package/{components/dialog → dialog}/ForceMachineRemoveDialog.vue +0 -0
  79. package/{components/dialog → dialog}/GenericPrompt.vue +0 -0
  80. package/{components/dialog → dialog}/RollbackWorkloadDialog.vue +0 -0
  81. package/{components/dialog → dialog}/RotateCertificatesDialog.vue +9 -3
  82. package/{components/dialog → dialog}/RotateEncryptionKeyDialog.vue +0 -0
  83. package/{components/dialog → dialog}/SaveAsRKETemplateDialog.vue +0 -0
  84. package/{components/dialog → dialog}/ScaleMachineDownDialog.vue +0 -0
  85. package/edit/auth/azuread.vue +44 -6
  86. package/edit/management.cattle.io.project.vue +2 -2
  87. package/edit/namespace.vue +17 -10
  88. package/edit/networking.k8s.io.ingress/index.vue +2 -2
  89. package/edit/persistentvolume/index.vue +3 -0
  90. package/edit/persistentvolumeclaim.vue +1 -0
  91. package/edit/pod.vue +27 -0
  92. package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +1 -1
  93. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +33 -5
  94. package/edit/provisioning.cattle.io.cluster/rke2.vue +76 -5
  95. package/edit/service.vue +8 -6
  96. package/edit/workload/__tests__/Upgrading.test.ts +1 -0
  97. package/edit/workload/index.vue +375 -15
  98. package/edit/workload/mixins/workload.js +62 -7
  99. package/edit/workload/storage/ContainerMountPaths.vue +240 -0
  100. package/edit/workload/storage/Mount.vue +1 -0
  101. package/edit/workload/storage/awsElasticBlockStore.vue +20 -1
  102. package/edit/workload/storage/azureDisk.vue +22 -2
  103. package/edit/workload/storage/azureFile.vue +20 -2
  104. package/edit/workload/storage/csi/index.vue +23 -1
  105. package/edit/workload/storage/gcePersistentDisk.vue +20 -2
  106. package/edit/workload/storage/index.vue +23 -49
  107. package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -0
  108. package/edit/workload/storage/vsphereVolume.vue +11 -1
  109. package/layouts/default.vue +63 -32
  110. package/layouts/error.vue +5 -1
  111. package/layouts/home.vue +14 -5
  112. package/layouts/plain.vue +10 -5
  113. package/list/harvesterhci.io.management.cluster.vue +74 -33
  114. package/list/management.cattle.io.setting.vue +3 -3
  115. package/list/namespace.vue +3 -5
  116. package/list/provisioning.cattle.io.cluster.vue +1 -1
  117. package/machine-config/amazonec2.vue +2 -0
  118. package/machine-config/harvester.vue +100 -51
  119. package/middleware/authenticated.js +56 -52
  120. package/mixins/form-validation.js +1 -1
  121. package/mixins/resource-fetch.js +3 -1
  122. package/models/catalog.cattle.io.uiplugin.js +34 -0
  123. package/models/cluster/node.js +25 -2
  124. package/models/fleet.cattle.io.bundle.js +27 -20
  125. package/models/harvesterhci.io.management.cluster.js +200 -5
  126. package/models/management.cattle.io.cluster.js +1 -1
  127. package/models/management.cattle.io.clusterroletemplatebinding.js +9 -0
  128. package/models/management.cattle.io.project.js +23 -2
  129. package/models/namespace.js +19 -3
  130. package/models/pod.js +19 -2
  131. package/models/provisioning.cattle.io.cluster.js +16 -6
  132. package/models/workload.js +9 -246
  133. package/models/workload.service.js +314 -0
  134. package/nuxt.config.js +80 -34
  135. package/package.json +107 -108
  136. package/pages/auth/login.vue +11 -2
  137. package/pages/auth/setup.vue +1 -1
  138. package/pages/c/_cluster/_product/members/index.vue +3 -93
  139. package/pages/c/_cluster/_product/projectsnamespaces.vue +6 -403
  140. package/pages/c/_cluster/apps/charts/index.vue +46 -1
  141. package/pages/c/_cluster/apps/charts/install.vue +10 -9
  142. package/pages/c/_cluster/explorer/index.vue +72 -9
  143. package/pages/c/_cluster/explorer/tools/index.vue +12 -5
  144. package/pages/c/_cluster/mcapps/index.vue +1 -1
  145. package/pages/c/_cluster/settings/brand.vue +0 -40
  146. package/pages/c/_cluster/settings/links.vue +200 -0
  147. package/pages/c/_cluster/settings/performance.vue +19 -16
  148. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +232 -0
  149. package/pages/c/_cluster/uiplugins/InstallDialog.vue +242 -0
  150. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +284 -0
  151. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +130 -0
  152. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +253 -0
  153. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +115 -0
  154. package/pages/c/_cluster/uiplugins/index.vue +694 -0
  155. package/pages/diagnostic.vue +185 -101
  156. package/pages/docs/_doc.vue +3 -1
  157. package/pages/fail-whale.vue +1 -10
  158. package/pages/home.vue +21 -56
  159. package/pages/index.vue +18 -4
  160. package/pages/prefs.vue +108 -86
  161. package/pages/safeMode.vue +17 -0
  162. package/pages/support/index.vue +23 -15
  163. package/pkg/auto-import.js +44 -7
  164. package/pkg/dynamic-importer.lib.js +4 -0
  165. package/pkg/dynamic-plugin-loader.js +28 -0
  166. package/pkg/import.js +2 -2
  167. package/pkg/model-loader-require.lib.js +3 -0
  168. package/pkg/vue.config.js +9 -6
  169. package/plugins/dashboard-store/model-loader-require.js +12 -0
  170. package/plugins/dashboard-store/model-loader.js +4 -1
  171. package/plugins/dashboard-store/resource-class.js +12 -5
  172. package/plugins/formatters.js +15 -0
  173. package/plugins/plugin.js +56 -4
  174. package/plugins/steve/actions.js +1 -1
  175. package/plugins/steve/index.js +6 -4
  176. package/plugins/steve/mutations.js +1 -1
  177. package/plugins/steve/subscribe.js +89 -56
  178. package/plugins/steve/web-worker.steve-sub-worker.js +24 -15
  179. package/promptRemove/management.cattle.io.globalrole.vue +47 -0
  180. package/promptRemove/management.cattle.io.roletemplate.vue +47 -0
  181. package/promptRemove/mixin/roleDeletionCheck.js +97 -0
  182. package/rancher-components/Form/Checkbox/Checkbox.test.ts +77 -0
  183. package/rancher-components/Form/Checkbox/Checkbox.vue +12 -2
  184. package/scripts/build-pkg.sh +48 -2
  185. package/scripts/drone-build-pkg.sh +31 -0
  186. package/scripts/publish-shell.sh +11 -12
  187. package/scripts/serve-pkgs +17 -10
  188. package/scripts/sync-shell-deps +37 -0
  189. package/store/catalog.js +12 -9
  190. package/store/i18n.js +26 -12
  191. package/store/index.js +4 -181
  192. package/store/prefs.js +46 -2
  193. package/store/type-map.js +47 -33
  194. package/store/uiplugins.ts +15 -61
  195. package/utils/__tests__/object.test.ts +0 -24
  196. package/utils/__tests__/selector.test.ts +1 -1
  197. package/utils/cluster.js +1 -1
  198. package/utils/custom-validators.js +1 -12
  199. package/utils/dynamic-importer.js +5 -1
  200. package/utils/grafana.js +2 -6
  201. package/utils/socket.js +41 -20
  202. package/utils/string.js +1 -7
  203. package/utils/validators/formRules/__tests__/index.test.ts +108 -0
  204. package/utils/validators/formRules/index.ts +9 -1
  205. package/utils/validators/setting.js +0 -35
  206. package/yarn-error.log +195 -0
  207. package/components/FilterLabel.vue +0 -254
  208. package/components/HarvesterUpgradeProgressBarList.vue +0 -109
  209. package/components/VMConsoleBar.vue +0 -87
  210. package/components/dialog/harvester/AddHotplugModal.vue +0 -159
  211. package/components/dialog/harvester/BackupModal.vue +0 -117
  212. package/components/dialog/harvester/CloneTemplate.vue +0 -125
  213. package/components/dialog/harvester/EjectCDROMDialog.vue +0 -157
  214. package/components/dialog/harvester/ExportImageDialog.vue +0 -152
  215. package/components/dialog/harvester/MaintenanceDialog.vue +0 -94
  216. package/components/dialog/harvester/MigrationDialog.vue +0 -154
  217. package/components/dialog/harvester/RestoreDialog.vue +0 -153
  218. package/components/dialog/harvester/SupportBundle.vue +0 -217
  219. package/components/dialog/harvester/UnplugVolume.vue +0 -108
  220. package/components/form/SerialConsole/index.vue +0 -267
  221. package/components/formatter/AttachVMWithName.vue +0 -46
  222. package/components/formatter/CloudInitType.vue +0 -27
  223. package/components/formatter/HarvesterBackupTargetValidation.vue +0 -43
  224. package/components/formatter/HarvesterCPUUsed.vue +0 -122
  225. package/components/formatter/HarvesterDiskState.vue +0 -66
  226. package/components/formatter/HarvesterHostName.vue +0 -66
  227. package/components/formatter/HarvesterIpAddress.vue +0 -90
  228. package/components/formatter/HarvesterMemoryUsed.vue +0 -140
  229. package/components/formatter/HarvesterMigrationState.vue +0 -85
  230. package/components/formatter/HarvesterNodeName.vue +0 -49
  231. package/components/formatter/HarvesterStorageUsed.vue +0 -194
  232. package/components/formatter/HarvesterVmState.vue +0 -123
  233. package/components/nav/HarvesterUpgrade.vue +0 -232
  234. package/components/novnc/NovncConsole.vue +0 -93
  235. package/components/novnc/NovncConsoleItem.vue +0 -89
  236. package/components/novnc/NovncConsoleWrapper.vue +0 -243
  237. package/config/harvester-map.js +0 -44
  238. package/config/harvester-table-headers.js +0 -27
  239. package/config/product/harvester.js +0 -305
  240. package/detail/harvesterhci.io.host/HarvesterHostBasic.vue +0 -364
  241. package/detail/harvesterhci.io.host/HarvesterHostDisk.vue +0 -200
  242. package/detail/harvesterhci.io.host/HarvesterHostNetwork.vue +0 -89
  243. package/detail/harvesterhci.io.host/VirtualMachineInstance.vue +0 -134
  244. package/detail/harvesterhci.io.host/index.vue +0 -243
  245. package/detail/harvesterhci.io.virtualmachinebackup/index.vue +0 -221
  246. package/detail/harvesterhci.io.virtualmachineimage.vue +0 -118
  247. package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineBasics.vue +0 -279
  248. package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineEvents.vue +0 -75
  249. package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineKeypairs.vue +0 -114
  250. package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineMigration.vue +0 -79
  251. package/detail/kubevirt.io.virtualmachine/index.vue +0 -213
  252. package/edit/harvesterhci.io.cloudtemplate.vue +0 -123
  253. package/edit/harvesterhci.io.host/HarvesterDisk.vue +0 -262
  254. package/edit/harvesterhci.io.host/index.vue +0 -533
  255. package/edit/harvesterhci.io.keypair.vue +0 -112
  256. package/edit/harvesterhci.io.managedchart/index.vue +0 -25
  257. package/edit/harvesterhci.io.managedchart/rancher-monitoring.vue +0 -172
  258. package/edit/harvesterhci.io.networkattachmentdefinition.vue +0 -210
  259. package/edit/harvesterhci.io.setting/additional-ca.vue +0 -36
  260. package/edit/harvesterhci.io.setting/backup-target.vue +0 -182
  261. package/edit/harvesterhci.io.setting/http-proxy.vue +0 -79
  262. package/edit/harvesterhci.io.setting/index.vue +0 -201
  263. package/edit/harvesterhci.io.setting/overcommit-config.vue +0 -94
  264. package/edit/harvesterhci.io.setting/ssl-certificates.vue +0 -117
  265. package/edit/harvesterhci.io.setting/ssl-parameters.vue +0 -161
  266. package/edit/harvesterhci.io.setting/support-bundle-image.vue +0 -134
  267. package/edit/harvesterhci.io.setting/support-bundle-namespaces.vue +0 -73
  268. package/edit/harvesterhci.io.setting/vip-pools.vue +0 -244
  269. package/edit/harvesterhci.io.setting/vm-force-reset-policy.vue +0 -81
  270. package/edit/harvesterhci.io.virtualmachinebackup.vue +0 -256
  271. package/edit/harvesterhci.io.virtualmachineimage.vue +0 -364
  272. package/edit/harvesterhci.io.virtualmachinetemplateversion.vue +0 -340
  273. package/edit/harvesterhci.io.volume.vue +0 -195
  274. package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/AccessCredentialsUsers.vue +0 -190
  275. package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/index.vue +0 -212
  276. package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/basicAuth.vue +0 -94
  277. package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/sshkey.vue +0 -85
  278. package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/DataTemplate.vue +0 -153
  279. package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/index.vue +0 -279
  280. package/edit/kubevirt.io.virtualmachine/VirtualMachineCpuMemory.vue +0 -113
  281. package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/__tests__/HarvesterEditNetwork.test.ts +0 -41
  282. package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/base.vue +0 -281
  283. package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/index.vue +0 -142
  284. package/edit/kubevirt.io.virtualmachine/VirtualMachineReserved.vue +0 -54
  285. package/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue +0 -256
  286. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/index.vue +0 -391
  287. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditContainer.test.ts +0 -40
  288. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditExisting.test.ts +0 -102
  289. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVMImage.test.ts +0 -117
  290. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVolume.test.ts +0 -74
  291. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/container.vue +0 -132
  292. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/existing.vue +0 -303
  293. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/vmImage.vue +0 -285
  294. package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/volume.vue +0 -188
  295. package/edit/kubevirt.io.virtualmachine/index.vue +0 -642
  296. package/edit/network.harvesterhci.io.clusternetwork/index.vue +0 -19
  297. package/edit/network.harvesterhci.io.clusternetwork/vlan.vue +0 -134
  298. package/edit/workload/types/Deployment.vue +0 -377
  299. package/edit/workload/types/Generic.vue +0 -295
  300. package/list/harvesterhci.io.cloudtemplate.vue +0 -78
  301. package/list/harvesterhci.io.dashboard/HarvesterUpgrade.vue +0 -211
  302. package/list/harvesterhci.io.dashboard/UpgradeInfo.vue +0 -40
  303. package/list/harvesterhci.io.dashboard/index.vue +0 -752
  304. package/list/harvesterhci.io.host/index.vue +0 -186
  305. package/list/harvesterhci.io.networkattachmentdefinition.vue +0 -167
  306. package/list/harvesterhci.io.setting.vue +0 -241
  307. package/list/harvesterhci.io.virtualmachinebackup.vue +0 -172
  308. package/list/harvesterhci.io.virtualmachineimage.vue +0 -80
  309. package/list/harvesterhci.io.virtualmachinetemplateversion.vue +0 -173
  310. package/list/harvesterhci.io.volume.vue +0 -122
  311. package/list/kubevirt.io.virtualmachine.vue +0 -193
  312. package/mixins/harvester-vm/impl.js +0 -267
  313. package/mixins/harvester-vm/index.js +0 -1357
  314. package/models/harvester/configmap.js +0 -32
  315. package/models/harvester/harvesterhci.io.blockdevice.js +0 -55
  316. package/models/harvester/harvesterhci.io.keypair.js +0 -12
  317. package/models/harvester/harvesterhci.io.setting.js +0 -127
  318. package/models/harvester/harvesterhci.io.supportbundle.js +0 -35
  319. package/models/harvester/harvesterhci.io.upgrade.js +0 -226
  320. package/models/harvester/harvesterhci.io.virtualmachinebackup.js +0 -116
  321. package/models/harvester/harvesterhci.io.virtualmachineimage.js +0 -255
  322. package/models/harvester/harvesterhci.io.virtualmachinerestore.js +0 -43
  323. package/models/harvester/harvesterhci.io.virtualmachinetemplate.js +0 -69
  324. package/models/harvester/harvesterhci.io.virtualmachinetemplateversion.js +0 -227
  325. package/models/harvester/k8s.cni.cncf.io.networkattachmentdefinition.js +0 -32
  326. package/models/harvester/kubevirt.io.virtualmachine.js +0 -850
  327. package/models/harvester/kubevirt.io.virtualmachineinstance.js +0 -142
  328. package/models/harvester/management.cattle.io.managedchart.js +0 -191
  329. package/models/harvester/management.cattle.io.setting.js +0 -40
  330. package/models/harvester/network.harvesterhci.io.clusternetwork.js +0 -100
  331. package/models/harvester/network.harvesterhci.io.nodenetwork.js +0 -34
  332. package/models/harvester/node.js +0 -255
  333. package/models/harvester/persistentvolumeclaim.js +0 -166
  334. package/models/harvester/pod.js +0 -185
  335. package/pages/c/_cluster/harvester/airgapupgrade/index.vue +0 -309
  336. package/pages/c/_cluster/harvester/console/_uid/serial.vue +0 -51
  337. package/pages/c/_cluster/harvester/console/_uid/vnc.vue +0 -52
  338. package/pages/c/_cluster/harvester/index.vue +0 -24
  339. package/pages/c/_cluster/harvester/support/index.vue +0 -154
  340. package/pages/plugins.vue +0 -387
  341. package/pkg/model-loader.lib.js +0 -3
  342. package/promptRemove/kubevirt.io.virtualmachine.vue +0 -164
  343. package/server/verdaccio-middleware.js +0 -56
  344. package/store/harvester-common.js +0 -126
  345. package/utils/validators/vm-datavolumes.js +0 -38
  346. package/utils/validators/vm-image.js +0 -32
  347. package/utils/validators/vm.js +0 -221
@@ -43,6 +43,7 @@ generic:
43
43
  info: Info
44
44
  warning: Warning
45
45
  error: Error
46
+ ok: OK
46
47
  overview: Overview
47
48
  plusMore: "+ {n} more"
48
49
  readFromFile: Read from File
@@ -184,11 +185,11 @@ product:
184
185
  settings: Global Settings
185
186
  clusterManagement: Cluster Management
186
187
  monitoring: Monitoring
187
- mcapps: Multi-cluster Apps
188
+ mcapps: Global Configuration
188
189
  neuvector: NeuVector
189
190
  harvesterManager: Virtualization Management
190
- harvester: Harvester
191
191
  rancher: Rancher
192
+ uiplugins: UI Plugins
192
193
 
193
194
  suffix:
194
195
  percent: "%"
@@ -243,19 +244,26 @@ about:
243
244
  checkboxLabel: Make additional requests
244
245
  systemInformation:
245
246
  subtitle: System Information
246
- os: OS
247
- browserUserAgent: Browser User Agent
248
- browserLanguage: Browser Language
249
- cookieEnabled: Cookies Enabled
250
- deviceMemory: Device Memory
251
- hardwareConcurrency: Hardware Concurrency
252
- memJsHeapLimit: Memory JS Heap Size limit
253
- memTotalJsHeapSize: Memory Total JS Heap Size
254
- memUsedJsHeapSize: Memory Used JS Heap Size
247
+ browser: Browser
248
+ browserInfo: "User Agent: {userAgent}, Language: {language}, Cookies Enabled: {cookieEnabled}"
249
+ system: System
250
+ jsMemory: Javascript Memory
251
+ deviceMemory: "Device Memory: {deviceMemory}"
252
+ hardwareConcurrency: "Hardware Concurrency: {hardwareConcurrency}"
253
+ os: "OS: {platform}"
254
+ memJsHeapLimit: "Heap Size limit: {jsHeapSizeLimit}"
255
+ memTotalJsHeapSize: "Total Heap Size: {totalJSHeapSize}"
256
+ memUsedJsHeapSize: "Used Heap Size: {usedJSHeapSize}"
255
257
  logs:
256
258
  subtitle: Latest Logs
257
- resourceCounts:
258
- subtitle: Resource Counts
259
+ resourceCounts: |-
260
+ {count, plural,
261
+ one { Resource Counts by Cluster ({count} cluster)}
262
+ other { Resource Counts by Cluster ({count} clusters)}
263
+ }
264
+ modal:
265
+ title: Response times have not yet been generated.
266
+ body: Generate response times to offer more specific information.
259
267
 
260
268
  accountAndKeys:
261
269
  title: Account and API Keys
@@ -565,7 +573,7 @@ asyncButton:
565
573
  waiting: Deactivating…
566
574
  success: Deactivated
567
575
  diagnostic:
568
- action: Download Data
576
+ action: Download Diagnostic Package
569
577
  success: Saving
570
578
  waiting: Downloading…
571
579
  done:
@@ -599,7 +607,11 @@ asyncButton:
599
607
  install:
600
608
  action: Install
601
609
  success: Installing
602
- waiting: Starting…
610
+ waiting: Installing…
611
+ load:
612
+ action: Load
613
+ success: Loaded
614
+ waiting: Loadingg…
603
615
  pause:
604
616
  action: Pause Orchestration
605
617
  success: Paused Orchestration
@@ -642,6 +654,10 @@ asyncButton:
642
654
  action: Snapshot Now
643
655
  waiting: Snapshot Initiated…
644
656
  success: Snapshot Creating
657
+ timing:
658
+ action: Generate Response Times
659
+ waiting: Generating…
660
+ success: Response Times Generated
645
661
  uninstall:
646
662
  action: Uninstall
647
663
  success: Uninstalled
@@ -801,7 +817,8 @@ catalog:
801
817
  enableLegacy:
802
818
  prompt: You will need to enable Legacy Features to edit this App
803
819
  goto: Go to Feature Flag settings
804
- navigate: Navigate to {legacyType} Apps
820
+ navigate: Navigate to Legacy Apps
821
+ mcmNotSupported: Legacy Multi-cluster Apps can not be managed through this UI
805
822
  category:
806
823
  legacy: Legacy
807
824
  mcm: Multi-cluster
@@ -903,6 +920,8 @@ catalog:
903
920
  rancher-charts: '{vendor}'
904
921
  rancher-partner-charts: Partners
905
922
  rancher-rke2-charts: RKE2
923
+ rancher-ui-plugins: Rancher Extensions
924
+
906
925
  target:
907
926
  git: Git repository containing Helm chart or cluster template definitions
908
927
  http: http(s) URL to an index generated by Helm
@@ -1085,7 +1104,7 @@ cluster:
1085
1104
  help: The default region to use when creating clusters. Also contacted to verify that this credential works.
1086
1105
  label: Default Region
1087
1106
  secretKey:
1088
- label: SecretKey
1107
+ label: Secret Key
1089
1108
  placeholder: Your AWS Secret Key
1090
1109
  azure:
1091
1110
  clientId:
@@ -1192,6 +1211,9 @@ cluster:
1192
1211
  warning:
1193
1212
  label: This is a Harvester Cluster - enable the Harvester feature flag to manage it
1194
1213
  state: Warning
1214
+ cloudProvider:
1215
+ incompatible:
1216
+ You cannot select the Harvester cloud provider as the current Harvester version is not compatible with the selected RKE2 Kubernetes version, click <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.suse.com/suse-harvester/support-matrix/all-supported-versions">here</a> to see which Kubernetes versions are supported.
1195
1217
  clusterWarning: |-
1196
1218
  There {count, plural,
1197
1219
  =1 {is 1 Harvester cluster that is not shown}
@@ -1488,6 +1510,7 @@ cluster:
1488
1510
  warning: 'This cluster contains a machineSelectorConfig which this form does not fully support; use the YAML editor to manage the full configuration.'
1489
1511
  os: 'You are attemping to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
1490
1512
  rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
1513
+ desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1491
1514
 
1492
1515
  rkeTemplateUpgrade: Template revision {name} available for upgrade
1493
1516
 
@@ -1525,7 +1548,7 @@ cluster:
1525
1548
  =5 {}
1526
1549
  =6 { Clusters should have an odd number of nodes. }
1527
1550
  =7 {}
1528
- other { More than 7 etcd nods is not recommended. }
1551
+ other { More than 7 etcd nodes is not recommended. }
1529
1552
  }
1530
1553
  worker: |-
1531
1554
  {count, plural,
@@ -1557,10 +1580,10 @@ cluster:
1557
1580
  noResults: No results found
1558
1581
  privateRegistry:
1559
1582
  systemDefaultRegistry:
1560
- label: Registry hostname for {vendor} images
1583
+ label: Registry hostname for {vendor} System Container Images
1561
1584
  mode:
1562
- public: Pull images for {vendor} from public DockerHub
1563
- private: Pull images for {vendor} from a private registry
1585
+ public: Use default global registry for {vendor} System Container Images
1586
+ private: Use specified private registry for {vendor} System Container Images
1564
1587
  advanced: Configure advanced containerd mirroring and registry authentication options
1565
1588
  provider:
1566
1589
  aliyunecs: Aliyun ECS
@@ -1611,7 +1634,7 @@ cluster:
1611
1634
  rancherkubernetesengine: RKE
1612
1635
  rke2: RKE2
1613
1636
  rke: RKE1
1614
- rkeWindows: Windows
1637
+ rkeWindows: Windows (RKE1 only)
1615
1638
  s3: S3-Compatible
1616
1639
  softlayer: IBM Cloud
1617
1640
  tencenttke: Tencent TKE
@@ -1650,6 +1673,7 @@ cluster:
1650
1673
  label: Default Pod Security Policy
1651
1674
  enableNetworkPolicy:
1652
1675
  label: Project Network Isolation
1676
+ warning: Per default, the ingress controller will not be able to route requests to pods on other nodes.
1653
1677
  workNode:
1654
1678
  label: Worker Nodes
1655
1679
  controlPlaneConcurrency:
@@ -2067,6 +2091,7 @@ glance:
2067
2091
  installMonitoring: Install Monitoring
2068
2092
  v1MonitoringInstalled: V1 Monitoring Installed
2069
2093
  clusterInfo: Cluster Information
2094
+ eventsTable: Full events list
2070
2095
 
2071
2096
  clusterBadge:
2072
2097
  addLabel: Add Cluster Badge
@@ -2096,9 +2121,15 @@ graphOptions:
2096
2121
 
2097
2122
  growl:
2098
2123
  clearAll: Clear All Notifications
2099
- disconnected:
2100
- message: "The connection to {url} closed unexpectedly {time}. Retrying..."
2124
+ disconnectError:
2125
+ message: "The connection to {url} closed unexpectedly at {time}. Disconnected after {tries} reconnect attempts. Check your network connection and reload the page"
2101
2126
  title: Websocket Disconnected
2127
+ connectError:
2128
+ message: "The connection to {url} closed unexpectedly at {time}. Reconnect attempt #{tries}."
2129
+ title: Websocket Reconnecting
2130
+ reconnected:
2131
+ message: "The connection to {url} was restored on attempt #{tries}."
2132
+ title: Websocket Reconnected
2102
2133
 
2103
2134
  hpa:
2104
2135
  detail:
@@ -2442,10 +2473,9 @@ landing:
2442
2473
  seeWhatsNew: Learn more about the improvements and new capabilities in this version.
2443
2474
  whatsNewLink: "What's new in 2.6"
2444
2475
  learnMore: Learn More
2445
- gettingStarted:
2446
- title: Getting Started
2447
- body: Take a look at the the quick getting started guide. For Cluster Manager users, learn more about where you can find your favorite features in the Dashboard UI.
2448
2476
  support: Support
2477
+ psps: PSPs
2478
+ deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25. You have one or more PodSecurityPolicy resource(s) in this cluster.
2449
2479
  community:
2450
2480
  title: Community Support
2451
2481
  docs: Docs
@@ -3634,6 +3664,89 @@ persistentVolumeClaim:
3634
3664
  readWriteMany: Many Nodes Read-Write
3635
3665
  status:
3636
3666
  label: Status
3667
+
3668
+ # UI Plugins
3669
+ plugins:
3670
+ labels:
3671
+ builtin: Built-in
3672
+ experimental: Experimental
3673
+ third-party: Third-Party
3674
+ installing: Installing ...
3675
+ uninstalling: Uninstalling ...
3676
+ descriptions:
3677
+ experimental: This UI Plugin is marked as experimental
3678
+ third-party: This UI plugin is provided by a Third-Party
3679
+ error:
3680
+ title: Error loading plugin
3681
+ message: Could not load plugin code
3682
+ success:
3683
+ title: Loaded plugin {name}
3684
+ message: Plugin was loaded successfully
3685
+ developer:
3686
+ label: Developer Load
3687
+ title: Developer Load Plugin
3688
+ prompt: Load a plugin from a URL
3689
+ fields:
3690
+ url: Plugin URL
3691
+ name: Plugin module name
3692
+ persist: Persist plugin by creating custom resource
3693
+ info:
3694
+ detail: Detail
3695
+ versions: Versions
3696
+ versionError: Could not load version information
3697
+ empty:
3698
+ all: No UI Plugins either installed nor available
3699
+ available: No UI Plugins available
3700
+ installed: No UI Plugins installed
3701
+ updates: No UI Plugin updates available
3702
+ loadError: An error occurred loading the code for this plugin
3703
+ helmError: "An error occurred installing the plugin via Helm"
3704
+ tabs:
3705
+ all: All
3706
+ available: Available
3707
+ installed: Installed
3708
+ updates: Updates
3709
+ title: UI Plugins
3710
+ install:
3711
+ label: Install
3712
+ title: Install UI Plugin {name}
3713
+ prompt: "Are you sure that you want to install this UI Plugin?"
3714
+ version: Version
3715
+ warnNotCertified: Please ensure that you are aware of the risks of installing UI Plugins from untrusted authors
3716
+ update:
3717
+ label: Update
3718
+ title: Update UI Plugin {name}
3719
+ prompt: "Are you sure that you want to update this UI Plugin?"
3720
+ rollback:
3721
+ label: Rollback
3722
+ title: Rollback UI Plugin {name}
3723
+ prompt: "Are you sure that you want to rollback this UI Plugin?"
3724
+ uninstall:
3725
+ label: Uninstall
3726
+ title: "Uninstall UI Plugin: {name}"
3727
+ prompt: "Are you sure that you want to uninstall this UI Plugin?"
3728
+ upgradeAvailable: A newer version of this UI Plugin is available
3729
+ safeMode:
3730
+ title: UI Plugins Safe Mode
3731
+ message: UI Plugins were not loaded
3732
+ setup:
3733
+ title: UI Plugin Support is not enabled
3734
+ prompt:
3735
+ cant: Automatic installation is not available - required Helm Charts could not be found
3736
+ can: You need to install the Plugin Operator
3737
+ install:
3738
+ title: Enable UI Plugin Support?
3739
+ prompt: This will install the Helm charts to enable Rancher UI Plugin support
3740
+ airgap: Un-check if your Rancher installation is air-gapped
3741
+ addRancherRepo: Add the Rancher UI Plugins Repository
3742
+ remove:
3743
+ label: Disable UI Plugin Support
3744
+ title: Disable UI Plugin Support?
3745
+ prompt: This will un-install the Helm charts that enable Rancher UI Plugin support
3746
+ registry:
3747
+ title: Remove the Rancher UI Plugins Repository
3748
+ prompt: Remove the default UI Plugins Repository
3749
+
3637
3750
  prefs:
3638
3751
  title: Preferences
3639
3752
  theme:
@@ -3642,11 +3755,14 @@ prefs:
3642
3755
  auto: Auto
3643
3756
  dark: Dark
3644
3757
  autoDetail: Auto uses OS preference if available, or dark from {pm} to {am}
3758
+ language: Language
3645
3759
  landing:
3646
3760
  label: Login Landing Page
3647
3761
  vue: Cluster Explorer
3648
3762
  ember: Cluster Manager
3649
- formatting: Formatting
3763
+ displaySettings:
3764
+ title: Display Settings
3765
+ detail: Change the way information is displayed in the UI.
3650
3766
  clusterToShow:
3651
3767
  label: Number of clusters to show in side menu
3652
3768
  value: |-
@@ -3664,12 +3780,14 @@ prefs:
3664
3780
  sublime: 'Normal human'
3665
3781
  emacs: 'Emacs'
3666
3782
  vim: 'Vim'
3667
- advanced: Advanced
3668
- advancedTooltip: Enables 'View in API' option and keyboard shortcut to toggle light or dark theme (shift+t). This setting also reveals namespaces that are managed by Rancher and are not meant to be manually edited or deleted.
3669
- dev:
3670
- label: Enable Developer Tools & Features
3783
+ advFeatures:
3784
+ title: Advanced Features
3785
+ viewInApi: Enable "View in API"
3786
+ allNamespaces: Show system Namespaces managed by Rancher (not intended for editing or deletion)
3787
+ themeShortcut: Enable Dark/Light Theme keyboard shortcut toggle (shift+T)
3788
+ pluginDeveloper: Enable UI Plugin Developer features
3671
3789
  hideDesc:
3672
- label: Hide All Type Description Boxes
3790
+ label: Hide All Type Descriptions
3673
3791
  helm:
3674
3792
  'true': Include Prerelease Versions
3675
3793
  'false': Show Releases Only
@@ -3856,6 +3974,7 @@ promptRemove:
3856
3974
  confirmName: "Enter <b>{nameToMatch}</b> below to confirm:"
3857
3975
  deleteAssociatedNamespaces: "Also delete the namespaces in this project:"
3858
3976
  willDeleteAssociatedNamespaces: "This will also delete all namespaces in the project: "
3977
+ confirmRelatedResource: "Deleting the {type} will remove all the resources on this particular {type} and this is not revertable, are you sure you want to continue deleting {names}?"
3859
3978
 
3860
3979
  promptRemoveApp:
3861
3980
  removeCrd: "Delete the CRD associated with this app"
@@ -3957,6 +4076,18 @@ rbac:
3957
4076
  noContext:
3958
4077
  label: No Context
3959
4078
  globalRoles:
4079
+ notBound: 'No users bound <i class="icon icon-checkmark" style="margin-left: 5px"></i>'
4080
+ unableToCheck: Unable to check if any user is bound to the role(s). Please try again.
4081
+ waiting: |-
4082
+ {count, plural,
4083
+ =1 { Checking if there are any users bound to this role <i class="icon-spin icon icon-spinner" style="margin-left: 5px"></i> }
4084
+ other { Checking if there are any users bound to these roles <i class="icon-spin icon icon-spinner" style="margin-left: 5px"></i> }
4085
+ }
4086
+ usersBound: |-
4087
+ {count, plural,
4088
+ =1 { Caution: There is 1 user bound to the role(s) about to be deleted. Do you want to proceed? }
4089
+ other { Caution: There are {count} users bound to the role(s) about to be deleted. Do you want to proceed? }
4090
+ }
3960
4091
  types:
3961
4092
  global:
3962
4093
  label: Global Permissions
@@ -4363,7 +4494,7 @@ setup:
4363
4494
  dockerSuffix: ""
4364
4495
  helmPrefix: 'For a Helm installation, run:'
4365
4496
  helmSuffix: ""
4366
- eula: I agree to the <a href="https://rancher.com/eula" target="_blank" rel="noopener noreferrer nofollow">terms and conditions</a> for using {name}.
4497
+ eula: By checking the box, you accept the <a href="https://rancher.com/eula" target="_blank" rel="noopener noreferrer nofollow">End User License Agreement & Terms & Conditions</a>
4367
4498
  newPassword: New Password
4368
4499
  newUserSetPassword: The first order of business is to set a strong password. We suggest using this random one generated just for you, but enter your own if you like.
4369
4500
  serverUrl:
@@ -4371,12 +4502,15 @@ setup:
4371
4502
  skip: Skip
4372
4503
  tip: What URL should be used for this {vendor} installation? All the nodes in your clusters will need to be able to reach this.
4373
4504
  setPassword: The first order of business is to set a strong password for the default <code>{username}</code> user. We suggest using this random one generated just for you, but enter your own if you like.
4374
- telemetry: Allow collection of <a href="{docsBase}/faq/telemetry/" target="_blank" rel="noopener noreferrer nofollow">anonymous statistics</a> to help us improve {name}.
4505
+ telemetry: Allow collection of <a href="{docsBase}/faq/telemetry/" target="_blank" rel="noopener noreferrer nofollow">anonymous statistics</a> to help us improve {name}
4375
4506
  useManual: Set a specific password to use
4376
4507
  useRandom: Use a randomly generated password
4377
4508
  welcome: Welcome to {vendor}!
4378
4509
 
4379
4510
  sortableTable:
4511
+ bulkActions:
4512
+ collapsed:
4513
+ label: Actions
4380
4514
  actionAvailability:
4381
4515
  selected: "{actionable} selected"
4382
4516
  some: "Affects {actionable} of {total}"
@@ -5264,7 +5398,7 @@ workload:
5264
5398
  cannotViewIngresses: Could not list Ingresses due to lack of permission.
5265
5399
  cannotFindIngresses: Could not find any Ingresses that forward traffic to Services that select Pods in this workload.
5266
5400
  ingressListCaption: "The following Ingresses forward traffic to Services that select Pods from this workload:"
5267
- cannotViewIngressesBecauseCannotViewServices: Could not find relevant Ingresses due to lack of permission to view Services.
5401
+ cannotViewIngressesBecauseCannotViewServices: Could not find relevant relevant Ingresses due to lack of permission to view Services.
5268
5402
  pods:
5269
5403
  title: Pods
5270
5404
  detailTop:
@@ -5446,6 +5580,8 @@ workload:
5446
5580
  addClaim: Add Claim
5447
5581
  addMount: Add Mount
5448
5582
  addVolume: Add Volume
5583
+ selectVolume: Select Volume
5584
+ noVolumes: Volumes will appear here after they are added in the Pod tab
5449
5585
  certificate: Certificate
5450
5586
  csi:
5451
5587
  diskName: Disk Name
@@ -5506,6 +5642,7 @@ workload:
5506
5642
  apps.statefulset: StatefulSets manage stateful applications and provide guarantees about the ordering and uniqueness of the pods created. Recommended for workloads with persistent storage or strict identity, quorum, or upgrade order requirements.
5507
5643
  batch.cronjob: CronJobs create Jobs, which then run Pods, on a repeating schedule. The schedule is expressed in standard Unix cron format, and uses the timezone of the Kubernetes control plane (typically UTC).
5508
5644
  batch.job: Jobs create one or more pods to reliably perform a one-time task by running a pod until it exits successfully. Failed pods are automatically replaced until the specified number of completed runs has been reached. Jobs can also run multiple pods in parallel or function as a batch work queue.
5645
+ pod: Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.
5509
5646
  upgrading:
5510
5647
  activeDeadlineSeconds:
5511
5648
  label: Pod Active Deadline
@@ -5547,687 +5684,16 @@ workload:
5547
5684
  deployment: Deployment
5548
5685
  pod: Pod
5549
5686
  containers: Containers
5550
- harvester:
5551
- modal:
5552
- backup:
5553
- success: 'Backup { backUpName } has been initiated.'
5554
- addBackup: Add Backup
5555
- restore:
5556
- success: 'Restore { name } created successfully.'
5557
- title: Backup and restore
5558
- selectBackup: Select Backup
5559
- message:
5560
- backup: Please select the backup that needs to be restored.
5561
- createTemplate:
5562
- title: 'Generate Template'
5563
- name: 'Name'
5564
- description: 'Description'
5565
- message:
5566
- tip: Please enter a template name!
5567
- success: 'Template { templateName } created successfully.'
5568
- failed: 'Failed generated template!'
5569
- exportImage:
5570
- title: Export to Image
5571
- name: Name
5572
- namespace: Namespace
5573
- message:
5574
- success: 'Image { name } created successfully.'
5575
- migration:
5576
- failedMessage: Latest migration failed!
5577
- title: Migration
5578
- fields:
5579
- nodeName:
5580
- label: Target Node
5581
- placeholder: Choose Target Node
5582
- ejectCDROM:
5583
- title: Eject CDROM
5584
- warnTip: Eject volume will restart the virtual machine.
5585
- operationTip: 'Select the volume you want to delete:'
5586
- delete: Delete
5587
- bundle:
5588
- title: Generate Support Bundle
5589
- url: Issue URL
5590
- description: Description
5591
- requiredDesc: Description is required!
5592
- titleDescription: Collect system-related log in Harvester, to help with troubleshooting and support.
5593
- hotplug:
5594
- success: 'Volume { diskName } is mounted to the VM { vm }.'
5595
- title: Add Volume
5596
- hotunplug:
5597
- success: 'Volume { name } is detach successfully.'
5598
- notification:
5599
- title:
5600
- succeed: Succeed
5601
- info: Info
5602
- warning: Warning
5603
- error: Error
5604
- action:
5605
- createVM: Create a Virtual Machine
5606
- start: Start
5607
- restart: Restart
5608
- softreboot: Soft Reboot
5609
- stop: Stop
5610
- pause: Pause
5611
- unpause: Unpause
5612
- ejectCDROM: Eject CDROM
5613
- launchFormTemplate: Launch instance from template
5614
- modifyTemplate: Modify template (Create new version)
5615
- setDefaultVersion: Set default version
5616
- addTemplateVersion: Add templateVersion
5617
- backup: Take Backup
5618
- restore: Restore
5619
- restoreNewVM: Restore New
5620
- restoreExistingVM: Replace Existing
5621
- migrate: Migrate
5622
- abortMigration: Abort Migration
5623
- createTemplate: Generate Template
5624
- enableMaintenance: Enable Maintenance Mode
5625
- disableMaintenance: Disable Maintenance Mode
5626
- cordon: Cordon
5627
- uncordon: Uncordon
5628
- addHotplug: Add Volume
5629
- exportImage: Export Image
5630
- viewlogs: View Logs
5631
- cancelExpand: Cancel Expand
5632
- tableHeaders:
5633
- size: Size
5634
- progress: Progress
5635
- message: Message
5636
- phase: Phase
5637
- attachedVM: Attached VM
5638
- fingerprint: Fingerprint
5639
- value: Value
5640
- actions: Actions
5641
- readyToUse: Ready To Use
5642
- backupTarget: Backup Target
5643
- targetVm: Target VM
5644
- hostIp: Host IP
5645
- vm:
5646
- ipAddress: IP Address
5647
- node: Node
5648
- defaultVersion: Default Version
5649
- network:
5650
- type: Type
5651
- vlan: Vlan ID
5652
- tab:
5653
- volume: Volumes
5654
- network: Networks
5655
- advanced: Advanced Options
5656
- accessCredentials: Access Credentials
5657
- fields:
5658
- version: Version
5659
- name: Name
5660
- type: Type
5661
- image: Image
5662
- size: Size
5663
- volume: Volume
5664
- network: Network
5665
- model: Model
5666
- macAddress: Mac Address
5667
- port: Port
5668
- protocol: Protocol
5669
- remove: REMOVE
5670
- PhysicalNic: Physical NIC
5671
- cpu: Cpu
5672
- memory: Memory
5673
- virtualName: Virtual machine name
5674
- promiscuous: Promiscuous
5675
- ipv4Address: IPv4 Address
5676
- filterLabels: Filter Labels
5677
- generic:
5678
- close: Close
5679
- open: Open
5680
- showMore: Show More
5681
- hideMore: Hide More
5682
- memory: Memory
5683
- cpu: CPU
5684
- storage: Storage
5685
- noFileChosen: No file chosen
5686
-
5687
- validation:
5688
- custom:
5689
- tooLongName: '"Name" cannot be more than {max} characters.'
5690
- vm:
5691
- name: 'name is required'
5692
- memory: '"Memory" is required!'
5693
- network:
5694
- error: 'network {prefix}: {message}'
5695
- name: 'Network Name is required'
5696
- macFormat: 'Invalid MAC address format.'
5697
- duplicatedName: 'network with this name already exists!.'
5698
- duplicatedPortName: 'Duplicate name of the port.'
5699
- duplicatedPortNumber: 'Duplicate number of the port'
5700
- volume:
5701
- error: 'volume {prefix}: {message}'
5702
- duplicatedName: 'volume with this name already exists!.'
5703
- type: '"Type" is required!'
5704
- size: '"Size" is required!'
5705
- image: '"Image" is required!'
5706
- volume: '"Volume" is required!'
5707
- docker: '"Docker Image" is required!'
5708
- needImageOrExisting: 'At least an image volume or an existing root-disk volume is required!'
5709
- image:
5710
- ruleTip: 'The URL you have entered ends in an extension that we do not support. We only accept image files that end in .img, .iso, .qcow, .qcow2, .raw.'
5711
- ruleFileTip: 'The file you have chosen ends in an extension that we do not support. We only accept image files that end in .img, .iso, .qcow, .qcow2, .raw.'
5712
5687
 
5713
- dashboard:
5714
- label: Dashboard
5715
- header: "Harvester Cluster: {cluster}"
5716
- hardwareResourceGauge:
5717
- cpu: CPU
5718
- memory: Memory
5719
- storage: Storage
5720
- sections:
5721
- events:
5722
- label: Events
5723
- vmMetrics:
5724
- label: VM Metrics
5725
-
5726
- version: Version
5727
- host:
5728
- label: Hosts
5729
- inconsistentIP: "Host IP is inconsistent, current IP: { currentIP }, initial IP: { initIP }"
5730
- promote:
5731
- none: ' '
5732
- running: promoting
5733
- failed: promote failed
5734
- unknown: promote halted
5735
- promoteRestart: restarting
5736
- promoteSucceed: promote completed
5737
- tabs:
5738
- network: Network
5739
- overview: Overview
5740
- basics: Basics
5741
- instance: Virtual Machines
5742
- monitor: Monitor Data
5743
- disk: Disks
5744
- labels: Labels
5745
- detail:
5746
- title:
5747
- network: Network Configuration
5748
- hostIP: Host IP
5749
- role: Role
5750
- os: Operating System
5751
- create: Creation Time
5752
- update: Last Update Time
5753
- customName: Custom Name
5754
- consoleUrl: Console URL
5755
- more: More Information
5756
- uuid: UUID
5757
- containerRuntime: Container Runtime
5758
- kernel: Kernel
5759
- management: Management Node
5760
- compute: Compute Node
5761
- storage: Storage
5762
- nic: Physical NIC
5763
- notRecommended: 'Not recommended'
5764
- networkType: Type
5765
- enableMaintenance:
5766
- title: Enable Maintenance Mode
5767
- protip: The operation will migrate all virtual machines on this node to other nodes.
5768
- cordon:
5769
- title: Cordon
5770
- protip: This operation will mark the node { node } as unschedulable.
5771
- disk:
5772
- add: Add Disk
5773
- path:
5774
- label: Path
5775
- storageReserved:
5776
- label: Storage Reserved
5777
- allowScheduling:
5778
- label: Scheduling
5779
- evictionRequested:
5780
- label: Eviction Requested
5781
- forceFormatted:
5782
- label: Force Formatted
5783
- toolTip: Force formatted will cleanup disk data, make sure you backup all available data to prevent data loss.
5784
- yes: Yes (Ext4 File System)
5785
- description:
5786
- label: Description
5787
- lastFormattedAt:
5788
- info: The disk has already been force-formatted.
5789
- notification:
5790
- success: 'Update host "{name}" configurations successfully.'
5791
- error: Host has unready or unschedulable disks.
5792
- fileSystem:
5793
- info: Current file system is {system}, You can format it manually.
5794
-
5795
- virtualizationManagement:
5796
- manage: Manage
5797
-
5798
- virtualMachine:
5799
- label: Virtual Machines
5800
- osType: OS Type
5801
- instance:
5802
- singleInstance:
5803
- multipleInstance:
5804
- single:
5805
- label: Single Instance
5806
- nameLabel: Name
5807
- host:
5808
- label: Hostname
5809
- placeholder: default to the virtual machine name.
5810
- multiple:
5811
- label: Multiple Instance
5812
- nameNsDescription: Name prefix for each instance
5813
- count: Count
5814
- countTip: Count should be between 1 and 10
5815
- nameLabel: Name Prefix
5816
- host:
5817
- label: Host Prefix Name
5818
- placeholder: default to the virtual machine name.
5819
- useTemplate:
5820
- label: "Use VM Template:"
5821
- template:
5822
- label: template
5823
- version:
5824
- label: version
5825
- console:
5826
- novnc: Open in Web VNC
5827
- serial: Open in Serial Console
5828
- promptRemove:
5829
- title: 'Select the volume you want to delete:'
5830
- deleteAll: Delete All
5831
- unplug:
5832
- title: 'Are you sure that you want to detach volume {name} ?'
5833
- actionLabel: Detach
5834
- detachVolume:
5835
- Detach Volume
5836
- restartTip: |-
5837
- {restart, select,
5838
- true {Restart}
5839
- other {Start}
5840
- } the virtual machine now to take effect of the configuration changes.
5841
- runStrategy: Run Strategy
5842
- restartNow: |-
5843
- {restart, select,
5844
- true {Restart}
5845
- other {Start}
5846
- } Now
5847
- createSSHKey: Create a New...
5848
- installAgent: Install guest agent
5849
- enableUsb: Enable USB Tablet
5850
- usbTip: Provides an absolute pointer device which often helps with getting a consistent mouse cursor position in VNC.
5851
- sshTitle: Add Public SSH Key
5852
- imageTip: An external URL to the .iso, .img, .qcow2 or .raw that the virtual machine should be created from.
5853
- efiEnabled: Booting in EFI mode
5854
- secureBoot: Secure Boot
5855
- volume:
5856
- dragTip: Drag and drop volumes, or use the volume's arrows, to change the boot order.
5857
- volumeTip: The VM only contains a cd-rom volume. You may want to add additional disk volumes.
5858
- macTip: "MAC address as seen inside the guest system."
5859
- volumeUpdate: 'Set volume { name } successfully'
5860
- type: Type
5861
- size: Size
5862
- edit: Edit
5863
- bus: Bus
5864
- bootOrder: Boot Order
5865
- volume: Volume
5866
- dockerImage: Docker Image
5867
- addVolume: Add Volume
5868
- addExistingVolume: Add Existing Volume
5869
- addVmImage: Add VM Image
5870
- addContainer: Add Container
5871
- setFirst: Set as root volume
5872
- saveVolume: Update Volume
5873
- title:
5874
- vmImage: Image Volume
5875
- existingVolume: Existing Volume
5876
- volume: Volume
5877
- container: Container
5878
- unmount:
5879
- title: Are you sure?
5880
- message: Are you sure you want to unmount this volume?
5881
- network:
5882
- title: Network
5883
- addNetwork: Add Network
5884
- addPort: Add Port
5885
- cloudConfig:
5886
- title: Cloud Config
5887
- createTemplateTitle: 'Create {name}.'
5888
- createNew: Create new...
5889
- cloudInit:
5890
- label: Cloud Init
5891
- placeholder: Select a template
5892
- user:
5893
- label: User Data Template
5894
- title: "User Data:"
5895
- tip: "You can specify user data to configure an instance or run a configuration script during launch. If you launch more than one instance at a time, the user data is available to all the instances in that reservation. <a href='https://cloudinit.readthedocs.io/en/latest/topics/examples.html' target='_blank'>Learn more</a>"
5896
- network:
5897
- label: Network Data Template
5898
- title: "Network Data:"
5899
- tip: "The network-data configuration allows you to customize the instance’s networking interfaces by assigning subnet configuration, virtual device creation (bonds, bridges, vlans) routes and DNS configuration. <a href='https://cloudinit.readthedocs.io/en/latest/topics/network-config-format-v1.html' target='_blank'>Learn more</a>"
5900
- scheduling:
5901
- affinity:
5902
- anyNode: 'Run VM on any available node'
5903
- schedulingRules: 'Run VM on node(s) matching scheduling rules'
5904
- specificNode: Run VM on specific node - (Live migration is not supported)
5905
- accessCredentials:
5906
- resetPwd:
5907
- label: Add Basic Auth
5908
- injectSSH:
5909
- label: Add SSHKey
5910
- users: Select Users
5911
- addUser: Add User
5912
- tips: qemu-guest-agent must be installed to enable Access Credentials, the VM should be restarted after credentials added. Need to enter the VM to edit password or remove SSH-Key after deleting the credentials.
5913
- userTips: The user to be added must already exist; otherwise, the credentials will not take effect.
5914
- duplicatedUser: User already exist.
5915
- invalidUser: Invalid Username.
5916
- input:
5917
- name: Name
5918
- memory: Memory
5919
- image: Image
5920
- sshKey: SSHKey
5921
- sshKeyValue: SSH-Key
5922
- MachineType: Machine Type
5923
- username: Username
5924
- password: Password
5925
- reservedMemory: Reserved Memory
5926
- machineTypeTip: 'Specify a processor architecture to emulate. To see a list of supported architectures, run: qemu-system-x86_64 -cpu ?'
5927
- detail:
5928
- tabs:
5929
- overview: Overview
5930
- details: Details
5931
- environment: Environment
5932
- events: Events
5933
- migration: Migration
5934
- console: Console
5935
- networkInterfaces: Network Interfaces
5936
- disks: Disks
5937
- networks: Networks
5938
- basics: Basics
5939
- configurations: Configurations
5940
- inventory: Inventory
5941
- hostBasic: Basic Attributes
5942
- instance: Virtual Machines
5943
- monitor: Monitor Data
5944
- keypairs: SSH Keys
5945
- cloudConfig: Cloud Config
5946
- metrics: VM Metrics
5947
- details:
5948
- title:
5949
- vmDetails: Virtual Machine Details
5950
- requirements: Scheduling and resources requirements
5951
- services: Services
5952
- users: Logged in users
5953
- name: Name
5954
- namespace: Namespace
5955
- created: Created
5956
- hostname: Hostname
5957
- node: Node
5958
- ipAddress: IP Address
5959
- status: Status
5960
- pod: Pod
5961
- labels: Labels
5962
- bootOrder: Boot Order
5963
- annotations: Annotations
5964
- CDROMs: CD-ROMs
5965
- description: Description
5966
- operatingSystem: Operating System
5967
- template: Template
5968
- kernelRelease: Kernel Release
5969
- owner: Owner
5970
- workloadProfile: Workload Profile
5971
- nodeSelector: Node Selector
5972
- flavor: Flavor
5973
- tolerations: Tolerations
5974
- dedicatedResources: Dedicated Resources
5975
- down: VM not running
5976
- affinityRules: Affinity Rules
5977
- sourceNode: Source Node
5978
- targetNode: Target Node
5979
- started: Started
5980
- ended: Ended
5981
- notAvailable: Not available
5982
- GuestAgentNotInstalled: Guest agent required
5983
- noOwner: No Owner
5984
- events:
5985
- from: Generated from
5986
- down: No events in the past hour
5987
- console:
5988
- down: This Virtual Machine is down. Please start it to access its console.
5989
- shortKeys: Shortcut Keys
5990
-
5991
- volume:
5992
- label: Volumes
5993
- tabs:
5994
- basics: Basics
5995
- size: Size
5996
- source: Source
5997
- sourceOptions:
5998
- new: New
5999
- vmImage: VM Image
6000
- image: Image
6001
-
6002
- image:
6003
- label: Images
6004
- tabs:
6005
- basics: Basics
6006
- url: URL
6007
- size: Size
6008
- urlTip: 'supports the <code>raw</code> and <code>qcow2</code> image formats which are supported by <a href="https://www.qemu.org/docs/master/system/images.html#disk-image-file-formats" target="_blank">qemu</a>. Bootable ISO images can also be used and are treated like <code>raw</code> images.'
6009
- fileName: File Name
6010
- uploadFile: Upload File
6011
- source: Source
6012
- sourceType:
6013
- download: URL
6014
- upload: File
6015
- warning:
6016
- uploading: |-
6017
- {count, plural,
6018
- =1 {1 image is uploading, please do not refresh or close the page.}
6019
- other {{count} images are uploading, please do not refresh or close the page.}
6020
- }
6021
-
6022
- vmTemplate:
6023
- label: Templates
6024
- tabs:
6025
- basics: Basics
6026
- nameNsDescription:
6027
- name: Template Name
6028
- tips:
6029
- notExistImage:
6030
- title: Image {name} does not exist!
6031
- message: Please select a new Image.
6032
- notExistNode:
6033
- title: Node {name} does not exist!
6034
- message: Please select a new Node.
6035
-
6036
- upgradePage:
6037
- upgradeApp: Upgrade Software
6038
- upgrade: Upgrade
6039
- upgradeTip: Please select the version you want to upgrade to
6040
- currentVersion: CURRENT VERSION
6041
- versionLabel: AVAILABLE COMPATIBLE VERSIONS
6042
- upgradeNode: Upgrading Node
6043
- upgradeSysService: Upgrading System Service
6044
- upgradeImage: Download Upgrade Image
6045
- osUpgrade: OS Upgrade
6046
- uploadNew: Upload New Image
6047
- selectExisting: Select Existing Image
6048
- createRepository: Creating Upgrade Repository
6049
- succeeded: Succeeded
6050
- pending: Pending
6051
- repoInfo:
6052
- upgradeStatus: Upgrade Status
6053
- os: OS
6054
- kubernetes: Kubernetes
6055
- monitoringChart: Monitoring Chart
6056
- harvesterChart: Harvester Chart
6057
- success: Success
6058
- fail: Fail
6059
- ongoing: on-going
6060
- dismissMessage: Dismiss it
6061
- upgradeInfo:
6062
- warning: WARNING
6063
- doc: Before you upgrade to the newer Harvester version, you must perform the required <a href="https://docs.harvesterhci.io/v1.0/upgrade/automatic/" target="_blank"> pre-upgrade checks </a>for your cluster. Complete only those tasks that apply to your environment.
6064
- tip: Failure to perform these checks may result in a failed upgrade or hitting known issues that require a manual workaround fix.
6065
- moreNotes: For more details about the release notes, please visit -
6066
-
6067
- backup:
6068
- label: Backups
6069
- createText: Restore Backup
6070
- title: Restore Virtual Machine
6071
- backupTargetTip: The endpoint used to access the backupstore. NFS and S3 are supported.
6072
- message:
6073
- noSetting:
6074
- prefix: You must configure the backup target in
6075
- middle: 'setting'
6076
- suffix: before creating a new backup.
6077
- errorTip:
6078
- prefix: Backup Target value in
6079
- middle: Setting
6080
- suffix: "is invalid, error: "
6081
- viewSetting:
6082
- prefix: Click
6083
- middle: here
6084
- suffix: to view the backup config.
6085
- restore:
6086
- backup: Backup
6087
- deletePreviousVolumes: Delete Previous Volumes
6088
- createNew: Create new
6089
- replaceExisting: Replace existing
6090
- virtualMachineName: Virtual Machine Name
6091
- matchTarget: The current backup target does not match the existing one.
6092
-
6093
- network:
6094
- label: Networks
6095
- tabs:
6096
- basics: Basics
6097
- layer3Network: Route
6098
- message:
6099
- vlanInactive: 'VLAN network is inactive at {name} host'
6100
- premise:
6101
- prefix: 'You must configure a network in'
6102
- middle: 'Settings'
6103
- suffix: 'before creating a new network.'
6104
- viewSetting:
6105
- prefix: Click
6106
- middle: here
6107
- suffix: to view default cluster network config.
6108
- errorTip:
6109
- prefix: Physical NIC value in
6110
- middle: Setting
6111
- suffix: "is invalid, error: "
6112
- layer3Network:
6113
- mode:
6114
- label: Mode
6115
- auto: Auto(DHCP)
6116
- manual: Manual
6117
- serverIPAddr:
6118
- label: DHCP Server IP
6119
- gateway:
6120
- label: Gateway
6121
- placeholder: e.g. 172.16.0.1
6122
- cidr:
6123
- label: CIDR
6124
- placeholder: e.g. 172.16.0.1/24
6125
- sshKey:
6126
- label: SSH Keys
6127
- keypair: SSH Key
6128
- tabs:
6129
- basics: Basics
6130
-
6131
- setting:
6132
- label: Settings
6133
- validation:
6134
- physicalNIC: DefaultPhysicalNIC
6135
- placeholder:
6136
- accessKeyId: specify your access key id
6137
- secretAccessKey: specify your secret access key
6138
- cert: upload a self-signed SSL certificate
6139
- vlanChangeTip: The newly modified default network interface only applies to newly added nodes, not existing ones.
6140
- defaultPhysicalNIC: Default Network Interface
6141
- percentTip: The value in parentheses represents the distribution percentage of the network interface on all hosts. If an interface less than 100% is selected, the user needs to manually specify the network interface on the host where the vlan network configuration fails.
6142
- message:
6143
- ca:
6144
- prefix: 'Click'
6145
- middle: 'here'
6146
- suffix: 'to add a custom certificate.'
6147
- sslCertificates:
6148
- publicCertificate: Public Certificate
6149
- privateKey: Private Key
6150
- ca: CA
6151
- vmForceDeletionPolicy:
6152
- period: Period
6153
- supportBundleImage:
6154
- imagePullPolicy: Pull Policy
6155
- repo: Repository
6156
- tag: Tag
6157
-
6158
- upgrade:
6159
- selectExitImage: Please select the OS image to upgrade.
6160
- imageUrl: Please input a valid image url.
6161
- chooseFile: Please select to upload an image.
6162
- checksum: Checksum
6163
- harvesterMonitoring:
6164
- label: Harvester Monitoring
6165
- section:
6166
- prometheus: Prometheus Configuration
6167
- prometheusNodeExporter: Prometheus Node Exporter Configuration
6168
- tips:
6169
- scrape: Interval between consecutive scrapes
6170
- evaluation: Interval between consecutive evaluations
6171
- retention: How long to retain metrics
6172
- retentionSize: Maximum size of metrics
6173
- cloudTemplate:
6174
- label: Cloud Config Templates
6175
- templateType: Template Type
6176
- userData: User Data
6177
- networkData: Network Data
6178
-
6179
- manager:
6180
- cluster:
6181
- label: Harvester Clusters
6182
- none: There are no Harvester Clusters
6183
- learnMore: Learn more about Harvester from the <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Web Site</a> or read the the <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Docs</a>
6184
- description: Harvester is a modern Hyperconverged infrastructure (HCI) solution built for bare metal servers using enterprise-grade open source technologies including Kubernetes, Kubevirt and Longhorn.
6185
-
6186
- support:
6187
- title: Harvester Support
6188
- kubeconfig:
6189
- title: Download KubeConfig
6190
- titleDescription: Download kubeconfig for debugging.
6191
-
6192
- namespace:
6193
- label: Namespaces
6194
-
6195
- projectNamespace:
6196
- label: Projects/Namespaces
6197
-
6198
- service:
6199
- title: Add-on Config
6200
- ipam:
6201
- label: IPAM
6202
- healthCheckPort:
6203
- label: Health Check Port
6204
- healthCheckSuccessThreshold:
6205
- label: Health Check Success Threshold
6206
- description: If the number of times the prober continuously detects an address successfully reaches the success threshold, then the backend server can start to forward traffic.
6207
- healthCheckFailureThreshold:
6208
- label: Health Check Failure Threshold
6209
- description: The backend server will stop forwarding traffic if the number of health check failures reaches the failure threshold.
6210
- healthCheckPeriod:
6211
- label: Health Check Period
6212
- healthCheckTimeout:
6213
- label: Health Check Timeout
6214
- healthCheckEnabled:
6215
- label: Health Check
6216
-
6217
- vip:
6218
- namespace:
6219
- label: Namespace
6220
- cidr:
6221
- label: CIDR
6222
- invalid: '"CIRD" is invalid.'
6223
- add:
6224
- label: Add IP Pools
6225
-
6226
- sslParameters:
6227
- protocols:
6228
- label: Protocols
6229
- ciphers:
6230
- label: Ciphers
5688
+ harvesterManager:
5689
+ manage: Manage
5690
+ cluster:
5691
+ label: Harvester Clusters
5692
+ none: There are no Harvester Clusters
5693
+ learnMore: Learn more about Harvester from the <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Web Site</a> or read the the <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Docs</a>
5694
+ description: Harvester is a modern Hyperconverged infrastructure (HCI) solution built for bare metal servers using enterprise-grade open source technologies including Kubernetes, Kubevirt and Longhorn.
5695
+ plugins:
5696
+ loadError: Error loading harvester plugin
6231
5697
 
6232
5698
  ##############################
6233
5699
  # Model Properties
@@ -6535,71 +6001,11 @@ typeLabel:
6535
6001
  one { Workload }
6536
6002
  other { Workloads }
6537
6003
  }
6538
- kubevirt.io.virtualmachine: |-
6539
- {count, plural,
6540
- one { Virtual Machine }
6541
- other { Virtual Machines }
6542
- }
6543
- harvesterhci.io.virtualmachineimage: |-
6544
- {count, plural,
6545
- one { Image }
6546
- other { Images }
6547
- }
6548
- harvesterhci.io.keypair: |-
6549
- {count, plural,
6550
- one { SSH Key }
6551
- other { SSH Keys }
6552
- }
6553
- harvesterhci.io.host: |-
6554
- {count, plural,
6555
- one { Host }
6556
- other { Hosts }
6557
- }
6558
- k8s.cni.cncf.io.networkattachmentdefinition: |-
6559
- {count, plural,
6560
- one { Network Attachment Definition }
6561
- other { Network Attachment Definitions }
6562
- }
6563
- harvesterhci.io.networkattachmentdefinition: |-
6564
- {count, plural,
6565
- one { Network }
6566
- other { Networks }
6567
- }
6568
- harvesterhci.io.volume: |-
6569
- {count, plural,
6570
- one { Volume }
6571
- other { Volumes }
6572
- }
6573
- harvesterhci.io.user: |-
6574
- {count, plural,
6575
- one { User }
6576
- other { Users }
6577
- }
6578
- harvesterhci.io.setting: |-
6579
- {count, plural,
6580
- one { Setting }
6581
- other { Settings }
6582
- }
6583
- harvesterhci.io.virtualmachinetemplateversion: |-
6584
- {count, plural,
6585
- one { Template }
6586
- other { Templates }
6587
- }
6588
- harvesterhci.io.virtualmachinebackup: |-
6589
- {count, plural,
6590
- one { Backup }
6591
- other { Backups }
6592
- }
6593
6004
  harvesterhci.io.management.cluster: |-
6594
6005
  {count, plural,
6595
6006
  one { Harvester Cluster }
6596
6007
  other { Harvester Clusters }
6597
6008
  }
6598
- harvesterhci.io.cloudtemplate: |-
6599
- {count, plural,
6600
- one { Cloud Config Template }
6601
- other { Cloud Config Templates }
6602
- }
6603
6009
  fleet.cattle.io.bundle: |-
6604
6010
  {count, plural,
6605
6011
  one { Bundle }
@@ -6695,6 +6101,7 @@ advancedSettings:
6695
6101
  invalidJSON: Invalid JSON - please check and correct your input before saving
6696
6102
  descriptions:
6697
6103
  'cacerts': "CA Certificates needed to verify the server's certificate."
6104
+ 'password-min-length': 'Define minimum characters required for an user password.'
6698
6105
  'cluster-defaults': 'Override RKE Defaults when creating new clusters.'
6699
6106
  'engine-install-url': 'Default Docker engine installation URL (for most node drivers).'
6700
6107
  'engine-iso-url': 'Default OS installation URL (for vSphere driver).'
@@ -6702,12 +6109,11 @@ advancedSettings:
6702
6109
  'engine-supported-range': 'Semver range for supported Docker engine versions. Versions which do not satisfy this range will be marked unsupported in the UI.'
6703
6110
  'ingress-ip-domain': 'Wildcard DNS domain to use for automatically generated Ingress hostnames. <ingress-name>.<namespace-name>.<ip address of ingress controller> will be added to the domain.'
6704
6111
  'server-url': 'Default {appName} install url. Must be HTTPS. All nodes in your cluster must be able to reach this.'
6705
- 'system-default-registry': 'Private registry to be used for all system Docker images.'
6112
+ 'system-default-registry': 'Private registry to be used for all Rancher System Container Images. If no value is specified, the default registry for the container runtime is used. For Docker and containerd, the default is `docker.io`.'
6706
6113
  'ui-index': 'HTML index location for the Cluster Manager UI.'
6707
6114
  'ui-dashboard-index': 'HTML index location for the {appName} UI.'
6708
6115
  'ui-offline-preferred': 'Controls whether UI assets are served locally by the server container or from the remote URL defined in the ui-index and ui-dashboard-index settings. The `Dynamic` option will use local assets in production builds of {appName}.'
6709
6116
  'ui-pl': 'Private-Label company name.'
6710
- 'ui-issues': "Use a url address to send new 'File an Issue' reports instead of sending users to the Github issues page."
6711
6117
  'telemetry-opt': 'Telemetry reporting opt-in.'
6712
6118
  'auth-user-info-max-age-seconds': 'The maximum age of a users auth tokens before an auth provider group membership sync will be performed.'
6713
6119
  'auth-user-info-resync-cron': 'Default cron schedule for resyncing auth provider group memberships.'
@@ -6723,27 +6129,6 @@ advancedSettings:
6723
6129
  'ui-consent-banner': 'Banner is used to display a custom consent banner presented to users during login.'
6724
6130
  'ui-default-landing': 'The default page users land on after login.'
6725
6131
  'brand': Folder name for an alternative theme defined in '/assets/brand'
6726
- 'harv-vlan': Default Network Interface name of the VLAN network.
6727
- 'harv-backup-target': Custom backup target to store VM backups.
6728
- 'harv-log-level': Configure Harvester server log level. Default to info.
6729
- 'harv-server-version': Harvester server version.
6730
- 'harv-upgrade-checker-enabled': Specify whether to enable Harvester upgrade check or not. Default is true.
6731
- 'harv-upgrade-checker-url': Default Harvester upgrade check url. Only used when the <code>upgrade-checker-enabled</code> is equal to true.
6732
- 'harv-ui-source': Config how to load the UI source.
6733
- 'harv-ui-index': 'HTML index location for the UI.'
6734
- 'harv-cluster-registration-url': Registration URL for mutil-cluster management.
6735
- 'harv-http-proxy': 'HTTP proxy for Harvester to access external services.'
6736
- 'harv-additional-ca': 'Custom CA root certificates for TLS validation.'
6737
- 'harv-overcommit-config': 'Resource overcommit configuration.'
6738
- 'harv-vip-pools': 'Config global or namespace IP address pools of the VIP by CIDR.'
6739
- 'harv-support-bundle-timeout': 'Support Bundle timeout config in minutes, use 0 to disable the timeout.'
6740
- 'harv-vm-force-reset-policy': Config the force-reset action when a VM is stuck on a node that is down.
6741
- 'harv-ssl-parameters': Custom SSL Parameters for TLS validation.
6742
- 'harv-support-bundle-namespaces': Specify resources in other namespaces to be collected by the support package.
6743
- 'harv-auto-disk-provision-paths': Specify the disks(using glob pattern) that Harvester will automatically add as VM storage.
6744
- 'harv-support-bundle-image': Support bundle image configuration. Find different versions in <a href="https://hub.docker.com/r/rancher/support-bundle-kit/tags" target="_blank">rancher/support-bundle-kit</a>.
6745
- 'harv-release-download-url': This setting allows you to configure the <code>upgrade release download</code> URL address. Harvester will get the ISO URL and checksum value from the (<code>$URL</code>/<code>$VERSION</code>/version.yaml) file hosted by the configured URL.
6746
- 'harvester-monitoring': Specifies the monitoring configuration that the Harvester's built-in Prometheus will use.
6747
6132
  'hide-local-cluster': Hide the local cluster
6748
6133
  editHelp:
6749
6134
  'ui-banners': This setting takes a JSON object containing 3 root parameters; <code>banner</code>, <code>showHeader</code>, <code>showFooter</code>. <code>banner</code> is an object containing; <code>textColor</code>, <code>background</code>, and <code>text</code>, where <code>textColor</code> and <code>background</code> are any valid CSS color value.
@@ -6785,24 +6170,27 @@ featureFlags:
6785
6170
  performance:
6786
6171
  label: UI Performance Settings
6787
6172
  settingName: Performance
6788
- description: |-
6789
- Performance settings allow the behavior of the UI to be configured when dealing with many resources in a cluster. These settings only apply to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
6790
- banner: These settings are experimental and may be removed or updated in future versions
6791
6173
  incrementalLoad:
6792
6174
  label: Incremental Loading
6793
6175
  setting: You can configure the threshold above which incremental loading will be used.
6794
6176
  description: |-
6795
- When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources.
6177
+ When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
6796
6178
  checkboxLabel: Enable incremental loading
6797
6179
  inputLabel: Resource Threshold
6798
6180
  manualRefresh:
6181
+ banner: This setting is experimental and may be removed or updated in future versions.
6799
6182
  label: Manual Refresh
6800
6183
  setting: You can configure a threshold above which manual refresh will be enabled.
6801
6184
  buttonTooltip: Refresh list
6802
6185
  description: |-
6803
- When enabled list data will not auto-update but instead the user must manually trigger a list-view refresh.
6186
+ When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
6804
6187
  checkboxLabel: Enable manual refresh of data for lists
6805
6188
  inputLabel: Resource Threshold
6189
+ websocketNotification:
6190
+ label: Websocket Notifications
6191
+ description: |-
6192
+ When checked, websocket notifications will not appear when the UI detects a disconnection.
6193
+ checkboxLabel: Disable websocket notifications
6806
6194
 
6807
6195
  banner:
6808
6196
  label: Fixed Banners
@@ -6859,11 +6247,6 @@ branding:
6859
6247
  custom: Define a Custom Theme
6860
6248
  uiPL:
6861
6249
  label: Private Label
6862
- uiIssues:
6863
- label: Support Links
6864
- issuesUrl: Issue Reporting URL
6865
- invalidUrl: The issue reporting value must be a complete URL, including protocol.
6866
- communityLinks: Show Rancher community support links
6867
6250
  color:
6868
6251
  label: Primary Color
6869
6252
  tip: You can override the primary color used throughout the UI with a custom color of your choice.
@@ -6924,6 +6307,23 @@ resourceQuota:
6924
6307
  namespace: 'This Namespace:'
6925
6308
  available: 'Available:'
6926
6309
  max: 'Total:'
6310
+ customLinks:
6311
+ displayTitle: Links
6312
+ label: Home Links
6313
+ description: 'Links to display on the home page.'
6314
+ restoreDefaults: 'Restore Defaults'
6315
+ addLink: Add Link
6316
+ restoreSuccess: Default URLs have been restored.
6317
+ settings:
6318
+ keyLabel: Display Text
6319
+ valueLabel: URL
6320
+ defaults:
6321
+ docs: Docs
6322
+ forums: Forums
6323
+ slack: Slack
6324
+ issues: File an Issue
6325
+ getStarted: Get Started
6326
+ commercialSupport: Commercial Support
6927
6327
 
6928
6328
 
6929
6329
 
@@ -6989,16 +6389,12 @@ legacy:
6989
6389
  alerts: Alerts
6990
6390
  apps: Apps
6991
6391
  catalogs: Catalogs
6992
- cis-scans: CIS Scans
6993
6392
  configMaps: Config Maps
6994
6393
  configuration: Configuration
6995
6394
  globalDnsEntries: Global DNS Entries
6996
6395
  globalDnsProviders: Global DNS Providers
6997
- istio: Istio
6998
- logging: Logging
6999
6396
  notifiers: Notifiers
7000
6397
  monitoring: Monitoring
7001
- pipelines: Pipelines
7002
6398
  psps: Pod Security Policies
7003
6399
  secrets: Secrets
7004
6400