@rancher/shell 0.1.2 → 0.1.3
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/translations/en-us.yaml +27 -769
- package/assets/translations/zh-hans.yaml +8 -769
- package/components/ActionMenu.vue +3 -3
- package/components/CodeMirror.vue +6 -8
- package/components/CommunityLinks.vue +1 -1
- package/components/ContainerResourceLimit.vue +14 -0
- package/components/ExplorerMembers.vue +123 -0
- package/components/ExplorerProjectsNamespaces.vue +405 -0
- package/components/GrafanaDashboard.vue +17 -2
- package/components/LocaleSelector.vue +81 -0
- package/components/PromptModal.vue +2 -3
- package/components/ResourceList/index.vue +1 -1
- package/components/ResourceTable.vue +3 -6
- package/components/SingleClusterInfo.vue +1 -1
- package/components/SortableTable/index.vue +23 -20
- package/components/SortableTable/selection.js +1 -0
- package/components/auth/AzureWarning.vue +5 -1
- package/components/auth/Principal.vue +1 -1
- package/components/auth/RoleDetailEdit.vue +18 -11
- package/components/fleet/FleetRepos.vue +0 -2
- package/components/form/NameNsDescription.vue +4 -6
- package/components/form/NodeScheduling.vue +1 -1
- package/components/form/WorkloadPorts.vue +1 -1
- package/components/formatter/WorkloadHealthScale.vue +1 -1
- package/components/nav/Header.vue +9 -9
- package/components/nav/NamespaceFilter.vue +7 -4
- package/components/nav/TopLevelMenu.vue +6 -43
- package/components/nav/WindowManager/ContainerLogs.vue +1 -1
- package/config/product/harvester-manager.js +64 -2
- package/config/product/manager.js +9 -0
- package/config/settings.js +17 -71
- package/config/table-headers.js +0 -1
- package/config/types.js +5 -25
- package/core/plugin-routes.ts +34 -22
- package/core/plugin.ts +15 -3
- package/core/plugins-loader.js +2 -0
- package/core/plugins.js +79 -36
- package/core/types.ts +7 -1
- package/detail/provisioning.cattle.io.cluster.vue +13 -0
- 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/{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 +0 -0
- 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 +20 -1
- package/edit/management.cattle.io.project.vue +2 -2
- package/edit/namespace.vue +17 -10
- package/edit/persistentvolumeclaim.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +33 -5
- package/edit/service.vue +1 -1
- package/edit/workload/index.vue +363 -15
- package/edit/workload/mixins/workload.js +62 -7
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -0
- package/layouts/default.vue +52 -27
- package/layouts/error.vue +5 -1
- package/layouts/home.vue +6 -2
- package/list/harvesterhci.io.management.cluster.vue +74 -33
- package/list/namespace.vue +3 -5
- package/machine-config/amazonec2.vue +2 -0
- package/machine-config/harvester.vue +96 -49
- package/middleware/authenticated.js +56 -52
- package/mixins/form-validation.js +1 -1
- package/mixins/resource-fetch.js +3 -1
- package/models/fleet.cattle.io.bundle.js +26 -19
- package/models/harvesterhci.io.management.cluster.js +194 -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 +4 -0
- package/models/workload.js +4 -243
- package/models/workload.service.js +314 -0
- package/nuxt.config.js +11 -9
- package/package.json +3 -3
- 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/settings/performance.vue +19 -16
- package/pages/fail-whale.vue +1 -10
- package/pages/index.vue +18 -4
- package/pages/plugins.vue +2 -2
- package/pages/prefs.vue +8 -6
- package/pkg/auto-import.js +44 -7
- 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 +10 -3
- package/plugins/steve/actions.js +1 -1
- package/plugins/steve/index.js +6 -4
- package/plugins/steve/subscribe.js +34 -23
- 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 +10 -11
- package/scripts/serve-pkgs +17 -10
- package/store/catalog.js +3 -1
- package/store/i18n.js +16 -11
- package/store/index.js +4 -181
- package/store/prefs.js +30 -2
- package/store/type-map.js +16 -29
- package/utils/cluster.js +1 -1
- package/utils/custom-validators.js +1 -12
- package/utils/dynamic-importer.js +1 -1
- package/utils/validators/setting.js +0 -35
- 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/pkg/model-loader.lib.js +0 -3
- package/promptRemove/kubevirt.io.virtualmachine.vue +0 -164
- 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
|
@@ -3871,6 +3871,7 @@ promptRemove:
|
|
|
3871
3871
|
confirmName: "在下方输入 <b>{nameToMatch}</b> 以确认:"
|
|
3872
3872
|
deleteAssociatedNamespaces: "同时删除此项目中的命名空间:"
|
|
3873
3873
|
willDeleteAssociatedNamespaces: "项目中的所有命名空间也都会被删除:"
|
|
3874
|
+
confirmRelatedResource: "删除 {type} 将删除这个特定 {type} 上的所有资源,这是不可恢复的,您确定要继续删除 {names} 吗?"
|
|
3874
3875
|
|
|
3875
3876
|
promptRemoveApp:
|
|
3876
3877
|
removeCrd: "删除与此应用关联的 CRD"
|
|
@@ -5591,695 +5592,14 @@ workload:
|
|
|
5591
5592
|
deployment: Deployment
|
|
5592
5593
|
pod: Pod
|
|
5593
5594
|
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
5595
|
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
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
|
-
|
|
6278
|
-
sslParameters:
|
|
6279
|
-
protocols:
|
|
6280
|
-
label: 协议
|
|
6281
|
-
ciphers:
|
|
6282
|
-
label: 密码
|
|
5596
|
+
harvesterManager:
|
|
5597
|
+
manage: 管理
|
|
5598
|
+
cluster:
|
|
5599
|
+
label: Harvester 集群
|
|
5600
|
+
none: 不存在 Harvester 集群
|
|
5601
|
+
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 的信息。
|
|
5602
|
+
description: Harvester 是一个采用企业级开源技术,包括Kubernetes、Kubevirt和Longhorn,为裸金属服务器打造的现代超融合基础设施(HCI)解决方案。
|
|
6283
5603
|
|
|
6284
5604
|
##############################
|
|
6285
5605
|
# Model Properties
|
|
@@ -6587,71 +5907,11 @@ typeLabel:
|
|
|
6587
5907
|
one { 工作负载 }
|
|
6588
5908
|
other { 工作负载 }
|
|
6589
5909
|
}
|
|
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
5910
|
harvesterhci.io.management.cluster: |-
|
|
6646
5911
|
{count, plural,
|
|
6647
5912
|
one { Harvester 集群 }
|
|
6648
5913
|
other { Harvester 集群 }
|
|
6649
5914
|
}
|
|
6650
|
-
harvesterhci.io.cloudtemplate: |-
|
|
6651
|
-
{count, plural,
|
|
6652
|
-
one { Cloud Config 模板 }
|
|
6653
|
-
other { Cloud Config 模板 }
|
|
6654
|
-
}
|
|
6655
5915
|
fleet.cattle.io.bundle: |-
|
|
6656
5916
|
{count, plural,
|
|
6657
5917
|
one { Bundle }
|
|
@@ -6855,27 +6115,6 @@ advancedSettings:
|
|
|
6855
6115
|
'ui-consent-banner': '横幅用于在登录期间,向用户展示自定义同意横幅。'
|
|
6856
6116
|
'ui-default-landing': '用户登录后的默认页面。'
|
|
6857
6117
|
'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
6118
|
'hide-local-cluster': 隐藏 local 集群
|
|
6880
6119
|
editHelp:
|
|
6881
6120
|
'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 颜色值。
|