@rancher/shell 0.1.1 → 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 +33 -769
- package/assets/translations/zh-hans.yaml +153 -781
- 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 +32 -12
- package/components/fleet/FleetRepos.vue +0 -2
- package/components/form/NameNsDescription.vue +4 -6
- package/components/form/NodeScheduling.vue +1 -1
- package/components/form/ResourceTabs/index.vue +27 -18
- package/components/form/WorkloadPorts.vue +1 -1
- package/components/formatter/ClusterLink.vue +13 -0
- package/components/formatter/PodImages.vue +11 -1
- package/components/formatter/RKETemplateName.vue +37 -0
- 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 +8 -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 +79 -36
- package/core/types.ts +7 -1
- package/creators/app/tsconfig.json +6 -1
- package/creators/pkg/init +3 -0
- package/creators/pkg/tsconfig.json +7 -2
- package/detail/provisioning.cattle.io.cluster.vue +23 -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/cloudcredential.vue +7 -1
- package/edit/management.cattle.io.project.vue +2 -2
- package/edit/namespace.vue +17 -10
- package/edit/networking.k8s.io.ingress/index.vue +2 -1
- package/edit/persistentvolumeclaim.vue +33 -2
- package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +34 -6
- package/edit/provisioning.cattle.io.cluster/index.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/rke2.vue +21 -6
- 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/list/provisioning.cattle.io.cluster.vue +6 -0
- package/machine-config/amazonec2.vue +2 -0
- package/machine-config/harvester.vue +96 -49
- package/middleware/authenticated.js +56 -52
- package/mixins/brand.js +3 -4
- package/mixins/create-edit-view/impl.js +0 -8
- package/mixins/form-validation.js +1 -1
- package/mixins/resource-fetch.js +3 -1
- package/models/chart.js +1 -1
- package/models/cluster/node.js +12 -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.globalrole.js +0 -19
- package/models/management.cattle.io.project.js +23 -2
- package/models/management.cattle.io.roletemplate.js +2 -21
- package/models/namespace.js +19 -3
- package/models/pod.js +19 -2
- package/models/provisioning.cattle.io.cluster.js +71 -0
- package/models/service.js +5 -1
- package/models/workload.js +4 -243
- package/models/workload.service.js +314 -0
- package/nuxt.config.js +14 -12
- 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/apps/charts/install.vue +0 -6
- 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/console.js +10 -5
- package/plugins/dashboard-store/actions.js +8 -3
- package/plugins/dashboard-store/getters.js +7 -2
- 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/steve-description-class.js +32 -0
- package/plugins/steve/subscribe.js +34 -23
- package/rancher-components/Banner/Banner.vue +2 -2
- package/rancher-components/Form/Checkbox/Checkbox.test.ts +77 -0
- package/rancher-components/Form/Checkbox/Checkbox.vue +12 -2
- package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +0 -2
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +2 -0
- package/rancher-components/Form/Radio/RadioButton.vue +14 -1
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.test.ts +107 -0
- package/{components/form → rancher-components/Form/ToggleSwitch}/ToggleSwitch.vue +18 -8
- package/rancher-components/Form/ToggleSwitch/index.ts +1 -0
- package/rancher-components/Form/index.ts +1 -0
- 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/scripts/test-plugins-build.sh +18 -1
- 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/types/{index.d.ts → rancher/index.d.ts} +0 -0
- 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/plugins/lookup.js +0 -50
- 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
- package/yarn-error.log +0 -196
|
@@ -187,7 +187,6 @@ product:
|
|
|
187
187
|
mcapps: Multi-cluster Apps
|
|
188
188
|
neuvector: NeuVector
|
|
189
189
|
harvesterManager: Virtualization Management
|
|
190
|
-
harvester: Harvester
|
|
191
190
|
rancher: Rancher
|
|
192
191
|
|
|
193
192
|
suffix:
|
|
@@ -1488,6 +1487,9 @@ cluster:
|
|
|
1488
1487
|
warning: 'This cluster contains a machineSelectorConfig which this form does not fully support; use the YAML editor to manage the full configuration.'
|
|
1489
1488
|
os: 'You are attemping to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
|
|
1490
1489
|
rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
|
|
1490
|
+
desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
|
|
1491
|
+
|
|
1492
|
+
rkeTemplateUpgrade: Template revision {name} available for upgrade
|
|
1491
1493
|
|
|
1492
1494
|
detail:
|
|
1493
1495
|
provisioner: Provisioner
|
|
@@ -1495,6 +1497,7 @@ cluster:
|
|
|
1495
1497
|
machineProvider: Machine Provider
|
|
1496
1498
|
machinePools: Machine Pools
|
|
1497
1499
|
machines: Machines
|
|
1500
|
+
rkeTemplate: RKE Template
|
|
1498
1501
|
|
|
1499
1502
|
machinePool:
|
|
1500
1503
|
name:
|
|
@@ -1542,7 +1545,7 @@ cluster:
|
|
|
1542
1545
|
autoReplace:
|
|
1543
1546
|
label: Auto Replace
|
|
1544
1547
|
toolTip: If greater than 0, nodes that are unreachable for this duration will be automatically deleted and replaced.
|
|
1545
|
-
unit: "
|
|
1548
|
+
unit: "Seconds"
|
|
1546
1549
|
managementTimeout: The cluster to become available. It's possible the cluster was created. We suggest checking the clusters page before trying to create another.
|
|
1547
1550
|
memberRoles:
|
|
1548
1551
|
removeMessage: 'Note: Removing a user will not remove their project permissions'
|
|
@@ -3620,6 +3623,9 @@ persistentVolumeClaim:
|
|
|
3620
3623
|
storageClass: Storage Class
|
|
3621
3624
|
requestStorage: Request Storage
|
|
3622
3625
|
persistentVolume: Persistent Volume
|
|
3626
|
+
tooltips:
|
|
3627
|
+
noStorageClass: You don't have permission to list Storage Classes, enter a name manually
|
|
3628
|
+
noPersistentVolume: You don't have permission to list Persistent Volumes, enter a name manually
|
|
3623
3629
|
customize:
|
|
3624
3630
|
label: Customize
|
|
3625
3631
|
accessModes:
|
|
@@ -3640,7 +3646,9 @@ prefs:
|
|
|
3640
3646
|
label: Login Landing Page
|
|
3641
3647
|
vue: Cluster Explorer
|
|
3642
3648
|
ember: Cluster Manager
|
|
3643
|
-
|
|
3649
|
+
displaySettings:
|
|
3650
|
+
title: Display Settings
|
|
3651
|
+
detail: Change the way information is displayed in the UI.
|
|
3644
3652
|
clusterToShow:
|
|
3645
3653
|
label: Number of clusters to show in side menu
|
|
3646
3654
|
value: |-
|
|
@@ -3850,6 +3858,7 @@ promptRemove:
|
|
|
3850
3858
|
confirmName: "Enter <b>{nameToMatch}</b> below to confirm:"
|
|
3851
3859
|
deleteAssociatedNamespaces: "Also delete the namespaces in this project:"
|
|
3852
3860
|
willDeleteAssociatedNamespaces: "This will also delete all namespaces in the project: "
|
|
3861
|
+
confirmRelatedResource: "Deleting the {type} will remove all the resources on this particular {type} and this is not revertable, are you sure you want to continue deleting {names}?"
|
|
3853
3862
|
|
|
3854
3863
|
promptRemoveApp:
|
|
3855
3864
|
removeCrd: "Delete the CRD associated with this app"
|
|
@@ -4371,6 +4380,9 @@ setup:
|
|
|
4371
4380
|
welcome: Welcome to {vendor}!
|
|
4372
4381
|
|
|
4373
4382
|
sortableTable:
|
|
4383
|
+
bulkActions:
|
|
4384
|
+
collapsed:
|
|
4385
|
+
label: Actions
|
|
4374
4386
|
actionAvailability:
|
|
4375
4387
|
selected: "{actionable} selected"
|
|
4376
4388
|
some: "Affects {actionable} of {total}"
|
|
@@ -5541,687 +5553,16 @@ workload:
|
|
|
5541
5553
|
deployment: Deployment
|
|
5542
5554
|
pod: Pod
|
|
5543
5555
|
containers: Containers
|
|
5544
|
-
harvester:
|
|
5545
|
-
modal:
|
|
5546
|
-
backup:
|
|
5547
|
-
success: 'Backup { backUpName } has been initiated.'
|
|
5548
|
-
addBackup: Add Backup
|
|
5549
|
-
restore:
|
|
5550
|
-
success: 'Restore { name } created successfully.'
|
|
5551
|
-
title: Backup and restore
|
|
5552
|
-
selectBackup: Select Backup
|
|
5553
|
-
message:
|
|
5554
|
-
backup: Please select the backup that needs to be restored.
|
|
5555
|
-
createTemplate:
|
|
5556
|
-
title: 'Generate Template'
|
|
5557
|
-
name: 'Name'
|
|
5558
|
-
description: 'Description'
|
|
5559
|
-
message:
|
|
5560
|
-
tip: Please enter a template name!
|
|
5561
|
-
success: 'Template { templateName } created successfully.'
|
|
5562
|
-
failed: 'Failed generated template!'
|
|
5563
|
-
exportImage:
|
|
5564
|
-
title: Export to Image
|
|
5565
|
-
name: Name
|
|
5566
|
-
namespace: Namespace
|
|
5567
|
-
message:
|
|
5568
|
-
success: 'Image { name } created successfully.'
|
|
5569
|
-
migration:
|
|
5570
|
-
failedMessage: Latest migration failed!
|
|
5571
|
-
title: Migration
|
|
5572
|
-
fields:
|
|
5573
|
-
nodeName:
|
|
5574
|
-
label: Target Node
|
|
5575
|
-
placeholder: Choose Target Node
|
|
5576
|
-
ejectCDROM:
|
|
5577
|
-
title: Eject CDROM
|
|
5578
|
-
warnTip: Eject volume will restart the virtual machine.
|
|
5579
|
-
operationTip: 'Select the volume you want to delete:'
|
|
5580
|
-
delete: Delete
|
|
5581
|
-
bundle:
|
|
5582
|
-
title: Generate Support Bundle
|
|
5583
|
-
url: Issue URL
|
|
5584
|
-
description: Description
|
|
5585
|
-
requiredDesc: Description is required!
|
|
5586
|
-
titleDescription: Collect system-related log in Harvester, to help with troubleshooting and support.
|
|
5587
|
-
hotplug:
|
|
5588
|
-
success: 'Volume { diskName } is mounted to the VM { vm }.'
|
|
5589
|
-
title: Add Volume
|
|
5590
|
-
hotunplug:
|
|
5591
|
-
success: 'Volume { name } is detach successfully.'
|
|
5592
|
-
notification:
|
|
5593
|
-
title:
|
|
5594
|
-
succeed: Succeed
|
|
5595
|
-
info: Info
|
|
5596
|
-
warning: Warning
|
|
5597
|
-
error: Error
|
|
5598
|
-
action:
|
|
5599
|
-
createVM: Create a Virtual Machine
|
|
5600
|
-
start: Start
|
|
5601
|
-
restart: Restart
|
|
5602
|
-
softreboot: Soft Reboot
|
|
5603
|
-
stop: Stop
|
|
5604
|
-
pause: Pause
|
|
5605
|
-
unpause: Unpause
|
|
5606
|
-
ejectCDROM: Eject CDROM
|
|
5607
|
-
launchFormTemplate: Launch instance from template
|
|
5608
|
-
modifyTemplate: Modify template (Create new version)
|
|
5609
|
-
setDefaultVersion: Set default version
|
|
5610
|
-
addTemplateVersion: Add templateVersion
|
|
5611
|
-
backup: Take Backup
|
|
5612
|
-
restore: Restore
|
|
5613
|
-
restoreNewVM: Restore New
|
|
5614
|
-
restoreExistingVM: Replace Existing
|
|
5615
|
-
migrate: Migrate
|
|
5616
|
-
abortMigration: Abort Migration
|
|
5617
|
-
createTemplate: Generate Template
|
|
5618
|
-
enableMaintenance: Enable Maintenance Mode
|
|
5619
|
-
disableMaintenance: Disable Maintenance Mode
|
|
5620
|
-
cordon: Cordon
|
|
5621
|
-
uncordon: Uncordon
|
|
5622
|
-
addHotplug: Add Volume
|
|
5623
|
-
exportImage: Export Image
|
|
5624
|
-
viewlogs: View Logs
|
|
5625
|
-
cancelExpand: Cancel Expand
|
|
5626
|
-
tableHeaders:
|
|
5627
|
-
size: Size
|
|
5628
|
-
progress: Progress
|
|
5629
|
-
message: Message
|
|
5630
|
-
phase: Phase
|
|
5631
|
-
attachedVM: Attached VM
|
|
5632
|
-
fingerprint: Fingerprint
|
|
5633
|
-
value: Value
|
|
5634
|
-
actions: Actions
|
|
5635
|
-
readyToUse: Ready To Use
|
|
5636
|
-
backupTarget: Backup Target
|
|
5637
|
-
targetVm: Target VM
|
|
5638
|
-
hostIp: Host IP
|
|
5639
|
-
vm:
|
|
5640
|
-
ipAddress: IP Address
|
|
5641
|
-
node: Node
|
|
5642
|
-
defaultVersion: Default Version
|
|
5643
|
-
network:
|
|
5644
|
-
type: Type
|
|
5645
|
-
vlan: Vlan ID
|
|
5646
|
-
tab:
|
|
5647
|
-
volume: Volumes
|
|
5648
|
-
network: Networks
|
|
5649
|
-
advanced: Advanced Options
|
|
5650
|
-
accessCredentials: Access Credentials
|
|
5651
|
-
fields:
|
|
5652
|
-
version: Version
|
|
5653
|
-
name: Name
|
|
5654
|
-
type: Type
|
|
5655
|
-
image: Image
|
|
5656
|
-
size: Size
|
|
5657
|
-
volume: Volume
|
|
5658
|
-
network: Network
|
|
5659
|
-
model: Model
|
|
5660
|
-
macAddress: Mac Address
|
|
5661
|
-
port: Port
|
|
5662
|
-
protocol: Protocol
|
|
5663
|
-
remove: REMOVE
|
|
5664
|
-
PhysicalNic: Physical NIC
|
|
5665
|
-
cpu: Cpu
|
|
5666
|
-
memory: Memory
|
|
5667
|
-
virtualName: Virtual machine name
|
|
5668
|
-
promiscuous: Promiscuous
|
|
5669
|
-
ipv4Address: IPv4 Address
|
|
5670
|
-
filterLabels: Filter Labels
|
|
5671
|
-
generic:
|
|
5672
|
-
close: Close
|
|
5673
|
-
open: Open
|
|
5674
|
-
showMore: Show More
|
|
5675
|
-
hideMore: Hide More
|
|
5676
|
-
memory: Memory
|
|
5677
|
-
cpu: CPU
|
|
5678
|
-
storage: Storage
|
|
5679
|
-
noFileChosen: No file chosen
|
|
5680
|
-
|
|
5681
|
-
validation:
|
|
5682
|
-
custom:
|
|
5683
|
-
tooLongName: '"Name" cannot be more than {max} characters.'
|
|
5684
|
-
vm:
|
|
5685
|
-
name: 'name is required'
|
|
5686
|
-
memory: '"Memory" is required!'
|
|
5687
|
-
network:
|
|
5688
|
-
error: 'network {prefix}: {message}'
|
|
5689
|
-
name: 'Network Name is required'
|
|
5690
|
-
macFormat: 'Invalid MAC address format.'
|
|
5691
|
-
duplicatedName: 'network with this name already exists!.'
|
|
5692
|
-
duplicatedPortName: 'Duplicate name of the port.'
|
|
5693
|
-
duplicatedPortNumber: 'Duplicate number of the port'
|
|
5694
|
-
volume:
|
|
5695
|
-
error: 'volume {prefix}: {message}'
|
|
5696
|
-
duplicatedName: 'volume with this name already exists!.'
|
|
5697
|
-
type: '"Type" is required!'
|
|
5698
|
-
size: '"Size" is required!'
|
|
5699
|
-
image: '"Image" is required!'
|
|
5700
|
-
volume: '"Volume" is required!'
|
|
5701
|
-
docker: '"Docker Image" is required!'
|
|
5702
|
-
needImageOrExisting: 'At least an image volume or an existing root-disk volume is required!'
|
|
5703
|
-
image:
|
|
5704
|
-
ruleTip: 'The URL you have entered ends in an extension that we do not support. We only accept image files that end in .img, .iso, .qcow, .qcow2, .raw.'
|
|
5705
|
-
ruleFileTip: 'The file you have chosen ends in an extension that we do not support. We only accept image files that end in .img, .iso, .qcow, .qcow2, .raw.'
|
|
5706
|
-
|
|
5707
|
-
dashboard:
|
|
5708
|
-
label: Dashboard
|
|
5709
|
-
header: "Harvester Cluster: {cluster}"
|
|
5710
|
-
hardwareResourceGauge:
|
|
5711
|
-
cpu: CPU
|
|
5712
|
-
memory: Memory
|
|
5713
|
-
storage: Storage
|
|
5714
|
-
sections:
|
|
5715
|
-
events:
|
|
5716
|
-
label: Events
|
|
5717
|
-
vmMetrics:
|
|
5718
|
-
label: VM Metrics
|
|
5719
|
-
|
|
5720
|
-
version: Version
|
|
5721
|
-
host:
|
|
5722
|
-
label: Hosts
|
|
5723
|
-
inconsistentIP: "Host IP is inconsistent, current IP: { currentIP }, initial IP: { initIP }"
|
|
5724
|
-
promote:
|
|
5725
|
-
none: ' '
|
|
5726
|
-
running: promoting
|
|
5727
|
-
failed: promote failed
|
|
5728
|
-
unknown: promote halted
|
|
5729
|
-
promoteRestart: restarting
|
|
5730
|
-
promoteSucceed: promote completed
|
|
5731
|
-
tabs:
|
|
5732
|
-
network: Network
|
|
5733
|
-
overview: Overview
|
|
5734
|
-
basics: Basics
|
|
5735
|
-
instance: Virtual Machines
|
|
5736
|
-
monitor: Monitor Data
|
|
5737
|
-
disk: Disks
|
|
5738
|
-
labels: Labels
|
|
5739
|
-
detail:
|
|
5740
|
-
title:
|
|
5741
|
-
network: Network Configuration
|
|
5742
|
-
hostIP: Host IP
|
|
5743
|
-
role: Role
|
|
5744
|
-
os: Operating System
|
|
5745
|
-
create: Creation Time
|
|
5746
|
-
update: Last Update Time
|
|
5747
|
-
customName: Custom Name
|
|
5748
|
-
consoleUrl: Console URL
|
|
5749
|
-
more: More Information
|
|
5750
|
-
uuid: UUID
|
|
5751
|
-
containerRuntime: Container Runtime
|
|
5752
|
-
kernel: Kernel
|
|
5753
|
-
management: Management Node
|
|
5754
|
-
compute: Compute Node
|
|
5755
|
-
storage: Storage
|
|
5756
|
-
nic: Physical NIC
|
|
5757
|
-
notRecommended: 'Not recommended'
|
|
5758
|
-
networkType: Type
|
|
5759
|
-
enableMaintenance:
|
|
5760
|
-
title: Enable Maintenance Mode
|
|
5761
|
-
protip: The operation will migrate all virtual machines on this node to other nodes.
|
|
5762
|
-
cordon:
|
|
5763
|
-
title: Cordon
|
|
5764
|
-
protip: This operation will mark the node { node } as unschedulable.
|
|
5765
|
-
disk:
|
|
5766
|
-
add: Add Disk
|
|
5767
|
-
path:
|
|
5768
|
-
label: Path
|
|
5769
|
-
storageReserved:
|
|
5770
|
-
label: Storage Reserved
|
|
5771
|
-
allowScheduling:
|
|
5772
|
-
label: Scheduling
|
|
5773
|
-
evictionRequested:
|
|
5774
|
-
label: Eviction Requested
|
|
5775
|
-
forceFormatted:
|
|
5776
|
-
label: Force Formatted
|
|
5777
|
-
toolTip: Force formatted will cleanup disk data, make sure you backup all available data to prevent data loss.
|
|
5778
|
-
yes: Yes (Ext4 File System)
|
|
5779
|
-
description:
|
|
5780
|
-
label: Description
|
|
5781
|
-
lastFormattedAt:
|
|
5782
|
-
info: The disk has already been force-formatted.
|
|
5783
|
-
notification:
|
|
5784
|
-
success: 'Update host "{name}" configurations successfully.'
|
|
5785
|
-
error: Host has unready or unschedulable disks.
|
|
5786
|
-
fileSystem:
|
|
5787
|
-
info: Current file system is {system}, You can format it manually.
|
|
5788
|
-
|
|
5789
|
-
virtualizationManagement:
|
|
5790
|
-
manage: Manage
|
|
5791
|
-
|
|
5792
|
-
virtualMachine:
|
|
5793
|
-
label: Virtual Machines
|
|
5794
|
-
osType: OS Type
|
|
5795
|
-
instance:
|
|
5796
|
-
singleInstance:
|
|
5797
|
-
multipleInstance:
|
|
5798
|
-
single:
|
|
5799
|
-
label: Single Instance
|
|
5800
|
-
nameLabel: Name
|
|
5801
|
-
host:
|
|
5802
|
-
label: Hostname
|
|
5803
|
-
placeholder: default to the virtual machine name.
|
|
5804
|
-
multiple:
|
|
5805
|
-
label: Multiple Instance
|
|
5806
|
-
nameNsDescription: Name prefix for each instance
|
|
5807
|
-
count: Count
|
|
5808
|
-
countTip: Count should be between 1 and 10
|
|
5809
|
-
nameLabel: Name Prefix
|
|
5810
|
-
host:
|
|
5811
|
-
label: Host Prefix Name
|
|
5812
|
-
placeholder: default to the virtual machine name.
|
|
5813
|
-
useTemplate:
|
|
5814
|
-
label: "Use VM Template:"
|
|
5815
|
-
template:
|
|
5816
|
-
label: template
|
|
5817
|
-
version:
|
|
5818
|
-
label: version
|
|
5819
|
-
console:
|
|
5820
|
-
novnc: Open in Web VNC
|
|
5821
|
-
serial: Open in Serial Console
|
|
5822
|
-
promptRemove:
|
|
5823
|
-
title: 'Select the volume you want to delete:'
|
|
5824
|
-
deleteAll: Delete All
|
|
5825
|
-
unplug:
|
|
5826
|
-
title: 'Are you sure that you want to detach volume {name} ?'
|
|
5827
|
-
actionLabel: Detach
|
|
5828
|
-
detachVolume:
|
|
5829
|
-
Detach Volume
|
|
5830
|
-
restartTip: |-
|
|
5831
|
-
{restart, select,
|
|
5832
|
-
true {Restart}
|
|
5833
|
-
other {Start}
|
|
5834
|
-
} the virtual machine now to take effect of the configuration changes.
|
|
5835
|
-
runStrategy: Run Strategy
|
|
5836
|
-
restartNow: |-
|
|
5837
|
-
{restart, select,
|
|
5838
|
-
true {Restart}
|
|
5839
|
-
other {Start}
|
|
5840
|
-
} Now
|
|
5841
|
-
createSSHKey: Create a New...
|
|
5842
|
-
installAgent: Install guest agent
|
|
5843
|
-
enableUsb: Enable USB Tablet
|
|
5844
|
-
usbTip: Provides an absolute pointer device which often helps with getting a consistent mouse cursor position in VNC.
|
|
5845
|
-
sshTitle: Add Public SSH Key
|
|
5846
|
-
imageTip: An external URL to the .iso, .img, .qcow2 or .raw that the virtual machine should be created from.
|
|
5847
|
-
efiEnabled: Booting in EFI mode
|
|
5848
|
-
secureBoot: Secure Boot
|
|
5849
|
-
volume:
|
|
5850
|
-
dragTip: Drag and drop volumes, or use the volume's arrows, to change the boot order.
|
|
5851
|
-
volumeTip: The VM only contains a cd-rom volume. You may want to add additional disk volumes.
|
|
5852
|
-
macTip: "MAC address as seen inside the guest system."
|
|
5853
|
-
volumeUpdate: 'Set volume { name } successfully'
|
|
5854
|
-
type: Type
|
|
5855
|
-
size: Size
|
|
5856
|
-
edit: Edit
|
|
5857
|
-
bus: Bus
|
|
5858
|
-
bootOrder: Boot Order
|
|
5859
|
-
volume: Volume
|
|
5860
|
-
dockerImage: Docker Image
|
|
5861
|
-
addVolume: Add Volume
|
|
5862
|
-
addExistingVolume: Add Existing Volume
|
|
5863
|
-
addVmImage: Add VM Image
|
|
5864
|
-
addContainer: Add Container
|
|
5865
|
-
setFirst: Set as root volume
|
|
5866
|
-
saveVolume: Update Volume
|
|
5867
|
-
title:
|
|
5868
|
-
vmImage: Image Volume
|
|
5869
|
-
existingVolume: Existing Volume
|
|
5870
|
-
volume: Volume
|
|
5871
|
-
container: Container
|
|
5872
|
-
unmount:
|
|
5873
|
-
title: Are you sure?
|
|
5874
|
-
message: Are you sure you want to unmount this volume?
|
|
5875
|
-
network:
|
|
5876
|
-
title: Network
|
|
5877
|
-
addNetwork: Add Network
|
|
5878
|
-
addPort: Add Port
|
|
5879
|
-
cloudConfig:
|
|
5880
|
-
title: Cloud Config
|
|
5881
|
-
createTemplateTitle: 'Create {name}.'
|
|
5882
|
-
createNew: Create new...
|
|
5883
|
-
cloudInit:
|
|
5884
|
-
label: Cloud Init
|
|
5885
|
-
placeholder: Select a template
|
|
5886
|
-
user:
|
|
5887
|
-
label: User Data Template
|
|
5888
|
-
title: "User Data:"
|
|
5889
|
-
tip: "You can specify user data to configure an instance or run a configuration script during launch. If you launch more than one instance at a time, the user data is available to all the instances in that reservation. <a href='https://cloudinit.readthedocs.io/en/latest/topics/examples.html' target='_blank'>Learn more</a>"
|
|
5890
|
-
network:
|
|
5891
|
-
label: Network Data Template
|
|
5892
|
-
title: "Network Data:"
|
|
5893
|
-
tip: "The network-data configuration allows you to customize the instance’s networking interfaces by assigning subnet configuration, virtual device creation (bonds, bridges, vlans) routes and DNS configuration. <a href='https://cloudinit.readthedocs.io/en/latest/topics/network-config-format-v1.html' target='_blank'>Learn more</a>"
|
|
5894
|
-
scheduling:
|
|
5895
|
-
affinity:
|
|
5896
|
-
anyNode: 'Run VM on any available node'
|
|
5897
|
-
schedulingRules: 'Run VM on node(s) matching scheduling rules'
|
|
5898
|
-
specificNode: Run VM on specific node - (Live migration is not supported)
|
|
5899
|
-
accessCredentials:
|
|
5900
|
-
resetPwd:
|
|
5901
|
-
label: Add Basic Auth
|
|
5902
|
-
injectSSH:
|
|
5903
|
-
label: Add SSHKey
|
|
5904
|
-
users: Select Users
|
|
5905
|
-
addUser: Add User
|
|
5906
|
-
tips: qemu-guest-agent must be installed to enable Access Credentials, the VM should be restarted after credentials added. Need to enter the VM to edit password or remove SSH-Key after deleting the credentials.
|
|
5907
|
-
userTips: The user to be added must already exist; otherwise, the credentials will not take effect.
|
|
5908
|
-
duplicatedUser: User already exist.
|
|
5909
|
-
invalidUser: Invalid Username.
|
|
5910
|
-
input:
|
|
5911
|
-
name: Name
|
|
5912
|
-
memory: Memory
|
|
5913
|
-
image: Image
|
|
5914
|
-
sshKey: SSHKey
|
|
5915
|
-
sshKeyValue: SSH-Key
|
|
5916
|
-
MachineType: Machine Type
|
|
5917
|
-
username: Username
|
|
5918
|
-
password: Password
|
|
5919
|
-
reservedMemory: Reserved Memory
|
|
5920
|
-
machineTypeTip: 'Specify a processor architecture to emulate. To see a list of supported architectures, run: qemu-system-x86_64 -cpu ?'
|
|
5921
|
-
detail:
|
|
5922
|
-
tabs:
|
|
5923
|
-
overview: Overview
|
|
5924
|
-
details: Details
|
|
5925
|
-
environment: Environment
|
|
5926
|
-
events: Events
|
|
5927
|
-
migration: Migration
|
|
5928
|
-
console: Console
|
|
5929
|
-
networkInterfaces: Network Interfaces
|
|
5930
|
-
disks: Disks
|
|
5931
|
-
networks: Networks
|
|
5932
|
-
basics: Basics
|
|
5933
|
-
configurations: Configurations
|
|
5934
|
-
inventory: Inventory
|
|
5935
|
-
hostBasic: Basic Attributes
|
|
5936
|
-
instance: Virtual Machines
|
|
5937
|
-
monitor: Monitor Data
|
|
5938
|
-
keypairs: SSH Keys
|
|
5939
|
-
cloudConfig: Cloud Config
|
|
5940
|
-
metrics: VM Metrics
|
|
5941
|
-
details:
|
|
5942
|
-
title:
|
|
5943
|
-
vmDetails: Virtual Machine Details
|
|
5944
|
-
requirements: Scheduling and resources requirements
|
|
5945
|
-
services: Services
|
|
5946
|
-
users: Logged in users
|
|
5947
|
-
name: Name
|
|
5948
|
-
namespace: Namespace
|
|
5949
|
-
created: Created
|
|
5950
|
-
hostname: Hostname
|
|
5951
|
-
node: Node
|
|
5952
|
-
ipAddress: IP Address
|
|
5953
|
-
status: Status
|
|
5954
|
-
pod: Pod
|
|
5955
|
-
labels: Labels
|
|
5956
|
-
bootOrder: Boot Order
|
|
5957
|
-
annotations: Annotations
|
|
5958
|
-
CDROMs: CD-ROMs
|
|
5959
|
-
description: Description
|
|
5960
|
-
operatingSystem: Operating System
|
|
5961
|
-
template: Template
|
|
5962
|
-
kernelRelease: Kernel Release
|
|
5963
|
-
owner: Owner
|
|
5964
|
-
workloadProfile: Workload Profile
|
|
5965
|
-
nodeSelector: Node Selector
|
|
5966
|
-
flavor: Flavor
|
|
5967
|
-
tolerations: Tolerations
|
|
5968
|
-
dedicatedResources: Dedicated Resources
|
|
5969
|
-
down: VM not running
|
|
5970
|
-
affinityRules: Affinity Rules
|
|
5971
|
-
sourceNode: Source Node
|
|
5972
|
-
targetNode: Target Node
|
|
5973
|
-
started: Started
|
|
5974
|
-
ended: Ended
|
|
5975
|
-
notAvailable: Not available
|
|
5976
|
-
GuestAgentNotInstalled: Guest agent required
|
|
5977
|
-
noOwner: No Owner
|
|
5978
|
-
events:
|
|
5979
|
-
from: Generated from
|
|
5980
|
-
down: No events in the past hour
|
|
5981
|
-
console:
|
|
5982
|
-
down: This Virtual Machine is down. Please start it to access its console.
|
|
5983
|
-
shortKeys: Shortcut Keys
|
|
5984
|
-
|
|
5985
|
-
volume:
|
|
5986
|
-
label: Volumes
|
|
5987
|
-
tabs:
|
|
5988
|
-
basics: Basics
|
|
5989
|
-
size: Size
|
|
5990
|
-
source: Source
|
|
5991
|
-
sourceOptions:
|
|
5992
|
-
new: New
|
|
5993
|
-
vmImage: VM Image
|
|
5994
|
-
image: Image
|
|
5995
|
-
|
|
5996
|
-
image:
|
|
5997
|
-
label: Images
|
|
5998
|
-
tabs:
|
|
5999
|
-
basics: Basics
|
|
6000
|
-
url: URL
|
|
6001
|
-
size: Size
|
|
6002
|
-
urlTip: 'supports the <code>raw</code> and <code>qcow2</code> image formats which are supported by <a href="https://www.qemu.org/docs/master/system/images.html#disk-image-file-formats" target="_blank">qemu</a>. Bootable ISO images can also be used and are treated like <code>raw</code> images.'
|
|
6003
|
-
fileName: File Name
|
|
6004
|
-
uploadFile: Upload File
|
|
6005
|
-
source: Source
|
|
6006
|
-
sourceType:
|
|
6007
|
-
download: URL
|
|
6008
|
-
upload: File
|
|
6009
|
-
warning:
|
|
6010
|
-
uploading: |-
|
|
6011
|
-
{count, plural,
|
|
6012
|
-
=1 {1 image is uploading, please do not refresh or close the page.}
|
|
6013
|
-
other {{count} images are uploading, please do not refresh or close the page.}
|
|
6014
|
-
}
|
|
6015
|
-
|
|
6016
|
-
vmTemplate:
|
|
6017
|
-
label: Templates
|
|
6018
|
-
tabs:
|
|
6019
|
-
basics: Basics
|
|
6020
|
-
nameNsDescription:
|
|
6021
|
-
name: Template Name
|
|
6022
|
-
tips:
|
|
6023
|
-
notExistImage:
|
|
6024
|
-
title: Image {name} does not exist!
|
|
6025
|
-
message: Please select a new Image.
|
|
6026
|
-
notExistNode:
|
|
6027
|
-
title: Node {name} does not exist!
|
|
6028
|
-
message: Please select a new Node.
|
|
6029
|
-
|
|
6030
|
-
upgradePage:
|
|
6031
|
-
upgradeApp: Upgrade Software
|
|
6032
|
-
upgrade: Upgrade
|
|
6033
|
-
upgradeTip: Please select the version you want to upgrade to
|
|
6034
|
-
currentVersion: CURRENT VERSION
|
|
6035
|
-
versionLabel: AVAILABLE COMPATIBLE VERSIONS
|
|
6036
|
-
upgradeNode: Upgrading Node
|
|
6037
|
-
upgradeSysService: Upgrading System Service
|
|
6038
|
-
upgradeImage: Download Upgrade Image
|
|
6039
|
-
osUpgrade: OS Upgrade
|
|
6040
|
-
uploadNew: Upload New Image
|
|
6041
|
-
selectExisting: Select Existing Image
|
|
6042
|
-
createRepository: Creating Upgrade Repository
|
|
6043
|
-
succeeded: Succeeded
|
|
6044
|
-
pending: Pending
|
|
6045
|
-
repoInfo:
|
|
6046
|
-
upgradeStatus: Upgrade Status
|
|
6047
|
-
os: OS
|
|
6048
|
-
kubernetes: Kubernetes
|
|
6049
|
-
monitoringChart: Monitoring Chart
|
|
6050
|
-
harvesterChart: Harvester Chart
|
|
6051
|
-
success: Success
|
|
6052
|
-
fail: Fail
|
|
6053
|
-
ongoing: on-going
|
|
6054
|
-
dismissMessage: Dismiss it
|
|
6055
|
-
upgradeInfo:
|
|
6056
|
-
warning: WARNING
|
|
6057
|
-
doc: Before you upgrade to the newer Harvester version, you must perform the required <a href="https://docs.harvesterhci.io/v1.0/upgrade/automatic/" target="_blank"> pre-upgrade checks </a>for your cluster. Complete only those tasks that apply to your environment.
|
|
6058
|
-
tip: Failure to perform these checks may result in a failed upgrade or hitting known issues that require a manual workaround fix.
|
|
6059
|
-
moreNotes: For more details about the release notes, please visit -
|
|
6060
|
-
|
|
6061
|
-
backup:
|
|
6062
|
-
label: Backups
|
|
6063
|
-
createText: Restore Backup
|
|
6064
|
-
title: Restore Virtual Machine
|
|
6065
|
-
backupTargetTip: The endpoint used to access the backupstore. NFS and S3 are supported.
|
|
6066
|
-
message:
|
|
6067
|
-
noSetting:
|
|
6068
|
-
prefix: You must configure the backup target in
|
|
6069
|
-
middle: 'setting'
|
|
6070
|
-
suffix: before creating a new backup.
|
|
6071
|
-
errorTip:
|
|
6072
|
-
prefix: Backup Target value in
|
|
6073
|
-
middle: Setting
|
|
6074
|
-
suffix: "is invalid, error: "
|
|
6075
|
-
viewSetting:
|
|
6076
|
-
prefix: Click
|
|
6077
|
-
middle: here
|
|
6078
|
-
suffix: to view the backup config.
|
|
6079
|
-
restore:
|
|
6080
|
-
backup: Backup
|
|
6081
|
-
deletePreviousVolumes: Delete Previous Volumes
|
|
6082
|
-
createNew: Create new
|
|
6083
|
-
replaceExisting: Replace existing
|
|
6084
|
-
virtualMachineName: Virtual Machine Name
|
|
6085
|
-
matchTarget: The current backup target does not match the existing one.
|
|
6086
|
-
|
|
6087
|
-
network:
|
|
6088
|
-
label: Networks
|
|
6089
|
-
tabs:
|
|
6090
|
-
basics: Basics
|
|
6091
|
-
layer3Network: Route
|
|
6092
|
-
message:
|
|
6093
|
-
vlanInactive: 'VLAN network is inactive at {name} host'
|
|
6094
|
-
premise:
|
|
6095
|
-
prefix: 'You must configure a network in'
|
|
6096
|
-
middle: 'Settings'
|
|
6097
|
-
suffix: 'before creating a new network.'
|
|
6098
|
-
viewSetting:
|
|
6099
|
-
prefix: Click
|
|
6100
|
-
middle: here
|
|
6101
|
-
suffix: to view default cluster network config.
|
|
6102
|
-
errorTip:
|
|
6103
|
-
prefix: Physical NIC value in
|
|
6104
|
-
middle: Setting
|
|
6105
|
-
suffix: "is invalid, error: "
|
|
6106
|
-
layer3Network:
|
|
6107
|
-
mode:
|
|
6108
|
-
label: Mode
|
|
6109
|
-
auto: Auto(DHCP)
|
|
6110
|
-
manual: Manual
|
|
6111
|
-
serverIPAddr:
|
|
6112
|
-
label: DHCP Server IP
|
|
6113
|
-
gateway:
|
|
6114
|
-
label: Gateway
|
|
6115
|
-
placeholder: e.g. 172.16.0.1
|
|
6116
|
-
cidr:
|
|
6117
|
-
label: CIDR
|
|
6118
|
-
placeholder: e.g. 172.16.0.1/24
|
|
6119
|
-
sshKey:
|
|
6120
|
-
label: SSH Keys
|
|
6121
|
-
keypair: SSH Key
|
|
6122
|
-
tabs:
|
|
6123
|
-
basics: Basics
|
|
6124
|
-
|
|
6125
|
-
setting:
|
|
6126
|
-
label: Settings
|
|
6127
|
-
validation:
|
|
6128
|
-
physicalNIC: DefaultPhysicalNIC
|
|
6129
|
-
placeholder:
|
|
6130
|
-
accessKeyId: specify your access key id
|
|
6131
|
-
secretAccessKey: specify your secret access key
|
|
6132
|
-
cert: upload a self-signed SSL certificate
|
|
6133
|
-
vlanChangeTip: The newly modified default network interface only applies to newly added nodes, not existing ones.
|
|
6134
|
-
defaultPhysicalNIC: Default Network Interface
|
|
6135
|
-
percentTip: The value in parentheses represents the distribution percentage of the network interface on all hosts. If an interface less than 100% is selected, the user needs to manually specify the network interface on the host where the vlan network configuration fails.
|
|
6136
|
-
message:
|
|
6137
|
-
ca:
|
|
6138
|
-
prefix: 'Click'
|
|
6139
|
-
middle: 'here'
|
|
6140
|
-
suffix: 'to add a custom certificate.'
|
|
6141
|
-
sslCertificates:
|
|
6142
|
-
publicCertificate: Public Certificate
|
|
6143
|
-
privateKey: Private Key
|
|
6144
|
-
ca: CA
|
|
6145
|
-
vmForceDeletionPolicy:
|
|
6146
|
-
period: Period
|
|
6147
|
-
supportBundleImage:
|
|
6148
|
-
imagePullPolicy: Pull Policy
|
|
6149
|
-
repo: Repository
|
|
6150
|
-
tag: Tag
|
|
6151
|
-
|
|
6152
|
-
upgrade:
|
|
6153
|
-
selectExitImage: Please select the OS image to upgrade.
|
|
6154
|
-
imageUrl: Please input a valid image url.
|
|
6155
|
-
chooseFile: Please select to upload an image.
|
|
6156
|
-
checksum: Checksum
|
|
6157
|
-
harvesterMonitoring:
|
|
6158
|
-
label: Harvester Monitoring
|
|
6159
|
-
section:
|
|
6160
|
-
prometheus: Prometheus Configuration
|
|
6161
|
-
prometheusNodeExporter: Prometheus Node Exporter Configuration
|
|
6162
|
-
tips:
|
|
6163
|
-
scrape: Interval between consecutive scrapes
|
|
6164
|
-
evaluation: Interval between consecutive evaluations
|
|
6165
|
-
retention: How long to retain metrics
|
|
6166
|
-
retentionSize: Maximum size of metrics
|
|
6167
|
-
cloudTemplate:
|
|
6168
|
-
label: Cloud Config Templates
|
|
6169
|
-
templateType: Template Type
|
|
6170
|
-
userData: User Data
|
|
6171
|
-
networkData: Network Data
|
|
6172
|
-
|
|
6173
|
-
manager:
|
|
6174
|
-
cluster:
|
|
6175
|
-
label: Harvester Clusters
|
|
6176
|
-
none: There are no Harvester Clusters
|
|
6177
|
-
learnMore: Learn more about Harvester from the <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Web Site</a> or read the the <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Docs</a>
|
|
6178
|
-
description: Harvester is a modern Hyperconverged infrastructure (HCI) solution built for bare metal servers using enterprise-grade open source technologies including Kubernetes, Kubevirt and Longhorn.
|
|
6179
|
-
|
|
6180
|
-
support:
|
|
6181
|
-
title: Harvester Support
|
|
6182
|
-
kubeconfig:
|
|
6183
|
-
title: Download KubeConfig
|
|
6184
|
-
titleDescription: Download kubeconfig for debugging.
|
|
6185
|
-
|
|
6186
|
-
namespace:
|
|
6187
|
-
label: Namespaces
|
|
6188
|
-
|
|
6189
|
-
projectNamespace:
|
|
6190
|
-
label: Projects/Namespaces
|
|
6191
|
-
|
|
6192
|
-
service:
|
|
6193
|
-
title: Add-on Config
|
|
6194
|
-
ipam:
|
|
6195
|
-
label: IPAM
|
|
6196
|
-
healthCheckPort:
|
|
6197
|
-
label: Health Check Port
|
|
6198
|
-
healthCheckSuccessThreshold:
|
|
6199
|
-
label: Health Check Success Threshold
|
|
6200
|
-
description: If the number of times the prober continuously detects an address successfully reaches the success threshold, then the backend server can start to forward traffic.
|
|
6201
|
-
healthCheckFailureThreshold:
|
|
6202
|
-
label: Health Check Failure Threshold
|
|
6203
|
-
description: The backend server will stop forwarding traffic if the number of health check failures reaches the failure threshold.
|
|
6204
|
-
healthCheckPeriod:
|
|
6205
|
-
label: Health Check Period
|
|
6206
|
-
healthCheckTimeout:
|
|
6207
|
-
label: Health Check Timeout
|
|
6208
|
-
healthCheckEnabled:
|
|
6209
|
-
label: Health Check
|
|
6210
|
-
|
|
6211
|
-
vip:
|
|
6212
|
-
namespace:
|
|
6213
|
-
label: Namespace
|
|
6214
|
-
cidr:
|
|
6215
|
-
label: CIDR
|
|
6216
|
-
invalid: '"CIRD" is invalid.'
|
|
6217
|
-
add:
|
|
6218
|
-
label: Add IP Pools
|
|
6219
5556
|
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
5557
|
+
harvesterManager:
|
|
5558
|
+
manage: Manage
|
|
5559
|
+
cluster:
|
|
5560
|
+
label: Harvester Clusters
|
|
5561
|
+
none: There are no Harvester Clusters
|
|
5562
|
+
learnMore: Learn more about Harvester from the <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Web Site</a> or read the the <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Docs</a>
|
|
5563
|
+
description: Harvester is a modern Hyperconverged infrastructure (HCI) solution built for bare metal servers using enterprise-grade open source technologies including Kubernetes, Kubevirt and Longhorn.
|
|
5564
|
+
plugins:
|
|
5565
|
+
loadError: Error loading harvester plugin
|
|
6225
5566
|
|
|
6226
5567
|
##############################
|
|
6227
5568
|
# Model Properties
|
|
@@ -6529,71 +5870,11 @@ typeLabel:
|
|
|
6529
5870
|
one { Workload }
|
|
6530
5871
|
other { Workloads }
|
|
6531
5872
|
}
|
|
6532
|
-
kubevirt.io.virtualmachine: |-
|
|
6533
|
-
{count, plural,
|
|
6534
|
-
one { Virtual Machine }
|
|
6535
|
-
other { Virtual Machines }
|
|
6536
|
-
}
|
|
6537
|
-
harvesterhci.io.virtualmachineimage: |-
|
|
6538
|
-
{count, plural,
|
|
6539
|
-
one { Image }
|
|
6540
|
-
other { Images }
|
|
6541
|
-
}
|
|
6542
|
-
harvesterhci.io.keypair: |-
|
|
6543
|
-
{count, plural,
|
|
6544
|
-
one { SSH Key }
|
|
6545
|
-
other { SSH Keys }
|
|
6546
|
-
}
|
|
6547
|
-
harvesterhci.io.host: |-
|
|
6548
|
-
{count, plural,
|
|
6549
|
-
one { Host }
|
|
6550
|
-
other { Hosts }
|
|
6551
|
-
}
|
|
6552
|
-
k8s.cni.cncf.io.networkattachmentdefinition: |-
|
|
6553
|
-
{count, plural,
|
|
6554
|
-
one { Network Attachment Definition }
|
|
6555
|
-
other { Network Attachment Definitions }
|
|
6556
|
-
}
|
|
6557
|
-
harvesterhci.io.networkattachmentdefinition: |-
|
|
6558
|
-
{count, plural,
|
|
6559
|
-
one { Network }
|
|
6560
|
-
other { Networks }
|
|
6561
|
-
}
|
|
6562
|
-
harvesterhci.io.volume: |-
|
|
6563
|
-
{count, plural,
|
|
6564
|
-
one { Volume }
|
|
6565
|
-
other { Volumes }
|
|
6566
|
-
}
|
|
6567
|
-
harvesterhci.io.user: |-
|
|
6568
|
-
{count, plural,
|
|
6569
|
-
one { User }
|
|
6570
|
-
other { Users }
|
|
6571
|
-
}
|
|
6572
|
-
harvesterhci.io.setting: |-
|
|
6573
|
-
{count, plural,
|
|
6574
|
-
one { Setting }
|
|
6575
|
-
other { Settings }
|
|
6576
|
-
}
|
|
6577
|
-
harvesterhci.io.virtualmachinetemplateversion: |-
|
|
6578
|
-
{count, plural,
|
|
6579
|
-
one { Template }
|
|
6580
|
-
other { Templates }
|
|
6581
|
-
}
|
|
6582
|
-
harvesterhci.io.virtualmachinebackup: |-
|
|
6583
|
-
{count, plural,
|
|
6584
|
-
one { Backup }
|
|
6585
|
-
other { Backups }
|
|
6586
|
-
}
|
|
6587
5873
|
harvesterhci.io.management.cluster: |-
|
|
6588
5874
|
{count, plural,
|
|
6589
5875
|
one { Harvester Cluster }
|
|
6590
5876
|
other { Harvester Clusters }
|
|
6591
5877
|
}
|
|
6592
|
-
harvesterhci.io.cloudtemplate: |-
|
|
6593
|
-
{count, plural,
|
|
6594
|
-
one { Cloud Config Template }
|
|
6595
|
-
other { Cloud Config Templates }
|
|
6596
|
-
}
|
|
6597
5878
|
fleet.cattle.io.bundle: |-
|
|
6598
5879
|
{count, plural,
|
|
6599
5880
|
one { Bundle }
|
|
@@ -6689,6 +5970,7 @@ advancedSettings:
|
|
|
6689
5970
|
invalidJSON: Invalid JSON - please check and correct your input before saving
|
|
6690
5971
|
descriptions:
|
|
6691
5972
|
'cacerts': "CA Certificates needed to verify the server's certificate."
|
|
5973
|
+
'password-min-length': 'Define minimum characters required for an user password.'
|
|
6692
5974
|
'cluster-defaults': 'Override RKE Defaults when creating new clusters.'
|
|
6693
5975
|
'engine-install-url': 'Default Docker engine installation URL (for most node drivers).'
|
|
6694
5976
|
'engine-iso-url': 'Default OS installation URL (for vSphere driver).'
|
|
@@ -6717,27 +5999,6 @@ advancedSettings:
|
|
|
6717
5999
|
'ui-consent-banner': 'Banner is used to display a custom consent banner presented to users during login.'
|
|
6718
6000
|
'ui-default-landing': 'The default page users land on after login.'
|
|
6719
6001
|
'brand': Folder name for an alternative theme defined in '/assets/brand'
|
|
6720
|
-
'harv-vlan': Default Network Interface name of the VLAN network.
|
|
6721
|
-
'harv-backup-target': Custom backup target to store VM backups.
|
|
6722
|
-
'harv-log-level': Configure Harvester server log level. Default to info.
|
|
6723
|
-
'harv-server-version': Harvester server version.
|
|
6724
|
-
'harv-upgrade-checker-enabled': Specify whether to enable Harvester upgrade check or not. Default is true.
|
|
6725
|
-
'harv-upgrade-checker-url': Default Harvester upgrade check url. Only used when the <code>upgrade-checker-enabled</code> is equal to true.
|
|
6726
|
-
'harv-ui-source': Config how to load the UI source.
|
|
6727
|
-
'harv-ui-index': 'HTML index location for the UI.'
|
|
6728
|
-
'harv-cluster-registration-url': Registration URL for mutil-cluster management.
|
|
6729
|
-
'harv-http-proxy': 'HTTP proxy for Harvester to access external services.'
|
|
6730
|
-
'harv-additional-ca': 'Custom CA root certificates for TLS validation.'
|
|
6731
|
-
'harv-overcommit-config': 'Resource overcommit configuration.'
|
|
6732
|
-
'harv-vip-pools': 'Config global or namespace IP address pools of the VIP by CIDR.'
|
|
6733
|
-
'harv-support-bundle-timeout': 'Support Bundle timeout config in minutes, use 0 to disable the timeout.'
|
|
6734
|
-
'harv-vm-force-reset-policy': Config the force-reset action when a VM is stuck on a node that is down.
|
|
6735
|
-
'harv-ssl-parameters': Custom SSL Parameters for TLS validation.
|
|
6736
|
-
'harv-support-bundle-namespaces': Specify resources in other namespaces to be collected by the support package.
|
|
6737
|
-
'harv-auto-disk-provision-paths': Specify the disks(using glob pattern) that Harvester will automatically add as VM storage.
|
|
6738
|
-
'harv-support-bundle-image': Support bundle image configuration. Find different versions in <a href="https://hub.docker.com/r/rancher/support-bundle-kit/tags" target="_blank">rancher/support-bundle-kit</a>.
|
|
6739
|
-
'harv-release-download-url': This setting allows you to configure the <code>upgrade release download</code> URL address. Harvester will get the ISO URL and checksum value from the (<code>$URL</code>/<code>$VERSION</code>/version.yaml) file hosted by the configured URL.
|
|
6740
|
-
'harvester-monitoring': Specifies the monitoring configuration that the Harvester's built-in Prometheus will use.
|
|
6741
6002
|
'hide-local-cluster': Hide the local cluster
|
|
6742
6003
|
editHelp:
|
|
6743
6004
|
'ui-banners': This setting takes a JSON object containing 3 root parameters; <code>banner</code>, <code>showHeader</code>, <code>showFooter</code>. <code>banner</code> is an object containing; <code>textColor</code>, <code>background</code>, and <code>text</code>, where <code>textColor</code> and <code>background</code> are any valid CSS color value.
|
|
@@ -6779,24 +6040,27 @@ featureFlags:
|
|
|
6779
6040
|
performance:
|
|
6780
6041
|
label: UI Performance Settings
|
|
6781
6042
|
settingName: Performance
|
|
6782
|
-
description: |-
|
|
6783
|
-
Performance settings allow the behavior of the UI to be configured when dealing with many resources in a cluster. These settings only apply to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
|
|
6784
|
-
banner: These settings are experimental and may be removed or updated in future versions
|
|
6785
6043
|
incrementalLoad:
|
|
6786
6044
|
label: Incremental Loading
|
|
6787
6045
|
setting: You can configure the threshold above which incremental loading will be used.
|
|
6788
6046
|
description: |-
|
|
6789
|
-
When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources.
|
|
6047
|
+
When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
|
|
6790
6048
|
checkboxLabel: Enable incremental loading
|
|
6791
6049
|
inputLabel: Resource Threshold
|
|
6792
6050
|
manualRefresh:
|
|
6051
|
+
banner: This setting is experimental and may be removed or updated in future versions.
|
|
6793
6052
|
label: Manual Refresh
|
|
6794
6053
|
setting: You can configure a threshold above which manual refresh will be enabled.
|
|
6795
6054
|
buttonTooltip: Refresh list
|
|
6796
6055
|
description: |-
|
|
6797
|
-
When enabled list data will not auto-update but instead the user must manually trigger a list-view refresh.
|
|
6056
|
+
When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to the following resources: Pods, Deployments, Cron Jobs, Daemon Sets, Jobs, Stateful Sets, Replica Sets, Replication Controllers, Workloads and Secrets.
|
|
6798
6057
|
checkboxLabel: Enable manual refresh of data for lists
|
|
6799
6058
|
inputLabel: Resource Threshold
|
|
6059
|
+
websocketNotification:
|
|
6060
|
+
label: Websocket Notifications
|
|
6061
|
+
description: |-
|
|
6062
|
+
When checked, websocket notifications will not appear when the UI detects a disconnection.
|
|
6063
|
+
checkboxLabel: Disable websocket notifications
|
|
6800
6064
|
|
|
6801
6065
|
banner:
|
|
6802
6066
|
label: Fixed Banners
|