@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.
- package/assets/brand/suse/dark/rancher-logo.svg +1 -148
- package/assets/brand/suse/rancher-logo.svg +1 -130
- package/assets/images/featured/img1.jpg +0 -0
- package/assets/images/featured.jpg +0 -0
- package/assets/images/generic-plugin.svg +7 -0
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +3 -0
- package/assets/styles/themes/_suse.scss +1 -1
- package/assets/translations/en-us.yaml +209 -813
- package/assets/translations/zh-hans.yaml +28 -792
- package/components/ActionMenu.vue +3 -3
- package/components/AsyncButton.vue +17 -2
- package/components/ButtonDropdown.vue +4 -0
- package/components/Carousel.vue +291 -0
- package/components/CodeMirror.vue +6 -8
- package/components/CommunityLinks.vue +70 -19
- package/components/ContainerResourceLimit.vue +14 -0
- package/components/CruResource.vue +11 -3
- package/components/Dialog.vue +102 -0
- package/components/ExplorerMembers.vue +121 -0
- package/components/ExplorerProjectsNamespaces.vue +404 -0
- package/components/GrafanaDashboard.vue +17 -2
- package/components/IconMessage.vue +9 -1
- package/components/LocaleSelector.vue +114 -0
- package/components/PromptModal.vue +2 -3
- package/components/ResourceList/index.vue +1 -1
- package/components/ResourceTable.vue +9 -7
- package/components/SimpleBox.vue +6 -4
- package/components/SingleClusterInfo.vue +1 -1
- package/components/SortableTable/index.vue +18 -25
- package/components/SortableTable/selection.js +1 -0
- package/components/Tabbed/Tab.vue +5 -0
- package/components/Tabbed/index.vue +29 -2
- package/components/auth/AzureWarning.vue +5 -1
- package/components/auth/Principal.vue +2 -1
- package/components/auth/RoleDetailEdit.vue +18 -11
- package/components/fleet/FleetBundles.vue +8 -3
- package/components/fleet/FleetRepos.vue +0 -2
- package/components/fleet/FleetSummary.vue +6 -0
- package/components/form/KeyValue.vue +80 -58
- package/components/form/NameNsDescription.vue +12 -8
- package/components/form/NodeScheduling.vue +1 -1
- package/components/form/ResourceTabs/index.vue +5 -1
- package/components/form/WorkloadPorts.vue +1 -1
- package/components/formatter/ClusterLink.vue +3 -7
- package/components/formatter/WorkloadHealthScale.vue +1 -1
- package/components/nav/Header.vue +9 -9
- package/components/nav/NamespaceFilter.vue +10 -7
- package/components/nav/TopLevelMenu.vue +10 -65
- package/components/nav/WindowManager/ContainerLogs.vue +1 -1
- package/config/footer.js +13 -14
- package/config/labels-annotations.js +2 -1
- package/config/product/explorer.js +5 -4
- package/config/product/harvester-manager.js +64 -2
- package/config/product/legacy.js +0 -47
- package/config/product/manager.js +9 -0
- package/config/product/multi-cluster-apps.js +0 -12
- package/config/product/settings.js +12 -1
- package/config/product/uiplugins.js +17 -0
- package/config/settings.js +37 -72
- package/config/table-headers.js +0 -1
- package/config/types.js +9 -25
- package/config/uiplugins.js +60 -0
- package/content/docs/en-us/getting-started.md +1 -26
- package/core/plugin-routes.ts +34 -22
- package/core/plugin.ts +15 -3
- package/core/plugins-loader.js +2 -0
- package/core/plugins.js +91 -36
- package/core/types.ts +7 -1
- package/detail/provisioning.cattle.io.cluster.vue +15 -2
- package/detail/workload/index.vue +11 -5
- package/{components/dialog → dialog}/AddClusterMemberDialog.vue +0 -0
- package/{components/dialog → dialog}/AddCustomBadgeDialog.vue +0 -0
- package/{components/dialog → dialog}/AddProjectMemberDialog.vue +0 -0
- package/{components/dialog → dialog}/AddonConfigConfirmationDialog.vue +0 -0
- package/dialog/DiagnosticTimingsDialog.vue +116 -0
- package/{components/dialog → dialog}/DrainNode.vue +0 -0
- package/{components/dialog → dialog}/ForceMachineRemoveDialog.vue +0 -0
- package/{components/dialog → dialog}/GenericPrompt.vue +0 -0
- package/{components/dialog → dialog}/RollbackWorkloadDialog.vue +0 -0
- package/{components/dialog → dialog}/RotateCertificatesDialog.vue +9 -3
- package/{components/dialog → dialog}/RotateEncryptionKeyDialog.vue +0 -0
- package/{components/dialog → dialog}/SaveAsRKETemplateDialog.vue +0 -0
- package/{components/dialog → dialog}/ScaleMachineDownDialog.vue +0 -0
- package/edit/auth/azuread.vue +44 -6
- package/edit/management.cattle.io.project.vue +2 -2
- package/edit/namespace.vue +17 -10
- package/edit/networking.k8s.io.ingress/index.vue +2 -2
- package/edit/persistentvolume/index.vue +3 -0
- package/edit/persistentvolumeclaim.vue +1 -0
- package/edit/pod.vue +27 -0
- package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +33 -5
- package/edit/provisioning.cattle.io.cluster/rke2.vue +76 -5
- package/edit/service.vue +8 -6
- package/edit/workload/__tests__/Upgrading.test.ts +1 -0
- package/edit/workload/index.vue +375 -15
- package/edit/workload/mixins/workload.js +62 -7
- package/edit/workload/storage/ContainerMountPaths.vue +240 -0
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +20 -1
- package/edit/workload/storage/azureDisk.vue +22 -2
- package/edit/workload/storage/azureFile.vue +20 -2
- package/edit/workload/storage/csi/index.vue +23 -1
- package/edit/workload/storage/gcePersistentDisk.vue +20 -2
- package/edit/workload/storage/index.vue +23 -49
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -0
- package/edit/workload/storage/vsphereVolume.vue +11 -1
- package/layouts/default.vue +63 -32
- package/layouts/error.vue +5 -1
- package/layouts/home.vue +14 -5
- package/layouts/plain.vue +10 -5
- package/list/harvesterhci.io.management.cluster.vue +74 -33
- package/list/management.cattle.io.setting.vue +3 -3
- package/list/namespace.vue +3 -5
- package/list/provisioning.cattle.io.cluster.vue +1 -1
- package/machine-config/amazonec2.vue +2 -0
- package/machine-config/harvester.vue +100 -51
- package/middleware/authenticated.js +56 -52
- package/mixins/form-validation.js +1 -1
- package/mixins/resource-fetch.js +3 -1
- package/models/catalog.cattle.io.uiplugin.js +34 -0
- package/models/cluster/node.js +25 -2
- package/models/fleet.cattle.io.bundle.js +27 -20
- package/models/harvesterhci.io.management.cluster.js +200 -5
- package/models/management.cattle.io.cluster.js +1 -1
- package/models/management.cattle.io.clusterroletemplatebinding.js +9 -0
- package/models/management.cattle.io.project.js +23 -2
- package/models/namespace.js +19 -3
- package/models/pod.js +19 -2
- package/models/provisioning.cattle.io.cluster.js +16 -6
- package/models/workload.js +9 -246
- package/models/workload.service.js +314 -0
- package/nuxt.config.js +80 -34
- package/package.json +107 -108
- package/pages/auth/login.vue +11 -2
- package/pages/auth/setup.vue +1 -1
- package/pages/c/_cluster/_product/members/index.vue +3 -93
- package/pages/c/_cluster/_product/projectsnamespaces.vue +6 -403
- package/pages/c/_cluster/apps/charts/index.vue +46 -1
- package/pages/c/_cluster/apps/charts/install.vue +10 -9
- package/pages/c/_cluster/explorer/index.vue +72 -9
- package/pages/c/_cluster/explorer/tools/index.vue +12 -5
- package/pages/c/_cluster/mcapps/index.vue +1 -1
- package/pages/c/_cluster/settings/brand.vue +0 -40
- package/pages/c/_cluster/settings/links.vue +200 -0
- package/pages/c/_cluster/settings/performance.vue +19 -16
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +232 -0
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +242 -0
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +284 -0
- package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +130 -0
- package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +253 -0
- package/pages/c/_cluster/uiplugins/UninstallDialog.vue +115 -0
- package/pages/c/_cluster/uiplugins/index.vue +694 -0
- package/pages/diagnostic.vue +185 -101
- package/pages/docs/_doc.vue +3 -1
- package/pages/fail-whale.vue +1 -10
- package/pages/home.vue +21 -56
- package/pages/index.vue +18 -4
- package/pages/prefs.vue +108 -86
- package/pages/safeMode.vue +17 -0
- package/pages/support/index.vue +23 -15
- package/pkg/auto-import.js +44 -7
- package/pkg/dynamic-importer.lib.js +4 -0
- package/pkg/dynamic-plugin-loader.js +28 -0
- package/pkg/import.js +2 -2
- package/pkg/model-loader-require.lib.js +3 -0
- package/pkg/vue.config.js +9 -6
- package/plugins/dashboard-store/model-loader-require.js +12 -0
- package/plugins/dashboard-store/model-loader.js +4 -1
- package/plugins/dashboard-store/resource-class.js +12 -5
- package/plugins/formatters.js +15 -0
- package/plugins/plugin.js +56 -4
- package/plugins/steve/actions.js +1 -1
- package/plugins/steve/index.js +6 -4
- package/plugins/steve/mutations.js +1 -1
- package/plugins/steve/subscribe.js +89 -56
- package/plugins/steve/web-worker.steve-sub-worker.js +24 -15
- package/promptRemove/management.cattle.io.globalrole.vue +47 -0
- package/promptRemove/management.cattle.io.roletemplate.vue +47 -0
- package/promptRemove/mixin/roleDeletionCheck.js +97 -0
- package/rancher-components/Form/Checkbox/Checkbox.test.ts +77 -0
- package/rancher-components/Form/Checkbox/Checkbox.vue +12 -2
- package/scripts/build-pkg.sh +48 -2
- package/scripts/drone-build-pkg.sh +31 -0
- package/scripts/publish-shell.sh +11 -12
- package/scripts/serve-pkgs +17 -10
- package/scripts/sync-shell-deps +37 -0
- package/store/catalog.js +12 -9
- package/store/i18n.js +26 -12
- package/store/index.js +4 -181
- package/store/prefs.js +46 -2
- package/store/type-map.js +47 -33
- package/store/uiplugins.ts +15 -61
- package/utils/__tests__/object.test.ts +0 -24
- package/utils/__tests__/selector.test.ts +1 -1
- package/utils/cluster.js +1 -1
- package/utils/custom-validators.js +1 -12
- package/utils/dynamic-importer.js +5 -1
- package/utils/grafana.js +2 -6
- package/utils/socket.js +41 -20
- package/utils/string.js +1 -7
- package/utils/validators/formRules/__tests__/index.test.ts +108 -0
- package/utils/validators/formRules/index.ts +9 -1
- package/utils/validators/setting.js +0 -35
- package/yarn-error.log +195 -0
- package/components/FilterLabel.vue +0 -254
- package/components/HarvesterUpgradeProgressBarList.vue +0 -109
- package/components/VMConsoleBar.vue +0 -87
- package/components/dialog/harvester/AddHotplugModal.vue +0 -159
- package/components/dialog/harvester/BackupModal.vue +0 -117
- package/components/dialog/harvester/CloneTemplate.vue +0 -125
- package/components/dialog/harvester/EjectCDROMDialog.vue +0 -157
- package/components/dialog/harvester/ExportImageDialog.vue +0 -152
- package/components/dialog/harvester/MaintenanceDialog.vue +0 -94
- package/components/dialog/harvester/MigrationDialog.vue +0 -154
- package/components/dialog/harvester/RestoreDialog.vue +0 -153
- package/components/dialog/harvester/SupportBundle.vue +0 -217
- package/components/dialog/harvester/UnplugVolume.vue +0 -108
- package/components/form/SerialConsole/index.vue +0 -267
- package/components/formatter/AttachVMWithName.vue +0 -46
- package/components/formatter/CloudInitType.vue +0 -27
- package/components/formatter/HarvesterBackupTargetValidation.vue +0 -43
- package/components/formatter/HarvesterCPUUsed.vue +0 -122
- package/components/formatter/HarvesterDiskState.vue +0 -66
- package/components/formatter/HarvesterHostName.vue +0 -66
- package/components/formatter/HarvesterIpAddress.vue +0 -90
- package/components/formatter/HarvesterMemoryUsed.vue +0 -140
- package/components/formatter/HarvesterMigrationState.vue +0 -85
- package/components/formatter/HarvesterNodeName.vue +0 -49
- package/components/formatter/HarvesterStorageUsed.vue +0 -194
- package/components/formatter/HarvesterVmState.vue +0 -123
- package/components/nav/HarvesterUpgrade.vue +0 -232
- package/components/novnc/NovncConsole.vue +0 -93
- package/components/novnc/NovncConsoleItem.vue +0 -89
- package/components/novnc/NovncConsoleWrapper.vue +0 -243
- package/config/harvester-map.js +0 -44
- package/config/harvester-table-headers.js +0 -27
- package/config/product/harvester.js +0 -305
- package/detail/harvesterhci.io.host/HarvesterHostBasic.vue +0 -364
- package/detail/harvesterhci.io.host/HarvesterHostDisk.vue +0 -200
- package/detail/harvesterhci.io.host/HarvesterHostNetwork.vue +0 -89
- package/detail/harvesterhci.io.host/VirtualMachineInstance.vue +0 -134
- package/detail/harvesterhci.io.host/index.vue +0 -243
- package/detail/harvesterhci.io.virtualmachinebackup/index.vue +0 -221
- package/detail/harvesterhci.io.virtualmachineimage.vue +0 -118
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineBasics.vue +0 -279
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineEvents.vue +0 -75
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineKeypairs.vue +0 -114
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineMigration.vue +0 -79
- package/detail/kubevirt.io.virtualmachine/index.vue +0 -213
- package/edit/harvesterhci.io.cloudtemplate.vue +0 -123
- package/edit/harvesterhci.io.host/HarvesterDisk.vue +0 -262
- package/edit/harvesterhci.io.host/index.vue +0 -533
- package/edit/harvesterhci.io.keypair.vue +0 -112
- package/edit/harvesterhci.io.managedchart/index.vue +0 -25
- package/edit/harvesterhci.io.managedchart/rancher-monitoring.vue +0 -172
- package/edit/harvesterhci.io.networkattachmentdefinition.vue +0 -210
- package/edit/harvesterhci.io.setting/additional-ca.vue +0 -36
- package/edit/harvesterhci.io.setting/backup-target.vue +0 -182
- package/edit/harvesterhci.io.setting/http-proxy.vue +0 -79
- package/edit/harvesterhci.io.setting/index.vue +0 -201
- package/edit/harvesterhci.io.setting/overcommit-config.vue +0 -94
- package/edit/harvesterhci.io.setting/ssl-certificates.vue +0 -117
- package/edit/harvesterhci.io.setting/ssl-parameters.vue +0 -161
- package/edit/harvesterhci.io.setting/support-bundle-image.vue +0 -134
- package/edit/harvesterhci.io.setting/support-bundle-namespaces.vue +0 -73
- package/edit/harvesterhci.io.setting/vip-pools.vue +0 -244
- package/edit/harvesterhci.io.setting/vm-force-reset-policy.vue +0 -81
- package/edit/harvesterhci.io.virtualmachinebackup.vue +0 -256
- package/edit/harvesterhci.io.virtualmachineimage.vue +0 -364
- package/edit/harvesterhci.io.virtualmachinetemplateversion.vue +0 -340
- package/edit/harvesterhci.io.volume.vue +0 -195
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/AccessCredentialsUsers.vue +0 -190
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/index.vue +0 -212
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/basicAuth.vue +0 -94
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/sshkey.vue +0 -85
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/DataTemplate.vue +0 -153
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/index.vue +0 -279
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCpuMemory.vue +0 -113
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/__tests__/HarvesterEditNetwork.test.ts +0 -41
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/base.vue +0 -281
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/index.vue +0 -142
- package/edit/kubevirt.io.virtualmachine/VirtualMachineReserved.vue +0 -54
- package/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue +0 -256
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/index.vue +0 -391
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditContainer.test.ts +0 -40
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditExisting.test.ts +0 -102
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVMImage.test.ts +0 -117
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVolume.test.ts +0 -74
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/container.vue +0 -132
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/existing.vue +0 -303
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/vmImage.vue +0 -285
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/volume.vue +0 -188
- package/edit/kubevirt.io.virtualmachine/index.vue +0 -642
- package/edit/network.harvesterhci.io.clusternetwork/index.vue +0 -19
- package/edit/network.harvesterhci.io.clusternetwork/vlan.vue +0 -134
- package/edit/workload/types/Deployment.vue +0 -377
- package/edit/workload/types/Generic.vue +0 -295
- package/list/harvesterhci.io.cloudtemplate.vue +0 -78
- package/list/harvesterhci.io.dashboard/HarvesterUpgrade.vue +0 -211
- package/list/harvesterhci.io.dashboard/UpgradeInfo.vue +0 -40
- package/list/harvesterhci.io.dashboard/index.vue +0 -752
- package/list/harvesterhci.io.host/index.vue +0 -186
- package/list/harvesterhci.io.networkattachmentdefinition.vue +0 -167
- package/list/harvesterhci.io.setting.vue +0 -241
- package/list/harvesterhci.io.virtualmachinebackup.vue +0 -172
- package/list/harvesterhci.io.virtualmachineimage.vue +0 -80
- package/list/harvesterhci.io.virtualmachinetemplateversion.vue +0 -173
- package/list/harvesterhci.io.volume.vue +0 -122
- package/list/kubevirt.io.virtualmachine.vue +0 -193
- package/mixins/harvester-vm/impl.js +0 -267
- package/mixins/harvester-vm/index.js +0 -1357
- package/models/harvester/configmap.js +0 -32
- package/models/harvester/harvesterhci.io.blockdevice.js +0 -55
- package/models/harvester/harvesterhci.io.keypair.js +0 -12
- package/models/harvester/harvesterhci.io.setting.js +0 -127
- package/models/harvester/harvesterhci.io.supportbundle.js +0 -35
- package/models/harvester/harvesterhci.io.upgrade.js +0 -226
- package/models/harvester/harvesterhci.io.virtualmachinebackup.js +0 -116
- package/models/harvester/harvesterhci.io.virtualmachineimage.js +0 -255
- package/models/harvester/harvesterhci.io.virtualmachinerestore.js +0 -43
- package/models/harvester/harvesterhci.io.virtualmachinetemplate.js +0 -69
- package/models/harvester/harvesterhci.io.virtualmachinetemplateversion.js +0 -227
- package/models/harvester/k8s.cni.cncf.io.networkattachmentdefinition.js +0 -32
- package/models/harvester/kubevirt.io.virtualmachine.js +0 -850
- package/models/harvester/kubevirt.io.virtualmachineinstance.js +0 -142
- package/models/harvester/management.cattle.io.managedchart.js +0 -191
- package/models/harvester/management.cattle.io.setting.js +0 -40
- package/models/harvester/network.harvesterhci.io.clusternetwork.js +0 -100
- package/models/harvester/network.harvesterhci.io.nodenetwork.js +0 -34
- package/models/harvester/node.js +0 -255
- package/models/harvester/persistentvolumeclaim.js +0 -166
- package/models/harvester/pod.js +0 -185
- package/pages/c/_cluster/harvester/airgapupgrade/index.vue +0 -309
- package/pages/c/_cluster/harvester/console/_uid/serial.vue +0 -51
- package/pages/c/_cluster/harvester/console/_uid/vnc.vue +0 -52
- package/pages/c/_cluster/harvester/index.vue +0 -24
- package/pages/c/_cluster/harvester/support/index.vue +0 -154
- package/pages/plugins.vue +0 -387
- package/pkg/model-loader.lib.js +0 -3
- package/promptRemove/kubevirt.io.virtualmachine.vue +0 -164
- package/server/verdaccio-middleware.js +0 -56
- package/store/harvester-common.js +0 -126
- package/utils/validators/vm-datavolumes.js +0 -38
- package/utils/validators/vm-image.js +0 -32
- package/utils/validators/vm.js +0 -221
|
@@ -191,7 +191,6 @@ product:
|
|
|
191
191
|
mcapps: 多集群应用
|
|
192
192
|
neuvector: NeuVector
|
|
193
193
|
harvesterManager: 虚拟化管理
|
|
194
|
-
harvester: Harvester
|
|
195
194
|
rancher: Rancher
|
|
196
195
|
|
|
197
196
|
suffix:
|
|
@@ -1500,6 +1499,7 @@ cluster:
|
|
|
1500
1499
|
warning: '此集群包含此表单不完全支持的 machineSelectorConfig。使用 YAML 编辑器管理完整配置。'
|
|
1501
1500
|
os: '你正在将 {newOS} worker 节点添加到具有一个或多个 {existingOS} worker 节点的集群。你可能需要升级或删除某些已安装的应用。'
|
|
1502
1501
|
rke2-k3-reprovisioning: '更改集群配置可能导致节点重新配置。详情请参见 <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">文档</a>。'
|
|
1502
|
+
desiredNodeGroupWarning: 没有可用于运行 Cluster Agent 的节点。要让集群变为 Active 状态,至少需要有 1 个可用的节点。
|
|
1503
1503
|
|
|
1504
1504
|
rkeTemplateUpgrade: 模板修订版 {name} 可用于升级
|
|
1505
1505
|
|
|
@@ -1557,7 +1557,7 @@ cluster:
|
|
|
1557
1557
|
autoReplace:
|
|
1558
1558
|
label: 自动替换
|
|
1559
1559
|
toolTip: 如果大于 0,则在此期间无法访问的节点将被自动删除和替换。
|
|
1560
|
-
unit: "
|
|
1560
|
+
unit: "秒"
|
|
1561
1561
|
managementTimeout: 集群变成可用。可能已创建了集群。建议在创建另一个集群之前检查集群页面。
|
|
1562
1562
|
memberRoles:
|
|
1563
1563
|
removeMessage: '注意:删除用户不会删除其项目权限。'
|
|
@@ -2457,10 +2457,6 @@ landing:
|
|
|
2457
2457
|
seeWhatsNew: 点击右侧链接,了解此版本的新功能和优化。
|
|
2458
2458
|
whatsNewLink: "2.6 的新功能"
|
|
2459
2459
|
learnMore: 了解更多
|
|
2460
|
-
gettingStarted:
|
|
2461
|
-
title: 快速入门
|
|
2462
|
-
body: 查看快速入门指南。Cluster Manager 用户可以了解 Dashboard UI 的更多新功能。
|
|
2463
|
-
support: 支持
|
|
2464
2460
|
community:
|
|
2465
2461
|
title: 社区支持
|
|
2466
2462
|
docs: Rancher 官方文档
|
|
@@ -3661,7 +3657,9 @@ prefs:
|
|
|
3661
3657
|
label: 登录页面
|
|
3662
3658
|
vue: 集群浏览器
|
|
3663
3659
|
ember: Cluster Manager
|
|
3664
|
-
|
|
3660
|
+
displaySettings:
|
|
3661
|
+
title: 显示设置
|
|
3662
|
+
detail: 更改在 UI 中显示信息的方式。
|
|
3665
3663
|
clusterToShow:
|
|
3666
3664
|
label: 在侧边栏显示的集群数量
|
|
3667
3665
|
value: |-
|
|
@@ -3871,6 +3869,7 @@ promptRemove:
|
|
|
3871
3869
|
confirmName: "在下方输入 <b>{nameToMatch}</b> 以确认:"
|
|
3872
3870
|
deleteAssociatedNamespaces: "同时删除此项目中的命名空间:"
|
|
3873
3871
|
willDeleteAssociatedNamespaces: "项目中的所有命名空间也都会被删除:"
|
|
3872
|
+
confirmRelatedResource: "删除 {type} 将删除这个 {type} 上的所有资源,此过程不可逆。你确定要继续删除 {names} 吗?"
|
|
3874
3873
|
|
|
3875
3874
|
promptRemoveApp:
|
|
3876
3875
|
removeCrd: "删除与此应用关联的 CRD"
|
|
@@ -4392,6 +4391,9 @@ setup:
|
|
|
4392
4391
|
welcome: 欢迎使用 {vendor}!
|
|
4393
4392
|
|
|
4394
4393
|
sortableTable:
|
|
4394
|
+
bulkActions:
|
|
4395
|
+
collapsed:
|
|
4396
|
+
label: 操作
|
|
4395
4397
|
actionAvailability:
|
|
4396
4398
|
selected: "已选择 {actionable} 项"
|
|
4397
4399
|
some: "影响 {total} 项中的 {actionable} 项"
|
|
@@ -5591,695 +5593,16 @@ workload:
|
|
|
5591
5593
|
deployment: Deployment
|
|
5592
5594
|
pod: Pod
|
|
5593
5595
|
containers: 容器
|
|
5594
|
-
harvester:
|
|
5595
|
-
modal:
|
|
5596
|
-
backup:
|
|
5597
|
-
success: '已启动备份 { backUpName }。'
|
|
5598
|
-
addBackup: 添加备份
|
|
5599
|
-
restore:
|
|
5600
|
-
success: '{ name } 还原创建成功。'
|
|
5601
|
-
title: 备份还原
|
|
5602
|
-
selectBackup: 选择备份
|
|
5603
|
-
message:
|
|
5604
|
-
backup: 请选择需要还原的备份。
|
|
5605
|
-
createTemplate:
|
|
5606
|
-
title: '生成模板'
|
|
5607
|
-
name: '名称'
|
|
5608
|
-
description: '描述'
|
|
5609
|
-
message:
|
|
5610
|
-
tip: 请输入模板名称。
|
|
5611
|
-
success: '模板 { templateName } 创建成功。'
|
|
5612
|
-
failed: '生成模板失败。'
|
|
5613
|
-
exportImage:
|
|
5614
|
-
title: 导出镜像
|
|
5615
|
-
name: 名称
|
|
5616
|
-
namespace: 命名空间
|
|
5617
|
-
message:
|
|
5618
|
-
success: '镜像 { name } 创建成功。'
|
|
5619
|
-
migration:
|
|
5620
|
-
failedMessage: 最新迁移失败。
|
|
5621
|
-
title: 迁移
|
|
5622
|
-
fields:
|
|
5623
|
-
nodeName:
|
|
5624
|
-
label: 目标节点
|
|
5625
|
-
placeholder: 选择目标节点
|
|
5626
|
-
ejectCDROM:
|
|
5627
|
-
title: 弹出 CDROM
|
|
5628
|
-
warnTip: 如果你弹出卷,虚拟机将重启。
|
|
5629
|
-
operationTip: '选择要删除的卷:'
|
|
5630
|
-
delete: 删除
|
|
5631
|
-
bundle:
|
|
5632
|
-
title: 生成 Support Bundle
|
|
5633
|
-
url: Issue URL
|
|
5634
|
-
description: 描述
|
|
5635
|
-
requiredDesc: 描述是必填项。
|
|
5636
|
-
titleDescription: 收集 Harvester 系统日志,用于定位问题和获取支持。
|
|
5637
|
-
hotplug:
|
|
5638
|
-
success: '卷 { diskName } 已挂载到 { vm }。'
|
|
5639
|
-
title: 添加卷
|
|
5640
|
-
hotunplug:
|
|
5641
|
-
success: '卷 { name } 拔出成功。'
|
|
5642
|
-
notification:
|
|
5643
|
-
title:
|
|
5644
|
-
succeed: 成功
|
|
5645
|
-
info: 信息
|
|
5646
|
-
warning: 警告
|
|
5647
|
-
error: 错误
|
|
5648
|
-
action:
|
|
5649
|
-
createVM: 创建虚拟机
|
|
5650
|
-
start: 启动
|
|
5651
|
-
restart: 重启
|
|
5652
|
-
softreboot: 安全重启
|
|
5653
|
-
stop: 停止
|
|
5654
|
-
pause: 暂停
|
|
5655
|
-
unpause: 取消暂停
|
|
5656
|
-
ejectCDROM: 弹出 CDROM
|
|
5657
|
-
launchFormTemplate: 从模板启动实例
|
|
5658
|
-
modifyTemplate: 修改模板(创建新版本)
|
|
5659
|
-
setDefaultVersion: 设置默认版本
|
|
5660
|
-
addTemplateVersion: 添加模板版本
|
|
5661
|
-
backup: 备份
|
|
5662
|
-
restore: 还原
|
|
5663
|
-
restoreNewVM: 还原新的虚拟机
|
|
5664
|
-
restoreExistingVM: 替换现有虚拟机
|
|
5665
|
-
migrate: 迁移
|
|
5666
|
-
abortMigration: 中止迁移
|
|
5667
|
-
createTemplate: 生成模板
|
|
5668
|
-
enableMaintenance: 开启维护模式
|
|
5669
|
-
disableMaintenance: 关闭维护模式
|
|
5670
|
-
cordon: 封锁
|
|
5671
|
-
uncordon: 解除封锁
|
|
5672
|
-
addHotplug: 添加卷
|
|
5673
|
-
exportImage: 导出镜像
|
|
5674
|
-
viewlogs: 查看日志
|
|
5675
|
-
cancelExpand: 取消展开
|
|
5676
|
-
tableHeaders:
|
|
5677
|
-
size: 大小
|
|
5678
|
-
progress: 进度
|
|
5679
|
-
message: 消息
|
|
5680
|
-
phase: 阶段
|
|
5681
|
-
attachedVM: 挂载的虚拟机
|
|
5682
|
-
fingerprint: 唯一标识
|
|
5683
|
-
value: 值
|
|
5684
|
-
actions: 操作
|
|
5685
|
-
readyToUse: 可用
|
|
5686
|
-
backupTarget: 备份路径
|
|
5687
|
-
targetVm: 目标虚拟机
|
|
5688
|
-
hostIp: 主机 IP
|
|
5689
|
-
vm:
|
|
5690
|
-
ipAddress: IP 地址
|
|
5691
|
-
node: 节点
|
|
5692
|
-
defaultVersion: 默认版本
|
|
5693
|
-
network:
|
|
5694
|
-
type: 类型
|
|
5695
|
-
vlan: Vlan ID
|
|
5696
|
-
tab:
|
|
5697
|
-
volume: 卷
|
|
5698
|
-
network: 网络
|
|
5699
|
-
advanced: 高级选项
|
|
5700
|
-
accessCredentials: 凭证管理
|
|
5701
|
-
fields:
|
|
5702
|
-
version: 版本
|
|
5703
|
-
name: 名称
|
|
5704
|
-
type: 类型
|
|
5705
|
-
image: 镜像
|
|
5706
|
-
size: 大小
|
|
5707
|
-
volume: 卷
|
|
5708
|
-
network: 网络
|
|
5709
|
-
model: 模式
|
|
5710
|
-
macAddress: MAC 地址
|
|
5711
|
-
port: 端口
|
|
5712
|
-
protocol: 协议
|
|
5713
|
-
remove: 删除
|
|
5714
|
-
PhysicalNic: 物理网卡
|
|
5715
|
-
cpu: CPU
|
|
5716
|
-
memory: 内存
|
|
5717
|
-
virtualName: 虚拟机名称
|
|
5718
|
-
promiscuous: Promiscuous
|
|
5719
|
-
ipv4Address: IPv4 地址
|
|
5720
|
-
filterLabels: 标签过滤
|
|
5721
|
-
generic:
|
|
5722
|
-
close: 关闭
|
|
5723
|
-
open: 打开
|
|
5724
|
-
showMore: 显示更多
|
|
5725
|
-
hideMore: 隐藏更多
|
|
5726
|
-
memory: 内存
|
|
5727
|
-
cpu: CPU
|
|
5728
|
-
storage: 存储
|
|
5729
|
-
noFileChosen: 没有选择任何文件
|
|
5730
|
-
|
|
5731
|
-
validation:
|
|
5732
|
-
custom:
|
|
5733
|
-
tooLongName: '"Name" 的长度不能超过{max}个字符。'
|
|
5734
|
-
vm:
|
|
5735
|
-
name: '"名称"是必填项。'
|
|
5736
|
-
memory: '"内存"是必填项。'
|
|
5737
|
-
network:
|
|
5738
|
-
error: '网络 {prefix}:{message}'
|
|
5739
|
-
name: '"网络名称"是必填项。'
|
|
5740
|
-
macFormat: 'MAC 地址格式不正确。'
|
|
5741
|
-
duplicatedName: '网络名称重复。'
|
|
5742
|
-
duplicatedPortName: '端口名重复。'
|
|
5743
|
-
duplicatedPortNumber: '端口号重复。'
|
|
5744
|
-
volume:
|
|
5745
|
-
error: '卷 {prefix}:{message}'
|
|
5746
|
-
duplicatedName: '卷名称重复。'
|
|
5747
|
-
type: '"类型"是必填项。'
|
|
5748
|
-
size: '"大小"是必填项。'
|
|
5749
|
-
image: '"镜像"是必填项。'
|
|
5750
|
-
volume: '"卷"是必填项。'
|
|
5751
|
-
docker: '"Docker 镜像"是必填项。'
|
|
5752
|
-
needImageOrExisting: '至少需要一个镜像卷或已存在的根磁盘卷。'
|
|
5753
|
-
image:
|
|
5754
|
-
ruleTip: 'URL 后缀不支持。仅支持后缀为 .img,.iso,.qcow,.qcow2或.raw的镜像文件。'
|
|
5755
|
-
ruleFileTip: '文件后缀不支持。仅支持后缀为 .img,.iso,.qcow,.qcow2或.raw的镜像文件。'
|
|
5756
|
-
|
|
5757
|
-
dashboard:
|
|
5758
|
-
label: 仪表板
|
|
5759
|
-
header: "Harvester 集群:{cluster}"
|
|
5760
|
-
hardwareResourceGauge:
|
|
5761
|
-
cpu: CPU
|
|
5762
|
-
memory: 内存
|
|
5763
|
-
storage: 存储
|
|
5764
|
-
sections:
|
|
5765
|
-
events:
|
|
5766
|
-
label: 事件
|
|
5767
|
-
vmMetrics:
|
|
5768
|
-
label: 虚拟机指标
|
|
5769
|
-
upgrade:
|
|
5770
|
-
upgradeApp: 升级软件
|
|
5771
|
-
upgrade: 升级
|
|
5772
|
-
upgradeTip: 请选择目标升级版本
|
|
5773
|
-
currentVersion: 当前版本
|
|
5774
|
-
versionLabel: 可用的兼容版本
|
|
5775
|
-
upgradeNode: 升级节点
|
|
5776
|
-
upgradeSysService: 升级系统服务
|
|
5777
|
-
|
|
5778
|
-
version: 版本
|
|
5779
|
-
host:
|
|
5780
|
-
label: 主机
|
|
5781
|
-
inconsistentIP: "主机 IP 不一致,当前 IP:{currentIP},初始 IP:{initIP}"
|
|
5782
|
-
promote:
|
|
5783
|
-
none: ' '
|
|
5784
|
-
running: 角色升级中
|
|
5785
|
-
failed: 角色升级失败
|
|
5786
|
-
unknown: 角色升级中断
|
|
5787
|
-
promoteRestart: 角色升级重启中
|
|
5788
|
-
promoteSucceed: 角色升级完成
|
|
5789
|
-
tabs:
|
|
5790
|
-
network: 网络
|
|
5791
|
-
overview: 概述
|
|
5792
|
-
basics: 基本信息
|
|
5793
|
-
instance: 虚拟机
|
|
5794
|
-
monitor: 监控数据
|
|
5795
|
-
disk: 磁盘
|
|
5796
|
-
labels: 标签
|
|
5797
|
-
detail:
|
|
5798
|
-
title:
|
|
5799
|
-
network: 网络配置
|
|
5800
|
-
hostIP: 主机 IP
|
|
5801
|
-
role: 角色
|
|
5802
|
-
os: 操作系统
|
|
5803
|
-
create: 创建时间
|
|
5804
|
-
update: 上次更新时间
|
|
5805
|
-
customName: 自定义名称
|
|
5806
|
-
consoleUrl: 控制台地址
|
|
5807
|
-
more: 更多信息
|
|
5808
|
-
uuid: UUID
|
|
5809
|
-
containerRuntime: 容器运行时
|
|
5810
|
-
kernel: 内核
|
|
5811
|
-
management: 管理节点
|
|
5812
|
-
compute: 计算节点
|
|
5813
|
-
storage: 存储
|
|
5814
|
-
nic: 物理网卡
|
|
5815
|
-
notRecommended: '不推荐'
|
|
5816
|
-
networkType: 类型
|
|
5817
|
-
enableMaintenance:
|
|
5818
|
-
title: 开启维护模式
|
|
5819
|
-
protip: 该操作会将此节点上的所有虚拟机迁移到其他节点。
|
|
5820
|
-
cordon:
|
|
5821
|
-
title: 封锁
|
|
5822
|
-
protip: 此操作会将节点 { node } 标记为不可调度。
|
|
5823
|
-
disk:
|
|
5824
|
-
add: 添加磁盘
|
|
5825
|
-
path:
|
|
5826
|
-
label: 路径
|
|
5827
|
-
storageReserved:
|
|
5828
|
-
label: 预留存储空间
|
|
5829
|
-
allowScheduling:
|
|
5830
|
-
label: 调度
|
|
5831
|
-
evictionRequested:
|
|
5832
|
-
label: 驱逐请求
|
|
5833
|
-
forceFormatted:
|
|
5834
|
-
label: 强制格式化
|
|
5835
|
-
toolTip: 强制格式化将会清空磁盘数据。请确保你已对对数据进行备份,以免丢失。
|
|
5836
|
-
yes: 是(Ext4 文件系统)
|
|
5837
|
-
description:
|
|
5838
|
-
label: 描述
|
|
5839
|
-
lastFormattedAt:
|
|
5840
|
-
info: 此磁盘已被强制格式化。
|
|
5841
|
-
notification:
|
|
5842
|
-
success: '已更新主机“{name}”配置。'
|
|
5843
|
-
error: 主机有未就绪或不可调度的磁盘。
|
|
5844
|
-
fileSystem:
|
|
5845
|
-
info: 当前文件系统为 {system},你可以手动格式化。
|
|
5846
|
-
|
|
5847
|
-
virtualizationManagement:
|
|
5848
|
-
manage: 管理
|
|
5849
|
-
|
|
5850
|
-
virtualMachine:
|
|
5851
|
-
label: 虚拟机
|
|
5852
|
-
osType: 操作系统类型
|
|
5853
|
-
instance:
|
|
5854
|
-
singleInstance:
|
|
5855
|
-
multipleInstance:
|
|
5856
|
-
single:
|
|
5857
|
-
label: 单个实例
|
|
5858
|
-
nameLabel: 名称
|
|
5859
|
-
host:
|
|
5860
|
-
label: 主机名
|
|
5861
|
-
placeholder: 默认为虚拟机名称。
|
|
5862
|
-
multiple:
|
|
5863
|
-
label: 多个实例
|
|
5864
|
-
nameNsDescription: 每个实例的名称前缀
|
|
5865
|
-
count: 数量
|
|
5866
|
-
countTip: 范围:1-10
|
|
5867
|
-
nameLabel: 名称前缀
|
|
5868
|
-
host:
|
|
5869
|
-
label: 主机名前缀
|
|
5870
|
-
placeholder: 默认为虚拟机名称。
|
|
5871
|
-
useTemplate:
|
|
5872
|
-
label: "使用虚拟机模板:"
|
|
5873
|
-
template:
|
|
5874
|
-
label: 模板
|
|
5875
|
-
version:
|
|
5876
|
-
label: 版本
|
|
5877
|
-
console:
|
|
5878
|
-
novnc: 在 Web VNC 中打开
|
|
5879
|
-
serial: 在串行控制台中打开
|
|
5880
|
-
promptRemove:
|
|
5881
|
-
title: '选择要删除的卷:'
|
|
5882
|
-
deleteAll: 删除全部
|
|
5883
|
-
unplug:
|
|
5884
|
-
title: '是否确认要拔出卷 {name} ?'
|
|
5885
|
-
actionLabel: 拔出
|
|
5886
|
-
detachVolume:
|
|
5887
|
-
拔出卷
|
|
5888
|
-
restartTip: |-
|
|
5889
|
-
{restart, select,
|
|
5890
|
-
true {重启}
|
|
5891
|
-
other {启动}
|
|
5892
|
-
}虚拟机以使配置更改生效。
|
|
5893
|
-
runStrategy: 运行策略
|
|
5894
|
-
restartNow: |-
|
|
5895
|
-
{restart, select,
|
|
5896
|
-
true {现在重启}
|
|
5897
|
-
other {现在启动}
|
|
5898
|
-
}
|
|
5899
|
-
createSSHKey: 创建 SSH 密钥
|
|
5900
|
-
installAgent: 安装访客代理
|
|
5901
|
-
enableUsb: 启用 USB Tablet
|
|
5902
|
-
usbTip: 提供绝对指针设备,有助于在 VNC 中获得一致的鼠标光标位置。
|
|
5903
|
-
sshTitle: 添加 SSH 公钥
|
|
5904
|
-
imageTip: 创建虚拟机所需的.iso,.img,.qcow2或.raw外部镜像地址
|
|
5905
|
-
efiEnabled: EFI 模式下启动
|
|
5906
|
-
secureBoot: 安全启动
|
|
5907
|
-
volume:
|
|
5908
|
-
dragTip: 拖放卷或使用卷的箭头来更改引导顺序。
|
|
5909
|
-
volumeTip: 虚拟机仅包含一个 cd-rom 卷。你可能想要添加额外的磁盘卷。
|
|
5910
|
-
macTip: "访客系统内显示的 MAC 地址"
|
|
5911
|
-
volumeUpdate: '卷 { name } 设置成功。'
|
|
5912
|
-
type: 类型
|
|
5913
|
-
size: 大小
|
|
5914
|
-
edit: 编辑
|
|
5915
|
-
bus: Bus
|
|
5916
|
-
bootOrder: 引导顺序
|
|
5917
|
-
volume: 卷
|
|
5918
|
-
dockerImage: Docker 镜像
|
|
5919
|
-
addVolume: 添加卷
|
|
5920
|
-
addExistingVolume: 添加现有卷
|
|
5921
|
-
addVmImage: 添加虚拟机镜像
|
|
5922
|
-
addContainer: 添加容器
|
|
5923
|
-
setFirst: 设置为根卷
|
|
5924
|
-
saveVolume: 更新卷
|
|
5925
|
-
title:
|
|
5926
|
-
vmImage: 镜像卷
|
|
5927
|
-
existingVolume: 现有卷
|
|
5928
|
-
volume: 卷
|
|
5929
|
-
container: 容器
|
|
5930
|
-
unmount:
|
|
5931
|
-
title: 是否确认?
|
|
5932
|
-
message: 是否确认卸载此卷?
|
|
5933
|
-
network:
|
|
5934
|
-
title: 网络
|
|
5935
|
-
addNetwork: 添加网络
|
|
5936
|
-
addPort: 添加端口
|
|
5937
|
-
cloudConfig:
|
|
5938
|
-
title: Cloud Config
|
|
5939
|
-
createTemplateTitle: '创建 { name }。'
|
|
5940
|
-
createNew: 创建...
|
|
5941
|
-
cloudInit:
|
|
5942
|
-
label: Cloud Init
|
|
5943
|
-
placeholder: 选择模板
|
|
5944
|
-
user:
|
|
5945
|
-
label: 用户数据模板
|
|
5946
|
-
title: "用户数据:"
|
|
5947
|
-
tip: "你可以指定用户数据,以在启动时配置实例或运行配置脚本。如果一次启动多个实例,所有预留实均能使用用户数据。<a href='https://cloudinit.readthedocs.io/en/latest/topics/examples.html' target='_blank'>了解更多</a>"
|
|
5948
|
-
network:
|
|
5949
|
-
label: 网络数据模板
|
|
5950
|
-
title: "网络数据:"
|
|
5951
|
-
tip: "通过分配子网配置,创建虚拟设备(bonds,bridges,Vlan)路由和 DNS 配置,来自定义实例的网络接口。<a href='https://cloudinit.readthedocs.io/en/latest/topics/network-config-format-v1.html' target='_blank'>了解更多</a>"
|
|
5952
|
-
scheduling:
|
|
5953
|
-
affinity:
|
|
5954
|
-
anyNode: '在任何可用节点上运行虚拟机'
|
|
5955
|
-
schedulingRules: '在匹配调度规则的节点上运行虚拟机'
|
|
5956
|
-
specificNode: 在指定节点上运行虚拟机 -(不支持热迁移)
|
|
5957
|
-
accessCredentials:
|
|
5958
|
-
resetPwd:
|
|
5959
|
-
label: 添加密码凭证
|
|
5960
|
-
injectSSH:
|
|
5961
|
-
label: 添加 SSH 密钥凭证
|
|
5962
|
-
users: 选择用户
|
|
5963
|
-
addUser: 添加用户
|
|
5964
|
-
tips: 要启用访问凭证,你需要安装 qemu-guest-agent。更新凭证内容后无需重启,而添加凭证后需要重启虚拟机。删除凭证后,需要进入虚拟机手动修改密码/删除 SSH 密钥。
|
|
5965
|
-
userTips: 添加的用户需要存在,否则凭证不会生效。
|
|
5966
|
-
duplicatedUser: 用户已存在。
|
|
5967
|
-
invalidUser: 无效的用户名
|
|
5968
|
-
input:
|
|
5969
|
-
name: 名称
|
|
5970
|
-
memory: 内存
|
|
5971
|
-
image: 镜像
|
|
5972
|
-
sshKey: SSH 密钥
|
|
5973
|
-
sshKeyValue: SSH 密钥
|
|
5974
|
-
MachineType: 主机类型
|
|
5975
|
-
username: 用户名
|
|
5976
|
-
password: 密码
|
|
5977
|
-
reservedMemory: 预留内存
|
|
5978
|
-
machineTypeTip: '指定要模拟的处理器架构。要查看支持的体系结构列表,请运行:qemu-system-x86_64 -cpu ?'
|
|
5979
|
-
detail:
|
|
5980
|
-
tabs:
|
|
5981
|
-
overview: 概述
|
|
5982
|
-
details: 详情
|
|
5983
|
-
environment: 环境
|
|
5984
|
-
events: 事件
|
|
5985
|
-
migration: 迁移
|
|
5986
|
-
console: 控制台
|
|
5987
|
-
networkInterfaces: 网络接口
|
|
5988
|
-
disks: 磁盘
|
|
5989
|
-
networks: 网络
|
|
5990
|
-
basics: 基本信息
|
|
5991
|
-
configurations: 配置
|
|
5992
|
-
inventory: 清单
|
|
5993
|
-
hostBasic: 基本属性
|
|
5994
|
-
instance: 虚拟机
|
|
5995
|
-
monitor: 监控数据
|
|
5996
|
-
keypairs: SSH 密钥
|
|
5997
|
-
cloudConfig: Cloud Config
|
|
5998
|
-
metrics: 虚拟机指标
|
|
5999
|
-
details:
|
|
6000
|
-
title:
|
|
6001
|
-
vmDetails: 虚拟机详情
|
|
6002
|
-
requirements: 调度和资源要求
|
|
6003
|
-
services: 服务
|
|
6004
|
-
users: 已登录用户
|
|
6005
|
-
name: 名称
|
|
6006
|
-
namespace: 命名空间
|
|
6007
|
-
created: 创建时间
|
|
6008
|
-
hostname: 主机名
|
|
6009
|
-
node: 节点
|
|
6010
|
-
ipAddress: IP 地址
|
|
6011
|
-
status: 状态
|
|
6012
|
-
pod: Pod
|
|
6013
|
-
labels: 标签
|
|
6014
|
-
bootOrder: 引导顺序
|
|
6015
|
-
annotations: 注释
|
|
6016
|
-
CDROMs: CD-ROM
|
|
6017
|
-
description: 描述
|
|
6018
|
-
operatingSystem: 操作系统
|
|
6019
|
-
template: 模板
|
|
6020
|
-
kernelRelease: 内核版本
|
|
6021
|
-
owner: 所有者
|
|
6022
|
-
workloadProfile: 工作负载配置文件
|
|
6023
|
-
nodeSelector: 节点选择器
|
|
6024
|
-
flavor: 规格
|
|
6025
|
-
tolerations: 容忍
|
|
6026
|
-
dedicatedResources: 专用资源
|
|
6027
|
-
down: 虚拟机未启动
|
|
6028
|
-
affinityRules: 亲和性规则
|
|
6029
|
-
sourceNode: 源节点
|
|
6030
|
-
targetNode: 目标节点
|
|
6031
|
-
started: 开始时间
|
|
6032
|
-
ended: 结束时间
|
|
6033
|
-
notAvailable: 不可用
|
|
6034
|
-
GuestAgentNotInstalled: 未安装 GuestAgent
|
|
6035
|
-
noOwner: 没有所有者
|
|
6036
|
-
events:
|
|
6037
|
-
from: 生成自
|
|
6038
|
-
down: 过去一小时没有事件
|
|
6039
|
-
console:
|
|
6040
|
-
down: 此虚拟机已关闭。请启动虚拟机以访问其控制台。
|
|
6041
|
-
shortKeys: 快捷键
|
|
6042
|
-
|
|
6043
|
-
volume:
|
|
6044
|
-
label: 卷
|
|
6045
|
-
tabs:
|
|
6046
|
-
basics: 基本信息
|
|
6047
|
-
size: 大小
|
|
6048
|
-
source: 源
|
|
6049
|
-
sourceOptions:
|
|
6050
|
-
new: 创建
|
|
6051
|
-
vmImage: 虚拟机镜像
|
|
6052
|
-
image: 镜像
|
|
6053
|
-
|
|
6054
|
-
image:
|
|
6055
|
-
label: 镜像
|
|
6056
|
-
tabs:
|
|
6057
|
-
basics: 基本信息
|
|
6058
|
-
url: URL
|
|
6059
|
-
size: 大小
|
|
6060
|
-
urlTip: '支持被 <a href="https://www.qemu.org/docs/master/system/images.html#disk-image-file-formats" target="_blank">qemu</a> 支持的 <code>raw</code> 和 <code>qcow2</code> 镜像格式。可引导的 ISO 镜像也是类似 <code>raw</code> 格式的镜像。'
|
|
6061
|
-
fileName: 文件名称
|
|
6062
|
-
uploadFile: 上传文件
|
|
6063
|
-
source: 源
|
|
6064
|
-
sourceType:
|
|
6065
|
-
download: URL
|
|
6066
|
-
upload: 文件
|
|
6067
|
-
warning:
|
|
6068
|
-
uploading: |-
|
|
6069
|
-
{count, plural,
|
|
6070
|
-
=1 {正在上传一个镜像。请不要刷新或关闭前页面。}
|
|
6071
|
-
other {正在上传{count}个镜像。请不要刷新或关闭前页面。}
|
|
6072
|
-
}
|
|
6073
|
-
|
|
6074
|
-
vmTemplate:
|
|
6075
|
-
label: 模板
|
|
6076
|
-
tabs:
|
|
6077
|
-
basics: 基本信息
|
|
6078
|
-
nameNsDescription:
|
|
6079
|
-
name: 模板名称
|
|
6080
|
-
tips:
|
|
6081
|
-
notExistImage:
|
|
6082
|
-
title: 镜像 {name} 不存在。
|
|
6083
|
-
message: 请选择一个新的镜像。
|
|
6084
|
-
notExistNode:
|
|
6085
|
-
title: 节点 {name} 不存在。
|
|
6086
|
-
message: 请选择一个新的节点。
|
|
6087
|
-
|
|
6088
|
-
upgradePage:
|
|
6089
|
-
upgradeApp: 升级软件
|
|
6090
|
-
upgrade: 升级
|
|
6091
|
-
upgradeTip: 请选择目标升级版本
|
|
6092
|
-
currentVersion: 当前版本
|
|
6093
|
-
versionLabel: 可用的兼容版本
|
|
6094
|
-
upgradeNode: 升级节点
|
|
6095
|
-
upgradeSysService: 升级系统服务
|
|
6096
|
-
upgradeImage: 下载升级镜像
|
|
6097
|
-
osUpgrade: 操作系统升级
|
|
6098
|
-
uploadNew: 上传新镜像
|
|
6099
|
-
selectExisting: 选择现有镜像
|
|
6100
|
-
createRepository: 创建升级仓库
|
|
6101
|
-
succeeded: 成功
|
|
6102
|
-
pending: 等待
|
|
6103
|
-
repoInfo:
|
|
6104
|
-
upgradeStatus: 升级状态
|
|
6105
|
-
os: 操作系统
|
|
6106
|
-
kubernetes: Kubernetes
|
|
6107
|
-
monitoringChart: Monitoring Chart
|
|
6108
|
-
harvesterChart: Harvester Chart
|
|
6109
|
-
success: 成功
|
|
6110
|
-
fail: 失败
|
|
6111
|
-
ongoing: 进行中
|
|
6112
|
-
dismissMessage: 忽略
|
|
6113
|
-
upgradeInfo:
|
|
6114
|
-
warning: 警告
|
|
6115
|
-
doc: 在升级到新 Harvester 版本之前,你必须为集群执行所需的<a href="https://docs.harvesterhci.io/v1.0/upgrade/automatic/" target="_blank">升级前检查</a>。仅完成适用于环境的任务即可。
|
|
6116
|
-
tip: 如果没有执行这些检查,升级可能会失败,而且你可能会遇到需要手动修复的已知问题。
|
|
6117
|
-
moreNotes: 有关发行说明的详情,请访问 -
|
|
6118
|
-
|
|
6119
|
-
backup:
|
|
6120
|
-
label: 备份
|
|
6121
|
-
createText: 还原备份
|
|
6122
|
-
title: 还原虚拟机
|
|
6123
|
-
backupTargetTip: 用于访问备份存储的端点。支持 NFS 和 S3。
|
|
6124
|
-
message:
|
|
6125
|
-
noSetting:
|
|
6126
|
-
prefix: 在创建新备份之前, 必须在
|
|
6127
|
-
middle: '设置'
|
|
6128
|
-
suffix: 中配置备份目标。
|
|
6129
|
-
errorTip:
|
|
6130
|
-
prefix: 非法的备份目标
|
|
6131
|
-
middle: 设置
|
|
6132
|
-
suffix: "。错误信息: "
|
|
6133
|
-
viewSetting:
|
|
6134
|
-
prefix: 点击
|
|
6135
|
-
middle: 此处
|
|
6136
|
-
suffix: 查看备份配置。
|
|
6137
|
-
restore:
|
|
6138
|
-
backup: 备份
|
|
6139
|
-
deletePreviousVolumes: 删除先前的卷
|
|
6140
|
-
createNew: 创建
|
|
6141
|
-
replaceExisting: 替换现有
|
|
6142
|
-
virtualMachineName: 虚拟机名称
|
|
6143
|
-
matchTarget: 当前备份目标与现有目标不匹配。
|
|
6144
|
-
|
|
6145
|
-
network:
|
|
6146
|
-
label: 网络
|
|
6147
|
-
tabs:
|
|
6148
|
-
basics: 基本信息
|
|
6149
|
-
layer3Network: 路由
|
|
6150
|
-
message:
|
|
6151
|
-
vlanInactive: 'VLAN 网络在 {name} 主机上处于非活动状态'
|
|
6152
|
-
premise:
|
|
6153
|
-
prefix: '你需要先进行网络'
|
|
6154
|
-
middle: '设置'
|
|
6155
|
-
suffix: '然后才能创建新网络。'
|
|
6156
|
-
viewSetting:
|
|
6157
|
-
prefix: 点击
|
|
6158
|
-
middle: 此处
|
|
6159
|
-
suffix: 查看默认集群网络配置。
|
|
6160
|
-
errorTip:
|
|
6161
|
-
prefix: 非法的物理网卡
|
|
6162
|
-
middle: 设置
|
|
6163
|
-
suffix: "。错误信息: "
|
|
6164
|
-
layer3Network:
|
|
6165
|
-
mode:
|
|
6166
|
-
label: 模式
|
|
6167
|
-
auto: 自动(DHCP)
|
|
6168
|
-
manual: 手动
|
|
6169
|
-
serverIPAddr:
|
|
6170
|
-
label: DHCP 服务器 IP
|
|
6171
|
-
gateway:
|
|
6172
|
-
label: 网关
|
|
6173
|
-
placeholder: 例如:172.16.0.1
|
|
6174
|
-
cidr:
|
|
6175
|
-
label: CIDR
|
|
6176
|
-
placeholder: 例如:172.16.0.1/24
|
|
6177
|
-
sshKey:
|
|
6178
|
-
label: SSH 密钥
|
|
6179
|
-
keypair: SSH 密钥
|
|
6180
|
-
tabs:
|
|
6181
|
-
basics: 基本信息
|
|
6182
|
-
|
|
6183
|
-
setting:
|
|
6184
|
-
label: 设置
|
|
6185
|
-
validation:
|
|
6186
|
-
physicalNIC: 默认物理网卡
|
|
6187
|
-
placeholder:
|
|
6188
|
-
accessKeyId: 指定你的访问密钥 ID
|
|
6189
|
-
secretAccessKey: 指定你的密文访问密钥
|
|
6190
|
-
cert: 上传自签名 SSL 证书
|
|
6191
|
-
vlanChangeTip: 新修改的默认网络接口仅在新增节点生效,不在现有节点生效。
|
|
6192
|
-
defaultPhysicalNIC: 默认网络接口
|
|
6193
|
-
percentTip: 括号内的数值代表所有主机上的网络接口的分布比例。如果选择了一个小于100%的接口,用户需要手动指定 VLAN 网络配置失败的主机上的网络接口。
|
|
6194
|
-
message:
|
|
6195
|
-
ca:
|
|
6196
|
-
prefix: '点击'
|
|
6197
|
-
middle: '此处'
|
|
6198
|
-
suffix: '添加自定义证书。'
|
|
6199
|
-
sslCertificates:
|
|
6200
|
-
publicCertificate: 公共证书
|
|
6201
|
-
privateKey: 私钥
|
|
6202
|
-
ca: CA
|
|
6203
|
-
vmForceDeletionPolicy:
|
|
6204
|
-
period: 周期
|
|
6205
|
-
supportBundleImage:
|
|
6206
|
-
imagePullPolicy: 镜像拉取策略
|
|
6207
|
-
repo: 仓库
|
|
6208
|
-
tag: 标签
|
|
6209
|
-
|
|
6210
|
-
upgrade:
|
|
6211
|
-
selectExitImage: 请选择要升级的操作系统镜像。
|
|
6212
|
-
imageUrl: 请输入有效的图片网址。
|
|
6213
|
-
chooseFile: 请选择上传图片。
|
|
6214
|
-
checksum: 校验和
|
|
6215
|
-
harvesterMonitoring:
|
|
6216
|
-
label: Harvester Monitoring
|
|
6217
|
-
section:
|
|
6218
|
-
prometheus: Prometheus 配置
|
|
6219
|
-
prometheusNodeExporter: Prometheus Node Exporter 配置
|
|
6220
|
-
tips:
|
|
6221
|
-
scrape: 每次采集数据的间隔时间
|
|
6222
|
-
evaluation: 每次评估规则的间隔时间
|
|
6223
|
-
retention: 监控数据保留时间
|
|
6224
|
-
retentionSize: 监控数据最大占用存储
|
|
6225
|
-
cloudTemplate:
|
|
6226
|
-
label: Cloud Config 模板
|
|
6227
|
-
templateType: 模板类型
|
|
6228
|
-
userData: 用户数据
|
|
6229
|
-
networkData: 网络数据
|
|
6230
|
-
|
|
6231
|
-
manager:
|
|
6232
|
-
cluster:
|
|
6233
|
-
label: Harvester 集群
|
|
6234
|
-
none: 不存在 Harvester 集群
|
|
6235
|
-
learnMore: 访问 <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 网站</a> 或阅读 <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 官方文档</a>,以了解更多关于 Harvester 的信息。
|
|
6236
|
-
description: Harvester 是一个采用企业级开源技术,包括Kubernetes、Kubevirt和Longhorn,为裸金属服务器打造的现代超融合基础设施(HCI)解决方案。
|
|
6237
|
-
|
|
6238
|
-
support:
|
|
6239
|
-
title: Harvester 支持
|
|
6240
|
-
kubeconfig:
|
|
6241
|
-
title: 下载 KubeConfig
|
|
6242
|
-
titleDescription: 下载 Kubeconfig 用于调试。
|
|
6243
|
-
|
|
6244
|
-
namespace:
|
|
6245
|
-
label: 命名空间
|
|
6246
|
-
|
|
6247
|
-
projectNamespace:
|
|
6248
|
-
label: 项目/命名空间
|
|
6249
|
-
|
|
6250
|
-
service:
|
|
6251
|
-
title: 附加配置
|
|
6252
|
-
ipam:
|
|
6253
|
-
label: IPAM
|
|
6254
|
-
healthCheckPort:
|
|
6255
|
-
label: 健康检查端口
|
|
6256
|
-
healthCheckSuccessThreshold:
|
|
6257
|
-
label: 健康检查成功阙值
|
|
6258
|
-
description: 如果探针连续检测到某个地址的成功次数达到成功阈值,后端服务器就可以开始转发流量。
|
|
6259
|
-
healthCheckFailureThreshold:
|
|
6260
|
-
label: 健康检查失败阈值
|
|
6261
|
-
description: 如果健康检查失败的数量达到失败阈值,后端服务器将停止转发流量。
|
|
6262
|
-
healthCheckPeriod:
|
|
6263
|
-
label: 健康检查周期
|
|
6264
|
-
healthCheckTimeout:
|
|
6265
|
-
label: 健康检查超时
|
|
6266
|
-
healthCheckEnabled:
|
|
6267
|
-
label: 健康检查
|
|
6268
|
-
|
|
6269
|
-
vip:
|
|
6270
|
-
namespace:
|
|
6271
|
-
label: 命名空间
|
|
6272
|
-
cidr:
|
|
6273
|
-
label: CIDR
|
|
6274
|
-
invalid: '"CIRD" 无效。'
|
|
6275
|
-
add:
|
|
6276
|
-
label: 添加 IP 池
|
|
6277
5596
|
|
|
6278
|
-
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
5597
|
+
harvesterManager:
|
|
5598
|
+
manage: 管理
|
|
5599
|
+
cluster:
|
|
5600
|
+
label: Harvester 集群
|
|
5601
|
+
none: 不存在 Harvester 集群
|
|
5602
|
+
learnMore: 访问 <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 网站</a> 或阅读 <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 官方文档</a>,以了解更多关于 Harvester 的信息。
|
|
5603
|
+
description: Harvester 是一个采用企业级开源技术,包括Kubernetes、Kubevirt和Longhorn,为裸金属服务器打造的现代超融合基础设施(HCI)解决方案。
|
|
5604
|
+
plugins:
|
|
5605
|
+
loadError: 加载 Harvester 插件时出错
|
|
6283
5606
|
|
|
6284
5607
|
##############################
|
|
6285
5608
|
# Model Properties
|
|
@@ -6587,71 +5910,11 @@ typeLabel:
|
|
|
6587
5910
|
one { 工作负载 }
|
|
6588
5911
|
other { 工作负载 }
|
|
6589
5912
|
}
|
|
6590
|
-
kubevirt.io.virtualmachine: |-
|
|
6591
|
-
{count, plural,
|
|
6592
|
-
one { 虚拟机 }
|
|
6593
|
-
other { 虚拟机 }
|
|
6594
|
-
}
|
|
6595
|
-
harvesterhci.io.virtualmachineimage: |-
|
|
6596
|
-
{count, plural,
|
|
6597
|
-
one { 镜像 }
|
|
6598
|
-
other { 镜像 }
|
|
6599
|
-
}
|
|
6600
|
-
harvesterhci.io.keypair: |-
|
|
6601
|
-
{count, plural,
|
|
6602
|
-
one { SSH 密钥 }
|
|
6603
|
-
other { SSH 密钥 }
|
|
6604
|
-
}
|
|
6605
|
-
harvesterhci.io.host: |-
|
|
6606
|
-
{count, plural,
|
|
6607
|
-
one { 主机 }
|
|
6608
|
-
other { 主机 }
|
|
6609
|
-
}
|
|
6610
|
-
k8s.cni.cncf.io.networkattachmentdefinition: |-
|
|
6611
|
-
{count, plural,
|
|
6612
|
-
one { 网络附加定义 }
|
|
6613
|
-
other { 网络附加定义 }
|
|
6614
|
-
}
|
|
6615
|
-
harvesterhci.io.networkattachmentdefinition: |-
|
|
6616
|
-
{count, plural,
|
|
6617
|
-
one { 网络 }
|
|
6618
|
-
other { 网络 }
|
|
6619
|
-
}
|
|
6620
|
-
harvesterhci.io.volume: |-
|
|
6621
|
-
{count, plural,
|
|
6622
|
-
one { 卷 }
|
|
6623
|
-
other { 卷 }
|
|
6624
|
-
}
|
|
6625
|
-
harvesterhci.io.user: |-
|
|
6626
|
-
{count, plural,
|
|
6627
|
-
one { 用户 }
|
|
6628
|
-
other { 用户 }
|
|
6629
|
-
}
|
|
6630
|
-
harvesterhci.io.setting: |-
|
|
6631
|
-
{count, plural,
|
|
6632
|
-
one { 设置 }
|
|
6633
|
-
other { 设置 }
|
|
6634
|
-
}
|
|
6635
|
-
harvesterhci.io.virtualmachinetemplateversion: |-
|
|
6636
|
-
{count, plural,
|
|
6637
|
-
one { 模板 }
|
|
6638
|
-
other { 模板 }
|
|
6639
|
-
}
|
|
6640
|
-
harvesterhci.io.virtualmachinebackup: |-
|
|
6641
|
-
{count, plural,
|
|
6642
|
-
one { 备份 }
|
|
6643
|
-
other { 备份 }
|
|
6644
|
-
}
|
|
6645
5913
|
harvesterhci.io.management.cluster: |-
|
|
6646
5914
|
{count, plural,
|
|
6647
5915
|
one { Harvester 集群 }
|
|
6648
5916
|
other { Harvester 集群 }
|
|
6649
5917
|
}
|
|
6650
|
-
harvesterhci.io.cloudtemplate: |-
|
|
6651
|
-
{count, plural,
|
|
6652
|
-
one { Cloud Config 模板 }
|
|
6653
|
-
other { Cloud Config 模板 }
|
|
6654
|
-
}
|
|
6655
5918
|
fleet.cattle.io.bundle: |-
|
|
6656
5919
|
{count, plural,
|
|
6657
5920
|
one { Bundle }
|
|
@@ -6827,6 +6090,7 @@ advancedSettings:
|
|
|
6827
6090
|
invalidJSON: 无效的 JSON - 请先检查并修改你输入的值,然后再保存。
|
|
6828
6091
|
descriptions:
|
|
6829
6092
|
'cacerts': "验证服务器证书所需的 CA 证书。"
|
|
6093
|
+
'password-min-length': '定义用户密码所需的最少字符数。'
|
|
6830
6094
|
'cluster-defaults': '创建新集群时覆盖 RKE 默认值。'
|
|
6831
6095
|
'engine-install-url': '默认的 Docker 引擎安装 URL(用于大多数主机驱动)。'
|
|
6832
6096
|
'engine-iso-url': '默认操作系统安装 URL(用于 vSphere 驱动)。'
|
|
@@ -6839,7 +6103,6 @@ advancedSettings:
|
|
|
6839
6103
|
'ui-dashboard-index': '{appName} UI 的 HTML 索引位置。'
|
|
6840
6104
|
'ui-offline-preferred': '控制 UI 资产是由服务器容器在本地提供,还是从 ui-index 和 ui-dashboard-index 设置中定义的远程 URL 提供。`动态` 选项将在 {appName} 的生产版本中使用本地资产。'
|
|
6841
6105
|
'ui-pl': '自有品牌公司名称。'
|
|
6842
|
-
'ui-issues': "使用 URL 地址发送新的\"提交问题\"报告,而不是让用户发送到 GitHub Issue 页面。"
|
|
6843
6106
|
'telemetry-opt': '遥测报告加入。'
|
|
6844
6107
|
'auth-user-info-max-age-seconds': '在同步验证提供程序组成员之前,用户验证 Token 的最长存活时间。'
|
|
6845
6108
|
'auth-user-info-resync-cron': '重新同步验证提供程序组成员的默认 cron 调度。'
|
|
@@ -6855,27 +6118,6 @@ advancedSettings:
|
|
|
6855
6118
|
'ui-consent-banner': '横幅用于在登录期间,向用户展示自定义同意横幅。'
|
|
6856
6119
|
'ui-default-landing': '用户登录后的默认页面。'
|
|
6857
6120
|
'brand': 在'/assets/brand'中定义,用于替代主题的文件夹名称
|
|
6858
|
-
'harv-vlan': VLAN 网络的默认网络接口名称。
|
|
6859
|
-
'harv-backup-target': 用于存储虚拟机备份的自定义备份目标。
|
|
6860
|
-
'harv-log-level': 配置 Harvester server 日志级别。默认级别为 info。
|
|
6861
|
-
'harv-server-version': Harvester server 版本。
|
|
6862
|
-
'harv-upgrade-checker-enabled': 是否启用 Harvester 升级检查。默认值为 true。
|
|
6863
|
-
'harv-upgrade-checker-url': 默认 Harvester 升级检查 URL。只有当 <code>upgrade-checker-enabled</code> 设置为 true 时可使用。
|
|
6864
|
-
'harv-ui-source': 配置加载 UI 资源方式。
|
|
6865
|
-
'harv-ui-index': 'UI 的 HTML 索引位置。'
|
|
6866
|
-
'harv-cluster-registration-url': 用于多集群管理的注册 URL。
|
|
6867
|
-
'harv-http-proxy': '用于 Harvester 访问外部服务的 HTTP 代理。'
|
|
6868
|
-
'harv-additional-ca': '用于 TLS 验证的自定义 CA 根证书。'
|
|
6869
|
-
'harv-overcommit-config': '资源超额配置。'
|
|
6870
|
-
'harv-vip-pools': '使用 CIDR 配置 VIP 的全局或命名空间 IP 地址池。'
|
|
6871
|
-
'harv-support-bundle-timeout': 'Support Bundle 超时配置(单位:分钟),你可以使用 0 来禁用超时。'
|
|
6872
|
-
'harv-vm-force-reset-policy': 配置当虚拟机卡在停机的节点上时的强制重置动作。
|
|
6873
|
-
'harv-ssl-parameters': 用于 TLS 验证的自定义 SSL 参数。
|
|
6874
|
-
'harv-support-bundle-namespaces': 指定支持包要收集的其他命名空间中的资源。
|
|
6875
|
-
'harv-auto-disk-provision-paths': 指定 Harvester 将自动添加为虚拟机存储的磁盘(使用 glob 模式)。
|
|
6876
|
-
'harv-support-bundle-image': Support Bundle 镜像配置。前往 <a href="https://hub.docker.com/r/rancher/support-bundle-kit/tags" target="_blank">rancher/support-bundle-kit</a> 查看更多版本。
|
|
6877
|
-
'harv-release-download-url': 此设置用于配置<code>升级版本下载</code>的 URL 地址。Harvester 将从该 URL 托管的 (<code>$URL</code>/<code>$VERSION</code>/version.yaml) 文件中获取 ISO URL 和校验和值。
|
|
6878
|
-
'harvester-monitoring': 指定 Harvester 内置的 Prometheus 将使用的监控配置。
|
|
6879
6121
|
'hide-local-cluster': 隐藏 local 集群
|
|
6880
6122
|
editHelp:
|
|
6881
6123
|
'ui-banners': 此设置使用包含 3 个根参数的 JSON 对象,分别是<code>banner</code>、<code>showHeader</code>和<code>showFooter</code>。<code>banner</code> 是包含 <code>textColor</code>,<code>background</code>和<code>text</code>的对象,其中<code>textColor</code> 和 <code>background</code>的值可以是任何有效的 CSS 颜色值。
|
|
@@ -6927,24 +6169,27 @@ featureFlags:
|
|
|
6927
6169
|
performance:
|
|
6928
6170
|
label: UI 性能设置
|
|
6929
6171
|
settingName: 性能
|
|
6930
|
-
description: |-
|
|
6931
|
-
性能设置允许你在需要处理大量集群资源时配置 UI 的行为。设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6932
|
-
banner: 这些设置是实验性的,可能会在后续版本中删除或更新。
|
|
6933
6172
|
incrementalLoad:
|
|
6934
6173
|
label: 增量加载
|
|
6935
6174
|
setting: 你可以配置一个阈值,高于该阈值时则使用增量加载。
|
|
6936
6175
|
description: |-
|
|
6937
|
-
|
|
6176
|
+
启用后,资源会更快出现,但可能需要更长的时间来加载整个资源集。此设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6938
6177
|
checkboxLabel: 启用增量加载
|
|
6939
6178
|
inputLabel: 资源阈值
|
|
6940
6179
|
manualRefresh:
|
|
6180
|
+
banner: 此设置是实验性的,可能会在后续版本中删除或更新。
|
|
6941
6181
|
label: 手动刷新
|
|
6942
6182
|
setting: 你可以配置一个阈值,高于该阈值时则启用手动刷新。
|
|
6943
6183
|
buttonTooltip: 刷新列表
|
|
6944
6184
|
description: |-
|
|
6945
|
-
|
|
6185
|
+
启用后,列表数据不会自动更新,用户必须手动刷新列表视图。此设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6946
6186
|
checkboxLabel: 启用列表数据的手动刷新
|
|
6947
6187
|
inputLabel: 资源阈值
|
|
6188
|
+
websocketNotification:
|
|
6189
|
+
label: WebSocket 通知
|
|
6190
|
+
description: |-
|
|
6191
|
+
启用后,UI 检测到断开连接时不会出现 WebSocket 通知。
|
|
6192
|
+
checkboxLabel: 禁用 WebSocket 通知
|
|
6948
6193
|
|
|
6949
6194
|
banner:
|
|
6950
6195
|
label: 固定横幅
|
|
@@ -7001,11 +6246,6 @@ branding:
|
|
|
7001
6246
|
custom: 自定义主题
|
|
7002
6247
|
uiPL:
|
|
7003
6248
|
label: 自有品牌
|
|
7004
|
-
uiIssues:
|
|
7005
|
-
label: 支持链接
|
|
7006
|
-
issuesUrl: 问题报告 URL
|
|
7007
|
-
invalidUrl: 必须是包括协议头的完整 URL。
|
|
7008
|
-
communityLinks: 显示 Rancher 社区支持链接
|
|
7009
6249
|
color:
|
|
7010
6250
|
label: 主颜色
|
|
7011
6251
|
tip: 使用自定义颜色替换整个 UI 中使用的主颜色。
|
|
@@ -7110,7 +6350,7 @@ support:
|
|
|
7110
6350
|
text: 无论你使用的 Rancher Labs 产品、Kubernetes、Docker 还是底层基础架构出现问题,我们都会努力找到问题的根本原因。
|
|
7111
6351
|
four:
|
|
7112
6352
|
title: 自由创新
|
|
7113
|
-
text:
|
|
6353
|
+
text: 基于我们与众多 Kubernetes 供应商、操作系统和开源软件认证的兼容性,实现自主创新。
|
|
7114
6354
|
|
|
7115
6355
|
embedding:
|
|
7116
6356
|
retry: 重试
|
|
@@ -7131,16 +6371,12 @@ legacy:
|
|
|
7131
6371
|
alerts: 告警
|
|
7132
6372
|
apps: 应用
|
|
7133
6373
|
catalogs: 应用商店
|
|
7134
|
-
cis-scans: CIS 扫描
|
|
7135
6374
|
configMaps: ConfigMaps
|
|
7136
6375
|
configuration: 配置
|
|
7137
6376
|
globalDnsEntries: 全局 DNS 条目
|
|
7138
6377
|
globalDnsProviders: 全局 DNS 提供商
|
|
7139
|
-
istio: Istio
|
|
7140
|
-
logging: Logging
|
|
7141
6378
|
notifiers: Notifiers
|
|
7142
6379
|
monitoring: 监控
|
|
7143
|
-
pipelines: 流水线
|
|
7144
6380
|
psps: Pod 安全策略
|
|
7145
6381
|
secrets: 密文
|
|
7146
6382
|
|