@rancher/shell 0.2.5 → 0.3.1
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/styles/global/_button.scss +5 -1
- package/assets/styles/global/_columns.scss +4 -0
- package/assets/styles/global/_layout.scss +1 -2
- package/assets/styles/global/_select.scss +1 -4
- package/assets/styles/themes/_dark.scss +8 -4
- package/assets/styles/themes/_light.scss +9 -3
- package/assets/styles/themes/_suse.scss +1 -1
- package/assets/styles/vendor/vue-select.scss +4 -3
- package/assets/translations/en-us.yaml +682 -74
- package/assets/translations/zh-hans.yaml +554 -170
- package/chart/istio.vue +1 -1
- package/chart/monitoring/grafana/index.vue +1 -1
- package/chart/monitoring/index.vue +1 -1
- package/chart/monitoring/prometheus/index.vue +4 -4
- package/chart/monitoring/steps/uninstall-v1.vue +2 -2
- package/cloud-credential/azure.vue +23 -0
- package/cloud-credential/harvester.vue +25 -62
- package/cloud-credential/pnap.vue +80 -0
- package/components/AdvancedSection.vue +9 -2
- package/components/Alert.vue +2 -2
- package/components/AlertTable.vue +1 -1
- package/components/AssignTo.vue +1 -1
- package/components/AsyncButton.vue +2 -2
- package/components/BrandImage.vue +1 -1
- package/components/ButtonDropdown.vue +0 -2
- package/components/ButtonGroup.vue +2 -1
- package/components/ClusterProviderIcon.vue +2 -2
- package/components/Collapse.vue +6 -2
- package/components/CollapsibleCard.vue +2 -3
- package/components/ConsumptionGauge.vue +4 -4
- package/components/ContainerResourceLimit.vue +1 -1
- package/components/CountBox.vue +1 -1
- package/components/CountGauge.vue +1 -1
- package/components/CruResource.vue +43 -5
- package/components/DashboardMetrics.vue +2 -2
- package/components/DetailTop.vue +58 -3
- package/components/DisableAuthProviderModal.vue +106 -0
- package/components/DraggableZone.vue +181 -0
- package/components/ExplorerMembers.vue +253 -30
- package/components/ExplorerProjectsNamespaces.vue +82 -38
- package/components/FixedBanner.vue +6 -6
- package/components/GlobalRoleBindings.vue +6 -6
- package/components/GradientBox.vue +2 -2
- package/components/GrowlManager.vue +3 -3
- package/components/IconMessage.vue +4 -4
- package/components/IconOrSvg.vue +149 -0
- package/components/Import.vue +5 -5
- package/components/InputOrDisplay.vue +1 -1
- package/components/KeyValueView.vue +1 -1
- package/components/LabelValue.vue +1 -1
- package/components/LogItem.vue +69 -0
- package/components/ModalWithCard.vue +1 -1
- package/components/MoveModal.vue +1 -1
- package/components/PercentageBar.vue +2 -2
- package/components/PodSecurityAdmission.vue +302 -0
- package/components/PromptChangePassword.vue +1 -1
- package/components/PromptModal.vue +2 -1
- package/components/PromptRemove.vue +2 -2
- package/components/PromptRestore.vue +13 -13
- package/components/Questions/Question.js +1 -1
- package/components/ResourceCancelModal.vue +3 -3
- package/components/ResourceDetail/Masthead.vue +55 -3
- package/components/ResourceDetail/index.vue +12 -5
- package/components/ResourceList/Masthead.vue +12 -2
- package/components/ResourceList/ResourceLoadingIndicator.vue +12 -2
- package/components/ResourceList/index.vue +53 -12
- package/components/ResourceList/resource-list.config.js +7 -0
- package/components/ResourceSummary.vue +4 -4
- package/components/ResourceTable.vue +31 -6
- package/components/RoleBindings.vue +19 -19
- package/components/SimpleBox.vue +6 -2
- package/components/SingleClusterInfo.vue +5 -5
- package/components/SortableTable/THead.vue +20 -6
- package/components/SortableTable/actions.js +4 -2
- package/components/SortableTable/index.vue +30 -19
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/index.vue +20 -15
- package/components/TableSparkLine.vue +1 -1
- package/components/TypeDescription.vue +1 -1
- package/components/Wizard.vue +1 -1
- package/components/YamlEditor.vue +6 -6
- package/components/__tests__/ApplicationCard.test.ts +27 -0
- package/components/__tests__/AsyncButton.test.ts +140 -0
- package/components/__tests__/BackLink.test.ts +33 -0
- package/components/__tests__/ButtonGroup.test.ts +124 -0
- package/components/__tests__/ClusterBadge.test.ts +32 -0
- package/components/__tests__/Collapse.spec.ts +44 -0
- package/components/__tests__/CollapsibleCard.test.ts +64 -0
- package/components/__tests__/ConsumptionGauge.test.ts +88 -0
- package/components/__tests__/CruResource.test.ts +6 -5
- package/components/__tests__/FixedBanner.test.ts +129 -0
- package/components/__tests__/GrowlManager.test.ts +147 -0
- package/components/__tests__/NamespaceFilter.test.ts +221 -0
- package/components/__tests__/PercentageBar.test.ts +32 -0
- package/components/__tests__/PodSecurityAdmission.test.ts +398 -0
- package/components/__tests__/SimpleBox.spec.ts +28 -0
- package/components/auth/AuthBanner.vue +20 -10
- package/components/auth/RoleDetailEdit.vue +41 -30
- package/components/auth/SelectPrincipal.vue +45 -5
- package/components/auth/login/ldap.vue +3 -0
- package/components/cards/ApplicationCard.vue +10 -5
- package/components/fleet/FleetBundleResources.vue +8 -8
- package/components/fleet/FleetClusters.vue +10 -10
- package/components/fleet/FleetRepos.vue +5 -5
- package/components/fleet/FleetResources.vue +6 -6
- package/components/fleet/FleetSummary.vue +5 -5
- package/components/fleet/ResourcesSummary.vue +1 -1
- package/components/form/ArrayList.vue +3 -35
- package/components/form/ArrayListGrouped.vue +14 -5
- package/components/form/ArrayListSelect.vue +8 -8
- package/components/form/BannerSettings.vue +6 -6
- package/components/form/ChangePassword.vue +3 -3
- package/components/form/Error.vue +10 -2
- package/components/form/FileSelector.vue +3 -3
- package/components/form/Footer.vue +1 -1
- package/components/form/GithubPicker.vue +4 -4
- package/components/form/KeyValue.vue +41 -9
- package/components/form/LabeledSelect.vue +5 -2
- package/components/form/Labels.vue +46 -16
- package/components/form/MatchExpressions.vue +1 -1
- package/components/form/Members/ClusterPermissionsEditor.vue +28 -28
- package/components/form/Members/MembershipEditor.vue +14 -14
- package/components/form/NameNsDescription.vue +1 -1
- package/components/form/NodeAffinity.vue +1 -1
- package/components/form/NodeScheduling.vue +1 -1
- package/components/form/Password.vue +3 -3
- package/components/form/PodAffinity.vue +1 -1
- package/components/form/Probe.vue +3 -3
- package/components/form/ProjectMemberEditor.vue +1 -1
- package/components/form/ResourceQuota/Project.vue +6 -6
- package/components/form/ResourceQuota/shared.js +12 -12
- package/components/form/ResourceTabs/index.vue +1 -6
- package/components/form/SecretSelector.vue +1 -1
- package/components/form/Security.vue +8 -7
- package/components/form/Select.vue +7 -2
- package/components/form/SelectOrCreateAuthSecret.vue +22 -29
- package/components/form/ServicePorts.vue +8 -0
- package/components/form/SimpleSecretSelector.vue +1 -1
- package/components/form/Taints.vue +1 -1
- package/components/form/UnitInput.vue +7 -7
- package/components/form/ValueFromResource.vue +1 -1
- package/components/form/WorkloadPorts.vue +8 -2
- package/components/form/__tests__/ArrayList.test.ts +74 -0
- package/components/form/__tests__/ArrayListGrouped.test.ts +6 -4
- package/components/formatter/AppSummaryGraph.vue +4 -4
- package/components/formatter/BadgeStateFormatter.vue +2 -2
- package/components/formatter/Checked.vue +2 -2
- package/components/formatter/ClusterLink.vue +8 -3
- package/components/formatter/Date.vue +1 -1
- package/components/formatter/DelayedValue.vue +1 -1
- package/components/formatter/Endpoints.vue +1 -1
- package/components/formatter/FleetSummaryGraph.vue +4 -4
- package/components/formatter/IconIsDefault.vue +3 -3
- package/components/formatter/IconText.vue +4 -4
- package/components/formatter/ImagePercentageBar.vue +4 -4
- package/components/formatter/IngressFullPath.vue +1 -1
- package/components/formatter/InternalExternalIP.vue +11 -8
- package/components/formatter/LinkDetail.vue +3 -3
- package/components/formatter/List.vue +1 -1
- package/components/formatter/ListLink.vue +1 -1
- package/components/formatter/ListLinkDetail.vue +1 -1
- package/components/formatter/LiveDate.vue +3 -3
- package/components/formatter/LiveDuration.vue +78 -0
- package/components/formatter/LivePodRestarts.vue +1 -1
- package/components/formatter/Number.vue +1 -1
- package/components/formatter/Percentage.vue +2 -2
- package/components/formatter/PercentageBar.vue +3 -3
- package/components/formatter/PodImages.vue +1 -1
- package/components/formatter/Principal.vue +1 -1
- package/components/formatter/PrincipalGroupBindings.vue +2 -2
- package/components/formatter/QualityText.vue +1 -1
- package/components/formatter/ReceiverIcons.vue +2 -2
- package/components/formatter/Scale.vue +1 -1
- package/components/formatter/ScanResult.vue +1 -1
- package/components/formatter/SecretData.vue +1 -1
- package/components/formatter/ServiceType.vue +1 -1
- package/components/formatter/Shortened.vue +1 -1
- package/components/formatter/VerticalScroll.vue +2 -2
- package/components/formatter/VirtualServiceGateways.vue +3 -3
- package/components/formatter/Weight.vue +2 -2
- package/components/formatter/WorkloadDetailEndpoints.vue +1 -1
- package/components/formatter/WorkloadHealthScale.vue +7 -5
- package/components/formatter/__tests__/Date.test.ts +60 -0
- package/components/formatter/__tests__/LinkDetail.test.ts +72 -0
- package/components/formatter/__tests__/LiveDate.test.ts +84 -0
- package/components/formatter/__tests__/Si.test.ts +35 -0
- package/components/graph/LinePlot.vue +1 -1
- package/components/graph/ProgressArc.vue +5 -5
- package/components/nav/GlobalLoading.vue +1 -1
- package/components/nav/Header.vue +6 -4
- package/components/nav/Jump.vue +3 -3
- package/components/nav/NamespaceFilter.vue +200 -68
- package/components/nav/TopLevelMenu.vue +24 -21
- package/components/nav/Type.vue +1 -1
- package/components/nav/WindowManager/ChartReadme.vue +1 -1
- package/components/nav/WindowManager/ContainerLogs.vue +84 -127
- package/components/nav/WindowManager/ContainerShell.vue +28 -7
- package/components/nav/WindowManager/KubectlShell.vue +6 -6
- package/components/nav/WindowManager/MachineSsh.vue +1 -1
- package/components/nav/WindowManager/Window.vue +2 -0
- package/components/nav/WindowManager/index.vue +206 -25
- package/config/elemental-types.js +9 -0
- package/config/features.js +2 -0
- package/config/home-links.js +4 -1
- package/config/labels-annotations.js +19 -19
- package/config/pod-security-admission.ts +82 -0
- package/config/product/apps.js +5 -5
- package/config/product/auth.js +22 -21
- package/config/product/cis.js +24 -24
- package/config/product/explorer.js +25 -24
- package/config/product/fleet.js +7 -7
- package/config/product/gatekeeper.js +7 -7
- package/config/product/istio.js +7 -7
- package/config/product/legacy.js +21 -21
- package/config/product/logging.js +90 -90
- package/config/product/manager.js +19 -15
- package/config/product/monitoring.js +36 -36
- package/config/product/multi-cluster-apps.js +24 -24
- package/config/product/settings.js +42 -42
- package/config/secret.js +0 -1
- package/config/settings.ts +39 -22
- package/config/table-headers.js +70 -52
- package/config/types.js +11 -8
- package/config/uiplugins.js +4 -4
- package/content/docs/zh-hans/getting-started.md +113 -137
- package/content/docs/zh-hans/whats-new.md +8 -46
- package/creators/app/app.package.json +4 -1
- package/creators/app/{.eslintignore → files/.eslintignore} +0 -0
- package/creators/app/{.eslintrc.js → files/.eslintrc.js} +0 -0
- package/creators/app/{.vscode → files/.vscode}/settings.json +0 -0
- package/creators/app/{babel.config.js → files/babel.config.js} +0 -0
- package/creators/app/{nuxt.config.js → files/nuxt.config.js} +0 -0
- package/creators/app/{tsconfig.json → files/tsconfig.json} +2 -1
- package/creators/app/init +16 -17
- package/creators/app/package.json +7 -1
- package/creators/pkg/{babel.config.js → files/babel.config.js} +0 -0
- package/creators/pkg/{index.ts → files/index.ts} +0 -0
- package/creators/pkg/{tsconfig.json → files/tsconfig.json} +13 -12
- package/creators/pkg/{vue.config.js → files/vue.config.js} +0 -0
- package/creators/pkg/init +1 -1
- package/creators/pkg/package.json +2 -2
- package/creators/update/init +56 -0
- package/creators/update/package.json +20 -0
- package/creators/update/upgrade +56 -0
- package/detail/catalog.cattle.io.app.vue +1 -1
- package/detail/cis.cattle.io.clusterscan.vue +6 -6
- package/detail/configmap.vue +1 -1
- package/detail/constraints.gatekeeper.sh.constraint.vue +1 -1
- package/detail/fleet.cattle.io.bundle.vue +5 -5
- package/detail/fleet.cattle.io.gitrepo.vue +5 -5
- package/detail/helm.cattle.io.projecthelmchart.vue +1 -1
- package/detail/management.cattle.io.user.vue +3 -3
- package/detail/namespace.vue +13 -13
- package/detail/node.vue +2 -2
- package/detail/pod.vue +2 -2
- package/detail/provisioning.cattle.io.cluster.vue +47 -10
- package/detail/secret.vue +2 -2
- package/detail/service.vue +2 -9
- package/detail/workload/index.vue +1 -2
- package/dialog/AddClusterMemberDialog.vue +23 -29
- package/dialog/AddCustomBadgeDialog.vue +4 -4
- package/dialog/AddProjectMemberDialog.vue +81 -30
- package/dialog/AddonConfigConfirmationDialog.vue +1 -1
- package/dialog/DiagnosticTimingsDialog.vue +9 -8
- package/dialog/DrainNode.vue +56 -60
- package/dialog/ForceMachineRemoveDialog.vue +6 -8
- package/dialog/GenericPrompt.vue +16 -21
- package/dialog/RollbackWorkloadDialog.vue +22 -53
- package/dialog/RotateCertificatesDialog.vue +9 -11
- package/dialog/RotateEncryptionKeyDialog.vue +6 -10
- package/dialog/SaveAsRKETemplateDialog.vue +6 -14
- package/dialog/ScaleMachineDownDialog.vue +2 -2
- package/dialog/ScalePoolDownDialog.vue +121 -0
- package/edit/__tests__/management.cattle.io.setting.test.ts +4 -4
- package/edit/auth/azuread.vue +18 -18
- package/edit/auth/github.vue +10 -2
- package/edit/auth/googleoauth.vue +10 -1
- package/edit/auth/ldap/index.vue +14 -4
- package/edit/auth/oidc.vue +13 -3
- package/edit/auth/saml.vue +14 -4
- package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +2 -2
- package/edit/cis.cattle.io.clusterscan.vue +2 -2
- package/edit/cloudcredential.vue +3 -7
- package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -1
- package/edit/fleet.cattle.io.clustergroup.vue +3 -3
- package/edit/fleet.cattle.io.gitrepo.vue +9 -9
- package/edit/group.principal.vue +2 -2
- package/edit/helm.cattle.io.projecthelmchart.vue +3 -3
- package/edit/logging-flow/Match.vue +39 -8
- package/edit/logging-flow/index.vue +28 -5
- package/edit/logging.banzaicloud.io.output/providers/datadog.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/gcs.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/gelf.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/kafka.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/logz.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +213 -0
- package/edit/logging.banzaicloud.io.output/providers/redis.vue +142 -0
- package/edit/logging.banzaicloud.io.output/providers/s3.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +1 -1
- package/edit/logging.banzaicloud.io.output/providers/syslog.vue +1 -1
- package/edit/management.cattle.io.fleetworkspace.vue +1 -1
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +107 -0
- package/edit/management.cattle.io.project.vue +11 -4
- package/edit/management.cattle.io.projectroletemplatebinding.vue +5 -5
- package/edit/management.cattle.io.setting.vue +6 -3
- package/edit/management.cattle.io.user.vue +11 -5
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +33 -17
- package/edit/monitoring.coreos.com.alertmanagerconfig/tls.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +5 -5
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +3 -3
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +3 -3
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +4 -4
- package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +14 -6
- package/edit/monitoring.coreos.com.receiver/auth.vue +2 -2
- package/edit/monitoring.coreos.com.receiver/index.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.route.vue +1 -1
- package/edit/namespace.vue +18 -4
- package/edit/networking.istio.io.destinationrule/LoadBalancer.vue +1 -1
- package/edit/networking.k8s.io.ingress/Certificate.vue +1 -0
- package/edit/networking.k8s.io.ingress/Certificates.vue +3 -3
- package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
- package/edit/networking.k8s.io.ingress/IngressClass.vue +9 -7
- package/edit/networking.k8s.io.ingress/Rule.vue +1 -1
- package/edit/networking.k8s.io.ingress/RulePath.vue +17 -11
- package/edit/networking.k8s.io.ingress/Rules.vue +7 -7
- package/edit/networking.k8s.io.ingress/index.vue +8 -6
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +1 -1
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +3 -3
- package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +1 -1
- package/edit/networking.k8s.io.networkpolicy/index.vue +5 -5
- package/edit/persistentvolume/index.vue +30 -27
- package/edit/persistentvolume/plugins/awsElasticBlockStore.vue +1 -1
- package/edit/persistentvolume/plugins/azureDisk.vue +1 -1
- package/edit/persistentvolume/plugins/azureFile.vue +1 -1
- package/edit/persistentvolume/plugins/cephfs.vue +31 -31
- package/edit/persistentvolume/plugins/cinder.vue +1 -1
- package/edit/persistentvolume/plugins/csi.vue +104 -64
- package/edit/persistentvolume/plugins/fc.vue +21 -21
- package/edit/persistentvolume/plugins/flexVolume.vue +2 -2
- package/edit/persistentvolume/plugins/flocker.vue +1 -1
- package/edit/persistentvolume/plugins/gcePersistentDisk.vue +1 -1
- package/edit/persistentvolume/plugins/glusterfs.vue +1 -1
- package/edit/persistentvolume/plugins/hostPath.vue +1 -1
- package/edit/persistentvolume/plugins/iscsi.vue +47 -47
- package/edit/persistentvolume/plugins/local.vue +1 -1
- package/edit/persistentvolume/plugins/longhorn.vue +2 -2
- package/edit/persistentvolume/plugins/nfs.vue +1 -1
- package/edit/persistentvolume/plugins/photonPersistentDisk.vue +1 -1
- package/edit/persistentvolume/plugins/portworxVolume.vue +1 -1
- package/edit/persistentvolume/plugins/quobyte.vue +1 -1
- package/edit/persistentvolume/plugins/rbd.vue +41 -41
- package/edit/persistentvolume/plugins/scaleIO.vue +1 -1
- package/edit/persistentvolume/plugins/storageos.vue +1 -1
- package/edit/persistentvolume/plugins/vsphereVolume.vue +1 -1
- package/edit/persistentvolumeclaim.vue +78 -75
- package/edit/provisioning.cattle.io.cluster/DrainOptions.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +12 -8
- package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +10 -1
- package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +87 -27
- package/edit/provisioning.cattle.io.cluster/S3Config.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -6
- package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.tests.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +93 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +3 -3
- package/edit/provisioning.cattle.io.cluster/index.vue +31 -8
- package/edit/provisioning.cattle.io.cluster/rke2.vue +458 -164
- package/edit/resources.cattle.io.backup.vue +2 -2
- package/edit/secret/generic.vue +1 -0
- package/edit/secret/index.vue +3 -7
- package/edit/service.vue +3 -1
- package/edit/storage.k8s.io.storageclass/index.vue +101 -17
- package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +114 -0
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/no-provisioner.vue +1 -1
- package/edit/token.vue +1 -1
- package/edit/ui.cattle.io.navlink.vue +8 -8
- package/edit/workload/Job.vue +3 -3
- package/edit/workload/Upgrading.vue +1 -1
- package/edit/workload/VolumeClaimTemplate.vue +1 -1
- package/edit/workload/__tests__/index.test.ts +98 -0
- package/edit/workload/index.vue +61 -11
- package/edit/workload/mixins/workload.js +128 -91
- package/edit/workload/storage/ContainerMountPaths.vue +1 -11
- package/edit/workload/storage/Mount.vue +1 -1
- package/edit/workload/storage/azureDisk.vue +1 -1
- package/edit/workload/storage/azureFile.vue +1 -1
- package/edit/workload/storage/csi/index.vue +1 -1
- package/edit/workload/storage/emptyDir.vue +88 -0
- package/edit/workload/storage/ephemeralVolume/index.vue +2 -2
- package/edit/workload/storage/gcePersistentDisk.vue +1 -1
- package/edit/workload/storage/hostPath.vue +1 -1
- package/edit/workload/storage/index.vue +8 -0
- package/edit/workload/storage/nfs.vue +1 -1
- package/edit/workload/storage/persistentVolumeClaim/index.vue +2 -2
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -1
- package/edit/workload/storage/secret.vue +1 -1
- package/edit/workload/storage/vsphereVolume.vue +1 -1
- package/layouts/default.vue +132 -58
- package/list/__tests__/workload.test.ts +53 -0
- package/list/catalog.cattle.io.app.vue +1 -0
- package/list/cis.cattle.io.clusterscan.vue +1 -0
- package/list/fleet.cattle.io.bundle.vue +5 -6
- package/list/fleet.cattle.io.cluster.vue +6 -3
- package/list/fleet.cattle.io.clusterregistrationtoken.vue +5 -6
- package/list/fleet.cattle.io.gitrepo.vue +5 -10
- package/list/group.principal.vue +8 -8
- package/list/helm.cattle.io.projecthelmchart.vue +2 -6
- package/list/logging.banzaicloud.io.clusterflow.vue +4 -1
- package/list/logging.banzaicloud.io.flow.vue +6 -5
- package/list/management.cattle.io.cluster.vue +1 -0
- package/list/management.cattle.io.feature.vue +4 -5
- package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +47 -0
- package/list/management.cattle.io.setting.vue +2 -2
- package/list/management.cattle.io.user.vue +4 -10
- package/list/monitoring.coreos.com.alertmanagerconfig.vue +2 -7
- package/list/node.vue +9 -6
- package/list/persistentvolume.vue +3 -3
- package/list/persistentvolumeclaim.vue +3 -4
- package/list/provisioning.cattle.io.cluster.vue +21 -22
- package/list/service.vue +6 -14
- package/list/workload.vue +43 -38
- package/machine-config/amazonec2.vue +1 -1
- package/machine-config/azure.vue +429 -60
- package/machine-config/pnap.vue +288 -0
- package/mixins/__tests__/create-edit-view.test.ts +1 -1
- package/mixins/auth-config.js +1 -3
- package/mixins/browser-tab-visibility.js +8 -14
- package/mixins/chart.js +15 -15
- package/mixins/create-edit-view/impl.js +4 -0
- package/mixins/create-edit-view/index.js +9 -7
- package/mixins/form-validation.js +1 -1
- package/mixins/labeled-form-element.ts +6 -6
- package/mixins/resource-fetch-namespaced.js +98 -0
- package/mixins/resource-fetch.js +82 -48
- package/mixins/resource-manager.js +2 -24
- package/models/apps.controllerrevision.js +7 -0
- package/models/apps.daemonset.js +18 -0
- package/models/apps.deployment.js +44 -0
- package/models/apps.replicaset.js +7 -0
- package/models/apps.statefulset.js +18 -0
- package/models/autoscaling.horizontalpodautoscaler.js +5 -5
- package/models/batch.cronjob.js +15 -15
- package/models/batch.job.js +15 -0
- package/models/catalog.cattle.io.app.js +6 -6
- package/models/catalog.cattle.io.clusterrepo.js +7 -7
- package/models/catalog.cattle.io.operation.js +5 -5
- package/models/chart.js +4 -4
- package/models/cis.cattle.io.clusterscan.js +10 -10
- package/models/cluster/node.js +46 -38
- package/models/cluster.x-k8s.io.machine.js +39 -17
- package/models/cluster.x-k8s.io.machinedeployment.js +12 -2
- package/models/constraints.gatekeeper.sh.constraint.js +1 -1
- package/models/etcdbackup.js +4 -4
- package/models/event.js +7 -0
- package/models/fleet.cattle.io.cluster.js +15 -15
- package/models/fleet.cattle.io.clustergroup.js +1 -1
- package/models/fleet.cattle.io.gitrepo.js +15 -15
- package/models/group.principal.js +1 -1
- package/models/logging.banzaicloud.io.clusterflow.js +2 -2
- package/models/logging.banzaicloud.io.flow.js +6 -2
- package/models/logging.banzaicloud.io.output.js +15 -3
- package/models/management.cattle.io.authconfig.js +4 -4
- package/models/management.cattle.io.cluster.js +10 -10
- package/models/management.cattle.io.clusterroletemplatebinding.js +9 -9
- package/models/management.cattle.io.globalrole.js +26 -5
- package/models/management.cattle.io.node.js +46 -11
- package/models/management.cattle.io.nodepool.js +3 -3
- package/models/management.cattle.io.nodetemplate.js +21 -21
- package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +4 -0
- package/models/management.cattle.io.project.js +32 -13
- package/models/management.cattle.io.projectroletemplatebinding.js +6 -6
- package/models/management.cattle.io.roletemplate.js +54 -31
- package/models/management.cattle.io.setting.js +1 -1
- package/models/management.cattle.io.user.js +41 -5
- package/models/monitoring.coreos.com.alertmanagerconfig.js +4 -4
- package/models/monitoring.coreos.com.receiver.js +7 -7
- package/models/monitoring.coreos.com.route.js +2 -2
- package/models/namespace.js +55 -5
- package/models/persistentvolume.js +14 -2
- package/models/persistentvolumeclaim.js +4 -4
- package/models/pod.js +25 -10
- package/models/projectroletemplatebinding.js +7 -0
- package/models/provisioning.cattle.io.cluster.js +89 -38
- package/models/rbac.authorization.k8s.io.role.js +4 -4
- package/models/rke-machine.cattle.io.pnapmachinetemplate.js +15 -0
- package/models/rke.cattle.io.etcdsnapshot.js +4 -4
- package/models/service.js +29 -28
- package/models/storage.k8s.io.storageclass.js +41 -26
- package/models/workload.js +66 -35
- package/nuxt.config.js +59 -34
- package/package.json +7 -7
- package/pages/about.vue +15 -3
- package/pages/account/index.vue +1 -1
- package/pages/auth/login.vue +37 -7
- package/pages/auth/setup.vue +11 -11
- package/pages/c/_cluster/_product/_resource/_id.vue +2 -2
- package/pages/c/_cluster/apps/charts/chart.vue +4 -4
- package/pages/c/_cluster/apps/charts/index.vue +21 -20
- package/pages/c/_cluster/apps/charts/install.vue +73 -36
- package/pages/c/_cluster/auth/config/_id.vue +8 -2
- package/pages/c/_cluster/auth/config/index.vue +8 -6
- package/pages/c/_cluster/auth/group.principal/assign-edit.vue +1 -1
- package/pages/c/_cluster/auth/roles/_resource/_id.vue +2 -2
- package/pages/c/_cluster/auth/roles/index.vue +5 -7
- package/pages/c/_cluster/explorer/EventsTable.vue +8 -8
- package/pages/c/_cluster/explorer/index.vue +26 -20
- package/pages/c/_cluster/explorer/tools/index.vue +4 -4
- package/pages/c/_cluster/fleet/GitRepoGraphConfig.js +2 -2
- package/pages/c/_cluster/fleet/index.vue +10 -10
- package/pages/c/_cluster/gatekeeper/index.vue +1 -1
- package/pages/c/_cluster/legacy/index.vue +1 -1
- package/pages/c/_cluster/longhorn/index.vue +2 -2
- package/pages/c/_cluster/mcapps/index.vue +1 -1
- package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +15 -4
- package/pages/c/_cluster/monitoring/index.vue +1 -1
- package/pages/c/_cluster/navlinks/_group.vue +1 -1
- package/pages/c/_cluster/neuvector/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +30 -30
- package/pages/c/_cluster/settings/brand.vue +9 -9
- package/pages/c/_cluster/settings/links.vue +6 -6
- package/pages/c/_cluster/settings/performance.vue +48 -2
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +1 -1
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +1 -1
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +59 -9
- package/pages/c/_cluster/uiplugins/index.vue +30 -4
- package/pages/diagnostic.vue +5 -4
- package/pages/home.vue +105 -30
- package/pages/prefs.vue +23 -12
- package/pages/rio/mesh.vue +5 -5
- package/pages/support/index.vue +7 -7
- package/pkg/dynamic-importer.lib.js +8 -0
- package/pkg/vue.config.js +14 -1
- package/plugins/dashboard-store/__tests__/mutations.spec.js +406 -0
- package/plugins/dashboard-store/actions.js +32 -25
- package/plugins/dashboard-store/getters.js +50 -33
- package/plugins/dashboard-store/mutations.js +134 -28
- package/plugins/dashboard-store/normalize.js +1 -1
- package/plugins/dashboard-store/resource-class.js +121 -141
- package/plugins/steve/actions.js +30 -0
- package/plugins/steve/caches/resourceCache.js +60 -0
- package/plugins/steve/getters.js +44 -1
- package/plugins/steve/mutations.js +97 -36
- package/plugins/steve/resourceWatcher.js +277 -0
- package/plugins/steve/schema.utils.js +25 -0
- package/plugins/steve/subscribe.js +292 -119
- package/plugins/steve/worker/index.js +17 -0
- package/plugins/steve/worker/web-worker.advanced.js +302 -0
- package/plugins/steve/{web-worker.steve-sub-worker.js → worker/web-worker.basic.js} +6 -47
- package/promptRemove/management.cattle.io.project.vue +1 -1
- package/promptRemove/mixin/roleDeletionCheck.js +7 -7
- package/promptRemove/pod.vue +2 -2
- package/rancher-components/components/BadgeState/BadgeState.spec.ts +12 -0
- package/rancher-components/components/BadgeState/BadgeState.vue +111 -0
- package/rancher-components/components/BadgeState/index.ts +1 -0
- package/rancher-components/components/Banner/Banner.test.ts +57 -0
- package/rancher-components/components/Banner/Banner.vue +242 -0
- package/rancher-components/components/Banner/index.ts +1 -0
- package/rancher-components/components/Card/Card.test.ts +37 -0
- package/rancher-components/components/Card/Card.vue +166 -0
- package/rancher-components/components/Card/index.ts +1 -0
- package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +68 -0
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +418 -0
- package/rancher-components/components/Form/Checkbox/index.ts +1 -0
- package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +23 -0
- package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +355 -0
- package/rancher-components/components/Form/LabeledInput/index.ts +1 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +276 -0
- package/rancher-components/components/Form/Radio/RadioGroup.vue +253 -0
- package/rancher-components/components/Form/Radio/index.ts +2 -0
- package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +169 -0
- package/rancher-components/components/Form/TextArea/index.ts +1 -0
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +94 -0
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +149 -0
- package/rancher-components/components/Form/ToggleSwitch/index.ts +1 -0
- package/rancher-components/components/Form/index.ts +5 -0
- package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +151 -0
- package/rancher-components/components/LabeledTooltip/index.ts +1 -0
- package/rancher-components/components/StringList/StringList.test.ts +483 -0
- package/rancher-components/components/StringList/StringList.vue +611 -0
- package/rancher-components/components/StringList/index.ts +1 -0
- package/scripts/publish-shell.sh +38 -5
- package/scripts/record-deps.js +37 -0
- package/scripts/test-plugins-build.sh +19 -7
- package/scripts/typegen.sh +84 -0
- package/static/loading-indicator.html +1 -1
- package/store/action-menu.js +3 -3
- package/store/auth.js +4 -4
- package/store/aws.js +4 -4
- package/store/catalog.js +22 -22
- package/store/index.js +58 -7
- package/store/plugins.js +2 -19
- package/store/pnap.js +128 -0
- package/store/prefs.js +13 -3
- package/store/type-map.js +101 -44
- package/store/uiplugins.ts +2 -2
- package/store/wm.js +10 -0
- package/types/pod-security-admission.ts +36 -0
- package/types/shell/index.d.ts +3159 -0
- package/types/vue-shim.d +20 -0
- package/utils/__tests__/object.test.ts +17 -1
- package/utils/__tests__/pod-security-admission.test.ts +61 -0
- package/utils/alertmanagerconfig.js +6 -6
- package/utils/async.ts +36 -0
- package/utils/color.js +45 -0
- package/utils/crypto/browserHashUtils.js +18 -0
- package/utils/dynamic-importer.js +8 -0
- package/utils/gc/gc-types.ts +1 -1
- package/utils/install-redirect.js +1 -1
- package/utils/object.js +26 -2
- package/utils/parse-externalid.js +5 -5
- package/utils/pod-security-admission.ts +39 -0
- package/utils/socket.js +61 -24
- package/utils/string.js +2 -0
- package/utils/svg-filter.js +301 -0
- package/utils/time.js +55 -0
- package/utils/validators/cidr.js +4 -0
- package/utils/validators/formRules/__tests__/index.test.ts +26 -6
- package/utils/validators/formRules/index.ts +14 -0
- package/config/product/harvester-manager.js +0 -162
- package/creators/pkg/nuxt.config.js +0 -6
- package/edit/harvesterhci.io.management.cluster.vue +0 -153
- package/list/harvesterhci.io.management.cluster.vue +0 -241
- package/machine-config/harvester.vue +0 -693
- package/models/harvesterhci.io.management.cluster.js +0 -228
- package/pages/c/_cluster/harvesterManager/index.vue +0 -24
|
@@ -16,6 +16,7 @@ generic:
|
|
|
16
16
|
create: 创建
|
|
17
17
|
created: 创建时间
|
|
18
18
|
customize: 自定义
|
|
19
|
+
dashboard: 仪表板
|
|
19
20
|
default: 默认
|
|
20
21
|
disabled: 禁用
|
|
21
22
|
done: 完成
|
|
@@ -51,6 +52,7 @@ generic:
|
|
|
51
52
|
reload: 重新加载
|
|
52
53
|
register: 注册
|
|
53
54
|
remove: 移除
|
|
55
|
+
addCatalog: 添加应用商店
|
|
54
56
|
resource: |-
|
|
55
57
|
{count, plural,
|
|
56
58
|
one {资源}
|
|
@@ -58,8 +60,8 @@ generic:
|
|
|
58
60
|
}
|
|
59
61
|
resourceCount: |-
|
|
60
62
|
{count, plural,
|
|
61
|
-
one {1资源}
|
|
62
|
-
other {
|
|
63
|
+
one {1 资源}
|
|
64
|
+
other {# 资源}
|
|
63
65
|
}
|
|
64
66
|
save: 保存
|
|
65
67
|
showAdvanced: 展开高级选项
|
|
@@ -95,6 +97,15 @@ generic:
|
|
|
95
97
|
deprecated: 已弃用
|
|
96
98
|
placeholder: "例如:{text}"
|
|
97
99
|
moreInfo: 更多信息
|
|
100
|
+
selectors:
|
|
101
|
+
label: 选择器
|
|
102
|
+
matchingResources:
|
|
103
|
+
matchesSome: |-
|
|
104
|
+
{matched, plural,
|
|
105
|
+
=0 {匹配 {total, number} 个中的 0 个}
|
|
106
|
+
=1 {匹配 {total, number} 个中的 1 个:"{sample}"}
|
|
107
|
+
other {匹配 {total, number} 中的 {matched, number} 个,包括 "{sample}"}
|
|
108
|
+
}
|
|
98
109
|
|
|
99
110
|
locale:
|
|
100
111
|
en-us: English
|
|
@@ -125,6 +136,7 @@ nav:
|
|
|
125
136
|
group:
|
|
126
137
|
cluster: 集群
|
|
127
138
|
inUse: 更多资源
|
|
139
|
+
Policy: 策略
|
|
128
140
|
rbac: RBAC
|
|
129
141
|
serviceDiscovery: 服务发现
|
|
130
142
|
starred: 已收藏
|
|
@@ -137,8 +149,15 @@ nav:
|
|
|
137
149
|
apps: 应用
|
|
138
150
|
clusterProvisioning: 集群配置
|
|
139
151
|
core: 核心
|
|
152
|
+
legacy: 旧版
|
|
153
|
+
API: API
|
|
154
|
+
Coordination: 协调
|
|
140
155
|
Discovery: 发现
|
|
141
|
-
|
|
156
|
+
Fleet: Fleet
|
|
157
|
+
K3s: K3s
|
|
158
|
+
Networking: 网络
|
|
159
|
+
Rancher: Rancher
|
|
160
|
+
RBAC: RBAC
|
|
142
161
|
Scheduling: 调度
|
|
143
162
|
Storage: 存储
|
|
144
163
|
ns:
|
|
@@ -194,8 +213,10 @@ product:
|
|
|
194
213
|
neuvector: NeuVector
|
|
195
214
|
harvesterManager: 虚拟化管理
|
|
196
215
|
rancher: Rancher
|
|
216
|
+
legacy: 旧版
|
|
197
217
|
uiplugins: 扩展
|
|
198
218
|
elemental: OS 管理
|
|
219
|
+
plugins: 插件
|
|
199
220
|
|
|
200
221
|
suffix:
|
|
201
222
|
percent: "%"
|
|
@@ -236,6 +257,7 @@ about:
|
|
|
236
257
|
cli: CLI
|
|
237
258
|
helm: Helm
|
|
238
259
|
machine: Machine
|
|
260
|
+
rancher: Rancher
|
|
239
261
|
releaseNotes: '查看发行说明'
|
|
240
262
|
os:
|
|
241
263
|
mac: macOS
|
|
@@ -249,7 +271,7 @@ about:
|
|
|
249
271
|
title: 诊断
|
|
250
272
|
checkboxTooltip: 用前 10 个资源的响应时间补充诊断数据,可能需要一些的时间才能完成。
|
|
251
273
|
checkboxLabel: 发出其它请求
|
|
252
|
-
systemInformation:
|
|
274
|
+
systemInformation:
|
|
253
275
|
subtitle: 系统信息
|
|
254
276
|
browser: 浏览器
|
|
255
277
|
browserInfo: "用户浏览器:{userAgent};语言:{language};是否启用了 Cookies:{cookieEnabled}"
|
|
@@ -260,8 +282,8 @@ about:
|
|
|
260
282
|
os: "操作系统:{platform}"
|
|
261
283
|
memJsHeapLimit: "堆大小限制:{jsHeapSizeLimit}"
|
|
262
284
|
memTotalJsHeapSize: "总堆大小:{totalJSHeapSize}"
|
|
263
|
-
memUsedJsHeapSize: "已使用的堆大小:{usedJSHeapSize}"
|
|
264
|
-
logs:
|
|
285
|
+
memUsedJsHeapSize: "已使用的堆大小:{usedJSHeapSize}"
|
|
286
|
+
logs:
|
|
265
287
|
subtitle: 最新日志
|
|
266
288
|
resourceCounts: |-
|
|
267
289
|
{count, plural,
|
|
@@ -492,7 +514,7 @@ authConfig:
|
|
|
492
514
|
linkText: '在此处进行更新。'
|
|
493
515
|
modal:
|
|
494
516
|
title: 是否确认?此更新是不可逆的。
|
|
495
|
-
body: '<p><b>你可能需要进行额外的更改</b>。请确保 Azure AD
|
|
517
|
+
body: '<p><b>你可能需要进行额外的更改</b>。请确保 Azure AD 应用已将 Directory.Read.All <b>Application</b> 权限添加到 Microsoft Graph。<br> 如果在 Rancher 中配置 Azure AD 身份验证时自定义了端点,这些端点将不会自动更新。</p>'
|
|
496
518
|
oidc:
|
|
497
519
|
oidc: 配置 OIDC 账号
|
|
498
520
|
keycloakoidc: 配置 Keycloak OIDC 账号
|
|
@@ -773,7 +795,7 @@ catalog:
|
|
|
773
795
|
chart:
|
|
774
796
|
registry:
|
|
775
797
|
label: 容器镜像仓库
|
|
776
|
-
tooltip: 容器镜像是从 Cluster Container 中拉取的,如果拉取失败,则从系统容器镜像仓库中拉取。要更改默认行为,请在此处输入或更新镜像仓库。
|
|
798
|
+
tooltip: 容器镜像是从 Cluster Container Registry 中拉取的,如果拉取失败,则从系统容器镜像仓库中拉取。要更改默认行为,请在此处输入或更新镜像仓库。
|
|
777
799
|
custom:
|
|
778
800
|
checkBoxLabel: Rancher 系统容器镜像的容器镜像仓库
|
|
779
801
|
inputLabel: 容器镜像仓库
|
|
@@ -808,10 +830,11 @@ catalog:
|
|
|
808
830
|
other: 其他
|
|
809
831
|
partner: Partner
|
|
810
832
|
rancher: '{vendor}'
|
|
811
|
-
deploysOnWindows:
|
|
833
|
+
deploysOnWindows: 支持 Windows 部署
|
|
812
834
|
windowsIncompatible: 仅 Linux
|
|
813
835
|
versionWindowsIncompatible: 仅限 Linux 版本
|
|
814
836
|
header: Chart
|
|
837
|
+
featuredCharts: 精选 Chart
|
|
815
838
|
noCharts: '没有可用的 Chart,你有添加仓库吗?'
|
|
816
839
|
noWindows: 你的应用商店没有能够部署在具有 Windows 节点的集群的 Chart。
|
|
817
840
|
noWindowsAndLinux: 你的应用商店没有能部署在具有 Windows 和 Linux Worker 节点的集群的 Chart。
|
|
@@ -839,7 +862,7 @@ catalog:
|
|
|
839
862
|
navigate: 导航到旧版应用程序
|
|
840
863
|
mcmNotSupported: 无法通过此 UI 管理旧版多集群应用程序
|
|
841
864
|
category:
|
|
842
|
-
legacy:
|
|
865
|
+
legacy: 旧版
|
|
843
866
|
mcm: 多集群
|
|
844
867
|
header:
|
|
845
868
|
install: '安装 {name}'
|
|
@@ -879,7 +902,7 @@ catalog:
|
|
|
879
902
|
valuesYaml: 编辑 YAML
|
|
880
903
|
diff: 比较变化
|
|
881
904
|
slideIn:
|
|
882
|
-
dock:
|
|
905
|
+
dock: 停靠到 shell
|
|
883
906
|
steps:
|
|
884
907
|
basics:
|
|
885
908
|
label: 元数据
|
|
@@ -1047,6 +1070,7 @@ cis:
|
|
|
1047
1070
|
testID: 测试 ID
|
|
1048
1071
|
testsSkipped: 已跳过的测试
|
|
1049
1072
|
testsToSkip: 要跳过的测试
|
|
1073
|
+
workerProfile: CIS Worker 配置文件
|
|
1050
1074
|
|
|
1051
1075
|
cluster:
|
|
1052
1076
|
addonChart:
|
|
@@ -1226,11 +1250,11 @@ cluster:
|
|
|
1226
1250
|
label: 集群描述
|
|
1227
1251
|
placeholder: 输入可以描述该集群的文本
|
|
1228
1252
|
harvester:
|
|
1229
|
-
importNotice: 导入 Harvester
|
|
1253
|
+
importNotice: 导入 Harvester 集群的方式:
|
|
1230
1254
|
warning:
|
|
1231
1255
|
label: 这是一个 Harvester 集群 - 请启用 Harvester 功能开关以对其进行管理。
|
|
1232
1256
|
state: 警告
|
|
1233
|
-
cloudProvider:
|
|
1257
|
+
cloudProvider:
|
|
1234
1258
|
incompatible:
|
|
1235
1259
|
由于当前的 Harvester 版本与所选的 RKE2 Kubernetes 版本不兼容,因此你无法选择 Harvester cloud provider。请单击 <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.suse.com/suse-harvester/support-matrix/all-supported-versions">此处</a>查看支持的 Kubernetes 版本。
|
|
1236
1260
|
clusterWarning: |-
|
|
@@ -1267,8 +1291,8 @@ cluster:
|
|
|
1267
1291
|
clusterRoleBindingInstructions: '如果你在创建资源时遇到权限错误,你的用户可能没有绑定 <code>cluster-admin</code> 角色。你可以运行这个命令来申请角色:'
|
|
1268
1292
|
clusterRoleBindingCommand: 'kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user <your username from your kubeconfig>'
|
|
1269
1293
|
explore: 浏览
|
|
1270
|
-
exploreHarvester: 浏览
|
|
1271
1294
|
importAction: 导入已有集群
|
|
1295
|
+
manageAction: 管理
|
|
1272
1296
|
kubernetesVersion:
|
|
1273
1297
|
label: Kubernetes 版本
|
|
1274
1298
|
experimental: 实验功能
|
|
@@ -1296,8 +1320,14 @@ cluster:
|
|
|
1296
1320
|
other {{storageSize, number} {storageUnit} {storageType}}
|
|
1297
1321
|
}
|
|
1298
1322
|
azure:
|
|
1323
|
+
acceleratedNetworking:
|
|
1324
|
+
label: 加速网络
|
|
1299
1325
|
availabilitySet:
|
|
1300
1326
|
label: 可用性集(非托管)
|
|
1327
|
+
description: 可用性集用于让应用程序免受 Azure 数据中心内硬件故障的影响。
|
|
1328
|
+
availabilityZone:
|
|
1329
|
+
label: 可用区
|
|
1330
|
+
description: 可用区用于让应用程序免受 Azure 数据中心全面故障的影响。
|
|
1301
1331
|
dns:
|
|
1302
1332
|
help: 公共 IP 地址的唯一 DNS 标签。
|
|
1303
1333
|
label: DNS 标签
|
|
@@ -1337,10 +1367,18 @@ cluster:
|
|
|
1337
1367
|
label: 资源组
|
|
1338
1368
|
size:
|
|
1339
1369
|
label: 虚拟机大小
|
|
1370
|
+
tooltip: 启用加速网络后,并非所有大小都可用。
|
|
1371
|
+
supportsAcceleratedNetworking: 支持加速网络的大小
|
|
1372
|
+
doesNotSupportAcceleratedNetworking: 没有加速网络的大小
|
|
1373
|
+
availabilityWarning: VM 大小在所选区域中不可用。
|
|
1374
|
+
regionDoesNotSupportAzs: 所选区域不支持可用区。请选择其他区域或改用可用性集。
|
|
1375
|
+
regionSupportsAzsButNotThisSize: 所选区域的可用区不支持该 VM 大小。请选择不同的区域或 VM 大小。
|
|
1376
|
+
selectedSizeAcceleratedNetworkingWarning: 所选 VM 大小不支持加速网络。请选择其他 VM 大小或禁用加速网络。
|
|
1340
1377
|
sshUser:
|
|
1341
1378
|
label: SSH 用户名
|
|
1342
1379
|
storageType:
|
|
1343
1380
|
label: 储存类型
|
|
1381
|
+
warning: StandardSSD_LRS 需要托管磁盘。请使用托管磁盘或选择其他存储类型。
|
|
1344
1382
|
subnet:
|
|
1345
1383
|
label: 子网
|
|
1346
1384
|
subnetPrefix:
|
|
@@ -1353,6 +1391,8 @@ cluster:
|
|
|
1353
1391
|
vnet:
|
|
1354
1392
|
label: 虚拟网络
|
|
1355
1393
|
placeholder: '[resourcegroup:]name'
|
|
1394
|
+
tags:
|
|
1395
|
+
label: 标签
|
|
1356
1396
|
digitalocean:
|
|
1357
1397
|
sizeLabel: |-
|
|
1358
1398
|
{plan, select,
|
|
@@ -1533,6 +1573,10 @@ cluster:
|
|
|
1533
1573
|
|
|
1534
1574
|
rkeTemplateUpgrade: 模板修订版 {name} 可用于升级
|
|
1535
1575
|
|
|
1576
|
+
availabilityWarnings:
|
|
1577
|
+
node: 节点 {name} 处于非活动状态
|
|
1578
|
+
machine: 主机 {name} 处于非活动状态
|
|
1579
|
+
|
|
1536
1580
|
detail:
|
|
1537
1581
|
provisioner: 提供商
|
|
1538
1582
|
kubernetesVersion: Kubernetes 版本
|
|
@@ -1601,12 +1645,10 @@ cluster:
|
|
|
1601
1645
|
searchPlaceholder: 请输入搜索
|
|
1602
1646
|
noResults: 没有匹配的结果
|
|
1603
1647
|
privateRegistry:
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
private: 为 Rancher 系统容器镜像使用指定的私有镜像仓库
|
|
1609
|
-
advanced: 配置高级容器 Mirror 和仓库验证选项
|
|
1648
|
+
label: 为 Rancher 系统容器镜像启用集群级别的容器镜像仓库
|
|
1649
|
+
description: "如果启用,Rancher 将在集群配置期间从该镜像仓库中拉取容器镜像。默认情况下,Rancher 在安装 Rancher 的官方 Helm Chart 应用程序时也会使用此镜像仓库。如果集群级别的镜像仓库被禁用,将从全局设置中的系统默认镜像仓库中拉取系统镜像。"
|
|
1650
|
+
docsLinkRke2: "如需配置私有镜像仓库 mirror 的帮助,请参阅 RKE2 <a href=\"https://docs.rke2.io/install/containerd_registry_configuration/\" target=\"_blank\">文档</a>。"
|
|
1651
|
+
docsLinkK3s: "如需配置私有镜像仓库 mirror 的帮助,请参阅 K3s <a href=\"https://docs.k3s.io/installation/private-registry\" target=\"_blank\">文档</a>。"
|
|
1610
1652
|
provider:
|
|
1611
1653
|
aliyunecs: Aliyun ECS
|
|
1612
1654
|
aliyunkubernetescontainerservice: Alibaba ACK
|
|
@@ -1744,7 +1786,6 @@ cluster:
|
|
|
1744
1786
|
false: 仅在集群内可用
|
|
1745
1787
|
true: 暴露给公共接口
|
|
1746
1788
|
k3s:
|
|
1747
|
-
techPreview: K3s 配置处于技术预览中
|
|
1748
1789
|
systemService:
|
|
1749
1790
|
coredns: 'CoreDNS'
|
|
1750
1791
|
local-storage: '本地存储'
|
|
@@ -1804,6 +1845,11 @@ clusterIndexPage:
|
|
|
1804
1845
|
ram: 内存
|
|
1805
1846
|
used: 已使用
|
|
1806
1847
|
reserved: 已预留
|
|
1848
|
+
units:
|
|
1849
|
+
cores: |-
|
|
1850
|
+
{count, plural,
|
|
1851
|
+
=1 {核}
|
|
1852
|
+
other {核}}
|
|
1807
1853
|
header: 集群仪表板
|
|
1808
1854
|
resourceGauge:
|
|
1809
1855
|
totalResources: 资源总额
|
|
@@ -1982,14 +2028,14 @@ fleet:
|
|
|
1982
2028
|
placeholder: '例如:https://github.com/rancher/fleet-examples.git'
|
|
1983
2029
|
addRepo: 添加仓库
|
|
1984
2030
|
noRepos: 未添加任何仓库
|
|
1985
|
-
add:
|
|
1986
|
-
steps:
|
|
1987
|
-
repoInfo:
|
|
2031
|
+
add:
|
|
2032
|
+
steps:
|
|
2033
|
+
repoInfo:
|
|
1988
2034
|
label: 仓库详情
|
|
1989
2035
|
title: 指定要添加到 Fleet 的 Git 仓库
|
|
1990
2036
|
subtext: '定义仓库详情'
|
|
1991
2037
|
description: Fleet 将持续监控下方配置的 Git 仓库,并将仓库中包含的资源同步到配置的目标。
|
|
1992
|
-
targetInfo:
|
|
2038
|
+
targetInfo:
|
|
1993
2039
|
label: 目标详情
|
|
1994
2040
|
title: 指定要与仓库同步的目标
|
|
1995
2041
|
subtext: '定义目标详情'
|
|
@@ -2147,13 +2193,13 @@ graphOptions:
|
|
|
2147
2193
|
|
|
2148
2194
|
growl:
|
|
2149
2195
|
clearAll: 清除全部通知
|
|
2150
|
-
disconnectError:
|
|
2196
|
+
disconnectError:
|
|
2151
2197
|
message: "与 {url} 的连接在 {time} 意外断开,重连 {tries} 次后断开连接。请检查你的网络连接并重新加载页面。"
|
|
2152
2198
|
title: Websocket 断开连接
|
|
2153
|
-
connectError:
|
|
2199
|
+
connectError:
|
|
2154
2200
|
message: "与 {url} 的连接在 {time} 意外断开,重连次数为 #{tries}。"
|
|
2155
2201
|
title: Websocket 重新连接
|
|
2156
|
-
reconnected:
|
|
2202
|
+
reconnected:
|
|
2157
2203
|
message: "在尝试第 #{tries} 次时恢复了与 {url} 的连接。"
|
|
2158
2204
|
title: Websocket 已重新连接
|
|
2159
2205
|
|
|
@@ -2497,7 +2543,7 @@ landing:
|
|
|
2497
2543
|
cpuUsed: 已用 CPU
|
|
2498
2544
|
memoryUsed: 已用内存
|
|
2499
2545
|
seeWhatsNew: 点击右侧链接,了解此版本的新功能和优化。
|
|
2500
|
-
whatsNewLink: "2.
|
|
2546
|
+
whatsNewLink: "2.7 的新功能"
|
|
2501
2547
|
learnMore: 了解更多
|
|
2502
2548
|
support: 支持
|
|
2503
2549
|
psps: PSP
|
|
@@ -2527,13 +2573,39 @@ logging:
|
|
|
2527
2573
|
doesntExistTooltip: 该集群输出不存在
|
|
2528
2574
|
label: 集群输出
|
|
2529
2575
|
matches:
|
|
2576
|
+
banner: 配置要拉取哪些容器日志
|
|
2577
|
+
unsupportedConfig: 此资源包含表单编辑器不支持的匹配配置。请使用 YAML 进行编辑。
|
|
2530
2578
|
label: 匹配
|
|
2531
2579
|
addSelect: 添加包含规则
|
|
2532
2580
|
addExclude: 添加排除规则
|
|
2581
|
+
pods:
|
|
2582
|
+
title:
|
|
2583
|
+
include: 包括 Pod
|
|
2584
|
+
exclude: 排除 Pod
|
|
2585
|
+
keyLabel: Pod 标签键
|
|
2586
|
+
valueLabel: Pod 标签值
|
|
2587
|
+
addLabel: 添加 Pod
|
|
2588
|
+
nodes:
|
|
2589
|
+
title:
|
|
2590
|
+
include: 仅限特定节点
|
|
2591
|
+
exclude: 排除特定节点
|
|
2592
|
+
placeholder: "默认值:任何节点"
|
|
2593
|
+
containerNames:
|
|
2594
|
+
title:
|
|
2595
|
+
include: 仅限特定的容器名称
|
|
2596
|
+
exclude: 排除特定的容器名称
|
|
2597
|
+
placeholder: "默认值:任何容器"
|
|
2598
|
+
namespaces:
|
|
2599
|
+
title:
|
|
2600
|
+
include: 仅限特定的命名空间
|
|
2601
|
+
exclude: 排除特定的命名空间
|
|
2602
|
+
placeholder: "默认值:任何命名空间"
|
|
2603
|
+
|
|
2533
2604
|
filters:
|
|
2534
2605
|
label: 筛选
|
|
2535
2606
|
outputs:
|
|
2536
2607
|
doesntExistTooltip: 该集群输出不存在
|
|
2608
|
+
sameNamespaceError: 输出必须位于与流相同的命名空间中。
|
|
2537
2609
|
label: 输出
|
|
2538
2610
|
install:
|
|
2539
2611
|
k3sContainerEngine: K3S 容器引擎
|
|
@@ -2561,6 +2633,15 @@ logging:
|
|
|
2561
2633
|
clientKeyPass: 传自密文的客户端密钥
|
|
2562
2634
|
verifySsl: 验证 SSL
|
|
2563
2635
|
sslVersion: SSL 版本
|
|
2636
|
+
redis:
|
|
2637
|
+
host: 主机
|
|
2638
|
+
port: 端口
|
|
2639
|
+
dbNumber: Redis 数据库编号
|
|
2640
|
+
ttl: 每个键的 TTL
|
|
2641
|
+
password: 密码
|
|
2642
|
+
format:
|
|
2643
|
+
title: 格式
|
|
2644
|
+
type: 类型
|
|
2564
2645
|
gelf:
|
|
2565
2646
|
host: 主机
|
|
2566
2647
|
port: 端口
|
|
@@ -2691,6 +2772,8 @@ logging:
|
|
|
2691
2772
|
configuration: 配置
|
|
2692
2773
|
outputProviders:
|
|
2693
2774
|
elasticsearch: Elasticsearch
|
|
2775
|
+
opensearch: OpenSearch
|
|
2776
|
+
redis: Redis
|
|
2694
2777
|
splunkHec: Splunk
|
|
2695
2778
|
kafka: Kafka
|
|
2696
2779
|
forward: Fluentd
|
|
@@ -2788,6 +2871,7 @@ managementNode:
|
|
|
2788
2871
|
|
|
2789
2872
|
members:
|
|
2790
2873
|
clusterMembers: 集群成员
|
|
2874
|
+
clusterAndProject: 集群和项目成员
|
|
2791
2875
|
createActionLabel: 添加
|
|
2792
2876
|
clusterPermissions:
|
|
2793
2877
|
noDescription: 已创建用户 - 没有描述
|
|
@@ -2813,7 +2897,8 @@ members:
|
|
|
2813
2897
|
custom:
|
|
2814
2898
|
label: 自定义
|
|
2815
2899
|
description: 为该用户自定义角色。
|
|
2816
|
-
localClusterWarning: "注意:这是 Rancher
|
|
2900
|
+
localClusterWarning: "注意:这是 Rancher 用来存储数据的集群。只有管理员才应该对该集群有写权限。能够写入此集群的用户可以授权自己访问该安装的任何内容。"
|
|
2901
|
+
noRolesAssigned: 没有分配给该项目的用户。
|
|
2817
2902
|
|
|
2818
2903
|
membershipEditor:
|
|
2819
2904
|
label: 成员
|
|
@@ -2876,7 +2961,6 @@ monitoring:
|
|
|
2876
2961
|
existing: 使用现有 PVC 启用 Grafana
|
|
2877
2962
|
statefulset: 使用 StatefulSet 模板启用 Grafana
|
|
2878
2963
|
template: 使用 PVC 模板启用 Grafana
|
|
2879
|
-
volumeMode: 卷模式
|
|
2880
2964
|
volumeName: 卷名称
|
|
2881
2965
|
title: 配置 Grafana
|
|
2882
2966
|
hostNetwork:
|
|
@@ -2939,7 +3023,6 @@ monitoring:
|
|
|
2939
3023
|
selector: 选择器
|
|
2940
3024
|
selectorWarning: '如果你使用动态配置器(例如 Longhorn),不要指定选择器,因为带有非空选择器的 PVC 不能动态配置 PV。'
|
|
2941
3025
|
size: 大小
|
|
2942
|
-
volumeMode: 卷模式
|
|
2943
3026
|
volumeName: 卷名称
|
|
2944
3027
|
title: 配置 Prometheus
|
|
2945
3028
|
warningInstalled: |
|
|
@@ -3028,10 +3111,6 @@ monitoring:
|
|
|
3028
3111
|
prometheus: Prometheus
|
|
3029
3112
|
projectMetrics: 项目指标
|
|
3030
3113
|
v1Warning: '当前 Monitoring 由 Cluster Manager 部署。如果你需要从启用了 Monitoring 的旧版 {vendor} 迁移,请先在 Cluster Manager 中禁用 Monitoring,然后再在 Cluster Explorer 中安装新版 {vendor} Monitoring Chart。'
|
|
3031
|
-
volume:
|
|
3032
|
-
modes:
|
|
3033
|
-
block: 块
|
|
3034
|
-
file: 文件系统
|
|
3035
3114
|
|
|
3036
3115
|
monitoringReceiver:
|
|
3037
3116
|
addButton: 添加 {type}
|
|
@@ -3360,6 +3439,8 @@ persistentVolume:
|
|
|
3360
3439
|
label: 插件配置
|
|
3361
3440
|
plugin:
|
|
3362
3441
|
label: 卷插件
|
|
3442
|
+
inTree: 树内插件
|
|
3443
|
+
unsupported: (不支持)
|
|
3363
3444
|
capacity:
|
|
3364
3445
|
label: 容量
|
|
3365
3446
|
customize:
|
|
@@ -3407,6 +3488,7 @@ persistentVolume:
|
|
|
3407
3488
|
placeholder: 例如:sp1
|
|
3408
3489
|
csi:
|
|
3409
3490
|
label: CSI(不支持)
|
|
3491
|
+
suffix: (CSI)
|
|
3410
3492
|
driver:
|
|
3411
3493
|
label: 驱动
|
|
3412
3494
|
placeholder: 例如:driver.longhorn.io
|
|
@@ -3439,6 +3521,21 @@ persistentVolume:
|
|
|
3439
3521
|
controllerPublishSecretNamespace:
|
|
3440
3522
|
label: Controller 发布密文命名空间
|
|
3441
3523
|
placeholder: 例如:default
|
|
3524
|
+
drivers:
|
|
3525
|
+
disk-csi-azure-com: Azure 磁盘 (CSI)
|
|
3526
|
+
file-csi-azure-com: Azure 文件 (CSI)
|
|
3527
|
+
driver-longhorn-io: Longhorn (CSI)
|
|
3528
|
+
driver-harvesterhci-io: Harvester (CSI)
|
|
3529
|
+
nfs-csi-k8s-io: NFS (CSI)
|
|
3530
|
+
ebs-csi-aws-com: AWS Elastic Block Store (CSI)
|
|
3531
|
+
rbd-csi-ceph-com: Ceph RBD (CSI)
|
|
3532
|
+
org-gluster-glusterfs: GlusterFS (CSI)
|
|
3533
|
+
pd-csi-storage-gke-io: GCE 持久磁盘 (CSI)
|
|
3534
|
+
cinder-csi-openstack-org: Cinder (CSI)
|
|
3535
|
+
pxd-portworx-com: Portworx (CSI)
|
|
3536
|
+
quobyte-csi: Quobyte (CSI)
|
|
3537
|
+
storageos: StorageOS (CSI)
|
|
3538
|
+
csi-vsphere-vmware-com: vSphere (CSI)
|
|
3442
3539
|
cephfs:
|
|
3443
3540
|
label: Ceph 文件系统(不支持)
|
|
3444
3541
|
path:
|
|
@@ -3691,6 +3788,14 @@ persistentVolumeClaim:
|
|
|
3691
3788
|
status:
|
|
3692
3789
|
label: 状态
|
|
3693
3790
|
|
|
3791
|
+
podDisruptionBudget:
|
|
3792
|
+
budget:
|
|
3793
|
+
label: 预算
|
|
3794
|
+
minAvailable:
|
|
3795
|
+
label: 最小可用 Pod
|
|
3796
|
+
maxUnavailable:
|
|
3797
|
+
label: 最大不可用 Pod
|
|
3798
|
+
|
|
3694
3799
|
# Rancher Extensions
|
|
3695
3800
|
plugins:
|
|
3696
3801
|
labels:
|
|
@@ -3781,7 +3886,9 @@ plugins:
|
|
|
3781
3886
|
registry:
|
|
3782
3887
|
title: 删除 Rancher Rancher Extensions 仓库
|
|
3783
3888
|
prompt: Rancher Extensions 仓库提供了由 Rancher 发布的扩展。
|
|
3784
|
-
|
|
3889
|
+
crd:
|
|
3890
|
+
title: 删除 Rancher Extensions CRD
|
|
3891
|
+
prompt: 目前已安装了一个或多个扩展 - 如果你后续需要重新启用扩展支持,删除 CRD 后你需要手动重新安装这些扩展。
|
|
3785
3892
|
prefs:
|
|
3786
3893
|
title: 偏好设置
|
|
3787
3894
|
theme:
|
|
@@ -4005,6 +4112,7 @@ promptRemove:
|
|
|
4005
4112
|
other { 还有另外<b>{count}个</b>。}
|
|
4006
4113
|
}
|
|
4007
4114
|
attemptingToRemove: "你正在试图删除 {type}"
|
|
4115
|
+
attemptingToRemoveAuthConfig: "你正在尝试禁用此 Auth Provider。<br><br> 请注意,集群角色模板绑定、项目角色模板绑定、全局角色绑定、用户和 Token 都会被删除。<br><br> 你确定要继续吗?"
|
|
4008
4116
|
protip: "提示:按住 {alternateLabel} 键的同时单击删除,以绕过此确认。"
|
|
4009
4117
|
confirmName: "在下方输入 <b>{nameToMatch}</b> 以确认:"
|
|
4010
4118
|
deleteAssociatedNamespaces: "同时删除此项目中的命名空间:"
|
|
@@ -4264,6 +4372,8 @@ resourceList:
|
|
|
4264
4372
|
create: 创建
|
|
4265
4373
|
createFromYaml: 使用 YAML 文件创建
|
|
4266
4374
|
createResource: "创建 {resourceName}"
|
|
4375
|
+
nsFiltering: "{resource} 太多。<br>请通过选择上面的命名空间进行过滤。"
|
|
4376
|
+
nsFilterToolTip: "资源太多,过滤仅限于单一 {mode}。"
|
|
4267
4377
|
resourceLoadingIndicator:
|
|
4268
4378
|
loading: 正在加载
|
|
4269
4379
|
|
|
@@ -4686,7 +4796,7 @@ storageClass:
|
|
|
4686
4796
|
zonal: 可用区
|
|
4687
4797
|
regional: 区域
|
|
4688
4798
|
longhorn:
|
|
4689
|
-
title: Longhorn
|
|
4799
|
+
title: Longhorn (CSI)
|
|
4690
4800
|
addLabel: 添加参数
|
|
4691
4801
|
vsphere-volume:
|
|
4692
4802
|
title: VMWare vSphere 卷
|
|
@@ -4713,7 +4823,7 @@ storageClass:
|
|
|
4713
4823
|
custom:
|
|
4714
4824
|
addLabel: 添加参数
|
|
4715
4825
|
glusterfs:
|
|
4716
|
-
title: Gluster
|
|
4826
|
+
title: Gluster 卷
|
|
4717
4827
|
restUrl:
|
|
4718
4828
|
label: REST URL
|
|
4719
4829
|
placeholder: 例如:http://127.0.0.1:8081
|
|
@@ -4742,7 +4852,7 @@ storageClass:
|
|
|
4742
4852
|
label: 卷类型
|
|
4743
4853
|
placeholder: "例如:replicate:3"
|
|
4744
4854
|
cinder:
|
|
4745
|
-
title: Openstack Cinder
|
|
4855
|
+
title: Openstack Cinder 卷
|
|
4746
4856
|
volumeType:
|
|
4747
4857
|
label: 卷类型
|
|
4748
4858
|
placeholder: 例如:fast
|
|
@@ -4753,7 +4863,7 @@ storageClass:
|
|
|
4753
4863
|
label: "手动:自行指定可用区"
|
|
4754
4864
|
placeholder: 例如:nova
|
|
4755
4865
|
rbd:
|
|
4756
|
-
title: Ceph RBD
|
|
4866
|
+
title: Ceph RBD
|
|
4757
4867
|
monitors:
|
|
4758
4868
|
label: 监控
|
|
4759
4869
|
placeholder: 例如:10.16.153.105:6789
|
|
@@ -4788,7 +4898,7 @@ storageClass:
|
|
|
4788
4898
|
label: 镜像功能
|
|
4789
4899
|
placeholder: 例如:layering
|
|
4790
4900
|
quobyte:
|
|
4791
|
-
title: Quobyte
|
|
4901
|
+
title: Quobyte 卷
|
|
4792
4902
|
quobyteApiServer:
|
|
4793
4903
|
label: Quobyte API server
|
|
4794
4904
|
placeholder: "例如:http://138.68.74.142:7860"
|
|
@@ -4814,7 +4924,7 @@ storageClass:
|
|
|
4814
4924
|
label: Quobyte 租户
|
|
4815
4925
|
placeholder: 例如:DEFAULT
|
|
4816
4926
|
portworx-volume:
|
|
4817
|
-
title: Portworx
|
|
4927
|
+
title: Portworx 卷
|
|
4818
4928
|
filesystem:
|
|
4819
4929
|
label: 文件系统
|
|
4820
4930
|
placeholder: 例如:ext4
|
|
@@ -4837,7 +4947,7 @@ storageClass:
|
|
|
4837
4947
|
label: 是否临时
|
|
4838
4948
|
placeholder: 例如:true
|
|
4839
4949
|
scaleio:
|
|
4840
|
-
title: ScaleIO
|
|
4950
|
+
title: ScaleIO 卷
|
|
4841
4951
|
gateway:
|
|
4842
4952
|
label: 网关
|
|
4843
4953
|
placeholder: 例如:https://192.168.99.200:443/api
|
|
@@ -4863,7 +4973,7 @@ storageClass:
|
|
|
4863
4973
|
label: 文件系统类型
|
|
4864
4974
|
placeholder: 例如:xfs
|
|
4865
4975
|
storageos:
|
|
4866
|
-
title: StorageOS
|
|
4976
|
+
title: StorageOS
|
|
4867
4977
|
pool:
|
|
4868
4978
|
label: 池
|
|
4869
4979
|
placeholder: 例如:default
|
|
@@ -4880,49 +4990,86 @@ storageClass:
|
|
|
4880
4990
|
label: Admin 密文名称
|
|
4881
4991
|
placeholder: 例如:storageos-secret
|
|
4882
4992
|
no-provisioner:
|
|
4883
|
-
title:
|
|
4993
|
+
title: 本地存储
|
|
4994
|
+
deprecated:
|
|
4995
|
+
title: (已弃用)
|
|
4996
|
+
warning: '{provisioner} 树内插件已弃用。你可以在<a target="_blank" rel="noopener noreferrer nofollow" href="https://kubernetes-csi.github.io/docs/drivers.html">这里</a>查找 CSI 驱动。'
|
|
4884
4997
|
|
|
4885
4998
|
tableHeaders:
|
|
4999
|
+
assuredConcurrencyShares: 确保并发份额
|
|
4886
5000
|
accessKey: Access Key
|
|
5001
|
+
addressType: 地址类型
|
|
5002
|
+
accessModes: 访问模式
|
|
4887
5003
|
address: 地址
|
|
4888
5004
|
age: 存活时间
|
|
4889
5005
|
apiGroup: API 组
|
|
5006
|
+
apikey: API 密钥
|
|
5007
|
+
available: 可用
|
|
5008
|
+
attachedVM: 挂载的虚拟机
|
|
5009
|
+
|
|
4890
5010
|
authRoles:
|
|
4891
5011
|
globalDefault: 新用户的默认角色
|
|
4892
5012
|
clusterDefault: 集群创建者的默认角色
|
|
4893
5013
|
projectDefault: 项目创建者的默认角色
|
|
4894
5014
|
branch: 分支
|
|
5015
|
+
backupTarget: 备份路径
|
|
4895
5016
|
builtIn: 内置
|
|
4896
5017
|
bundlesReady: 就绪 Bundle
|
|
4897
5018
|
bundleDeploymentsReady: Deployment
|
|
4898
5019
|
builtin: 内置
|
|
4899
5020
|
chart: Chart
|
|
5021
|
+
capacity: 容量
|
|
5022
|
+
current: 当前
|
|
4900
5023
|
clusterCreatorDefault: 集群创建者的默认角色
|
|
4901
5024
|
clusterFlow: Cluster Flow
|
|
4902
5025
|
clusterOutput: 集群输出
|
|
4903
5026
|
cluster: 集群
|
|
4904
5027
|
clusters: 集群
|
|
5028
|
+
cluster-Name: 集群
|
|
4905
5029
|
clustersReady: 就绪集群
|
|
4906
5030
|
clusterGroups: 集群组
|
|
4907
5031
|
commit: Commit
|
|
4908
5032
|
condition: 状态
|
|
5033
|
+
completions: 完成 Job 历史数
|
|
5034
|
+
count: 数量
|
|
5035
|
+
createdAt: 创建于
|
|
4909
5036
|
customVerbs: 自定义操作
|
|
4910
5037
|
description: 描述
|
|
4911
5038
|
expires: 过期时间
|
|
4912
|
-
providers: 提供商
|
|
4913
5039
|
cpu: CPU
|
|
5040
|
+
currentReplicas: 当前副本数
|
|
4914
5041
|
date: 日期
|
|
5042
|
+
data: 数据
|
|
4915
5043
|
default: 默认
|
|
5044
|
+
desired: 期望
|
|
5045
|
+
defaultVersion: 默认版本
|
|
4916
5046
|
destination: 目标
|
|
5047
|
+
deployed: 已部署
|
|
4917
5048
|
download: 下载
|
|
5049
|
+
duration: 持续时间
|
|
5050
|
+
diskState: 磁盘状态
|
|
5051
|
+
drivers: 驱动
|
|
5052
|
+
distinguisherMethod: 区分方法
|
|
4918
5053
|
effect: 效果
|
|
4919
5054
|
endpoints: 端点
|
|
5055
|
+
firstSeen: 首次出现时间
|
|
4920
5056
|
fleetBundleType: 类型
|
|
4921
5057
|
flow: Flow
|
|
5058
|
+
fingerprint: 唯一标识
|
|
4922
5059
|
gitRepos: Git 仓库
|
|
5060
|
+
groups: 组
|
|
5061
|
+
groupName: 组名称
|
|
5062
|
+
groupRoleNames: 组角色名称
|
|
5063
|
+
global-Default: 全局默认
|
|
4923
5064
|
host: 主机
|
|
5065
|
+
hostIp: 主机 IP
|
|
5066
|
+
holder: 持有者
|
|
5067
|
+
hpaReference: 工作负载
|
|
4924
5068
|
health: 健康
|
|
5069
|
+
handSize: Hand Size
|
|
5070
|
+
ipAddress: IP 地址
|
|
4925
5071
|
id: ID
|
|
5072
|
+
iP: IP
|
|
4926
5073
|
image: 镜像
|
|
4927
5074
|
imageSize: 大小
|
|
4928
5075
|
ingressClass: IngressClass
|
|
@@ -4930,28 +5077,38 @@ tableHeaders:
|
|
|
4930
5077
|
ingressTarget: 目标
|
|
4931
5078
|
internalExternalIp: 外网 IP/内网 IP
|
|
4932
5079
|
ipaddress: IP 地址
|
|
5080
|
+
internalIpSameAsExternal: 与外网 IP 相同
|
|
4933
5081
|
jobs: Job
|
|
4934
5082
|
key: 键
|
|
4935
5083
|
keys: 数据
|
|
5084
|
+
labels: 标签
|
|
4936
5085
|
lastUpdated: 最后更新时间
|
|
5086
|
+
lastSchedule: 最后调度时间
|
|
4937
5087
|
lastSeen: 最后出现
|
|
4938
5088
|
loggingOutputProviders: 提供商
|
|
4939
5089
|
machines: 主机
|
|
4940
5090
|
machineNodeName: 节点
|
|
4941
5091
|
manual: 手动
|
|
4942
5092
|
matches: 匹配
|
|
5093
|
+
matchingPrecedence: 匹配优先级
|
|
4943
5094
|
maxKubernetesVersion: 最大 Kubernetes 版本
|
|
4944
5095
|
message: 消息
|
|
4945
5096
|
minKubernetesVersion: 最低 Kubernetes 版本
|
|
5097
|
+
minReplicas: 最小副本数
|
|
5098
|
+
maxReplicas: 最大副本数
|
|
5099
|
+
missingPL: 缺少 PL
|
|
4946
5100
|
memory: 内存
|
|
5101
|
+
monitored: 已监控
|
|
4947
5102
|
name: 名称
|
|
4948
5103
|
nameDisplay: 显示名称
|
|
4949
5104
|
nameUnlinked: 名称
|
|
4950
5105
|
namespace: 命名空间
|
|
4951
5106
|
namespaceName: 名称
|
|
4952
5107
|
namespaceNameUnlinked: 名称
|
|
5108
|
+
networkType: 类型
|
|
5109
|
+
networkVlan: Vlan ID
|
|
4953
5110
|
node: 节点
|
|
4954
|
-
nodeName:
|
|
5111
|
+
nodeName: 节点名称
|
|
4955
5112
|
nodesReady: 就绪节点
|
|
4956
5113
|
nodePort: Node Port
|
|
4957
5114
|
object: 对象
|
|
@@ -4960,14 +5117,23 @@ tableHeaders:
|
|
|
4960
5117
|
p95: 95 百分位数
|
|
4961
5118
|
persistentVolumeClaim: 持久卷声明
|
|
4962
5119
|
persistentVolumeSource: 源
|
|
5120
|
+
phase: 阶段
|
|
5121
|
+
progress: 进度
|
|
4963
5122
|
podImages: 镜像
|
|
4964
5123
|
podRestarts: 重启次数
|
|
4965
5124
|
pods: Pod
|
|
5125
|
+
pod-Selector: Pod 选择器
|
|
5126
|
+
providers: 提供商
|
|
5127
|
+
providerID: 提供商 ID
|
|
4966
5128
|
port: 端口
|
|
5129
|
+
ports: 端口
|
|
4967
5130
|
project: 项目
|
|
4968
5131
|
protocol: 协议
|
|
4969
5132
|
provider: 提供商
|
|
5133
|
+
priorityLevel: 优先级
|
|
4970
5134
|
publicPorts: 公共端口
|
|
5135
|
+
queues: 队列
|
|
5136
|
+
queueLengthLimit: 队列长度限制
|
|
4971
5137
|
ram: 内存(RAM)
|
|
4972
5138
|
rbac:
|
|
4973
5139
|
create: Create
|
|
@@ -4993,12 +5159,20 @@ tableHeaders:
|
|
|
4993
5159
|
resources: 资源
|
|
4994
5160
|
resourcesReady: 就绪资源
|
|
4995
5161
|
restarts: 重启次数
|
|
5162
|
+
restart: 需要重启
|
|
4996
5163
|
role: 角色
|
|
4997
5164
|
roles: 角色
|
|
4998
5165
|
routes: 路由
|
|
5166
|
+
routeConnectivity: 路由连接
|
|
5167
|
+
readyToUse: 可用
|
|
4999
5168
|
scale: 比例
|
|
5000
5169
|
scope: 范围
|
|
5001
5170
|
selector: 选择器
|
|
5171
|
+
secrets: 密文
|
|
5172
|
+
schedule: 调度
|
|
5173
|
+
service: 服务
|
|
5174
|
+
serviceAccounts: Service Account
|
|
5175
|
+
secret-Name: 密文名称
|
|
5002
5176
|
simpleName: 名称
|
|
5003
5177
|
simpleScale: 比例
|
|
5004
5178
|
simpleType: 类型
|
|
@@ -5006,80 +5180,35 @@ tableHeaders:
|
|
|
5006
5180
|
started: 已开始
|
|
5007
5181
|
state: 状态
|
|
5008
5182
|
status: 状态
|
|
5183
|
+
targetVm: 目标虚拟机
|
|
5009
5184
|
storage_class_provisioner: 提供商
|
|
5185
|
+
storage: 存储大小
|
|
5186
|
+
storageClass: 存储类
|
|
5187
|
+
source: 源
|
|
5010
5188
|
subject: 主题
|
|
5011
5189
|
subType: 类型
|
|
5012
5190
|
success: 成功
|
|
5013
5191
|
summary: 概述
|
|
5192
|
+
subobject: 子对象
|
|
5014
5193
|
taints: 污点
|
|
5015
5194
|
target: 目标
|
|
5016
5195
|
targetKind: 目标类型
|
|
5017
5196
|
targetPort: 目标
|
|
5018
5197
|
type: 类型
|
|
5019
5198
|
updated: 更新时间
|
|
5199
|
+
up-to-date: 最新
|
|
5020
5200
|
upgrade: 可升级
|
|
5021
5201
|
url: URL
|
|
5202
|
+
users: 用户
|
|
5022
5203
|
userDisplayName: 显示名称
|
|
5023
5204
|
userId: ID
|
|
5024
5205
|
userStatus: 状态
|
|
5025
5206
|
username: 本地用户名
|
|
5026
5207
|
value: 值
|
|
5027
5208
|
version: 版本
|
|
5209
|
+
volume: 卷
|
|
5210
|
+
volumeMode: 卷模式
|
|
5028
5211
|
weight: 权重
|
|
5029
|
-
progress: 进度
|
|
5030
|
-
fingerprint: 唯一标识
|
|
5031
|
-
networkType: 类型
|
|
5032
|
-
networkVlan: Vlan ID
|
|
5033
|
-
readyToUse: 可用
|
|
5034
|
-
backupTarget: 备份路径
|
|
5035
|
-
targetVm: 目标虚拟机
|
|
5036
|
-
phase: 阶段
|
|
5037
|
-
attachedVM: 挂载的虚拟机
|
|
5038
|
-
hostIp: 主机 IP
|
|
5039
|
-
storage: 存储大小
|
|
5040
|
-
defaultVersion: 默认版本
|
|
5041
|
-
ipAddress: IP 地址
|
|
5042
|
-
diskState: 磁盘状态
|
|
5043
|
-
routeConnectivity: 路由连接
|
|
5044
|
-
Schedule: 调度
|
|
5045
|
-
'Last Schedule': 上次调度
|
|
5046
|
-
Ready: 就绪
|
|
5047
|
-
Current: 当前
|
|
5048
|
-
Desired: 期望
|
|
5049
|
-
Up-to-date: 最新
|
|
5050
|
-
Available: 可用
|
|
5051
|
-
Completions: 完成
|
|
5052
|
-
Duration: 时长
|
|
5053
|
-
Restarts: 重启
|
|
5054
|
-
hpaReference: 工作负载
|
|
5055
|
-
minReplicas: 最小副本数
|
|
5056
|
-
maxReplicas: 最大副本数
|
|
5057
|
-
currentReplicas: 当前副本数
|
|
5058
|
-
Pod-Selector: Pod 选择器
|
|
5059
|
-
Status: 状态
|
|
5060
|
-
Volume: 卷
|
|
5061
|
-
Capacity: 容量
|
|
5062
|
-
Access Modes: 访问模式
|
|
5063
|
-
StorageClass: 存储类
|
|
5064
|
-
VolumeMode: 卷类型
|
|
5065
|
-
data: 数据
|
|
5066
|
-
Service: 服务
|
|
5067
|
-
Endpoints: 端点
|
|
5068
|
-
AddressType: 地址类型
|
|
5069
|
-
Ports: 端口
|
|
5070
|
-
Role: 角色
|
|
5071
|
-
Users: 用户
|
|
5072
|
-
Groups: 组
|
|
5073
|
-
ServiceAccounts: 服务账户
|
|
5074
|
-
Value: 值
|
|
5075
|
-
Global-Default: 全局默认
|
|
5076
|
-
Drivers: 驱动数量
|
|
5077
|
-
apikey: API 密钥
|
|
5078
|
-
groupName: 组名称
|
|
5079
|
-
groupRoleNames: 组角色名称
|
|
5080
|
-
Secret-Name: 密文名称
|
|
5081
|
-
restart: 要求重启
|
|
5082
|
-
|
|
5083
5212
|
target:
|
|
5084
5213
|
router:
|
|
5085
5214
|
label: 路由
|
|
@@ -5183,6 +5312,12 @@ validation:
|
|
|
5183
5312
|
startLetter: '“{key}” 首位必须是字母或数字'
|
|
5184
5313
|
tooLongKey: '“{key}” 的长度不能超过{max}个字符'
|
|
5185
5314
|
tooLongPrefix: '"{key}" 前缀的长度不能超过{max}个字符'
|
|
5315
|
+
minLength: '"{key}" 必须多于 {min} 个字符'
|
|
5316
|
+
maxLength: '"{key}" 必须少于 {max} 个字符'
|
|
5317
|
+
minValue: '"{key}" 必须多于 {min}'
|
|
5318
|
+
maxValue: '"{key}" 必须小于 {max}'
|
|
5319
|
+
betweenLengths: '"{key}" 必须包含 {min} 到 {max} 个字符'
|
|
5320
|
+
betweenValues: '"{key}" 必须介于 {min} 和 {max} 之间'
|
|
5186
5321
|
noSchema: 没有找到可以验证的 schema
|
|
5187
5322
|
noType: 没有可验证的类型
|
|
5188
5323
|
number:
|
|
@@ -5672,6 +5807,7 @@ workload:
|
|
|
5672
5807
|
gcePersistentDisk: Google 持久磁盘
|
|
5673
5808
|
driver.longhorn.io: Longhorn
|
|
5674
5809
|
vsphereVolume: VMWare vSphere 卷
|
|
5810
|
+
emptyDir: 空目录
|
|
5675
5811
|
addClaim: 添加声明
|
|
5676
5812
|
addMount: 添加挂载
|
|
5677
5813
|
addVolume: 添加卷
|
|
@@ -5731,6 +5867,14 @@ workload:
|
|
|
5731
5867
|
title: '存储'
|
|
5732
5868
|
volumeName: 卷名称
|
|
5733
5869
|
volumePath: 卷路径
|
|
5870
|
+
emptyDir:
|
|
5871
|
+
medium:
|
|
5872
|
+
label: 存储介质
|
|
5873
|
+
default: 主机的默认存储
|
|
5874
|
+
memory: 内存
|
|
5875
|
+
sizeLimit:
|
|
5876
|
+
label: 大小限制
|
|
5877
|
+
placeholder: "例如:300"
|
|
5734
5878
|
typeDescriptions:
|
|
5735
5879
|
apps.daemonset: DaemonSet 在每个符合条件的节点上仅运行一个 Pod。当新节点添加到集群时,DaemonSet 会自动部署新节点。推荐用于全系统或可垂直扩展,且每个节点永远不需要超过一个 pod 的工作负载。
|
|
5736
5880
|
apps.deployment: Deployment 运行分布在符合条件的节点中的可扩展数量的 Pod 副本。变更会逐步推出,并可回滚到之前的版本。推荐用于无状态和水平可扩展的工作负载。
|
|
@@ -5774,21 +5918,13 @@ workload:
|
|
|
5774
5918
|
label: 终止宽限期
|
|
5775
5919
|
tip: 终止 Pod 前所需的等待时间
|
|
5776
5920
|
title: 正在升级
|
|
5777
|
-
tabs:
|
|
5778
|
-
labels:
|
|
5921
|
+
tabs:
|
|
5922
|
+
labels:
|
|
5779
5923
|
deployment: Deployment
|
|
5780
5924
|
pod: Pod
|
|
5781
5925
|
containers: 容器
|
|
5782
5926
|
|
|
5783
|
-
|
|
5784
|
-
manage: 管理
|
|
5785
|
-
cluster:
|
|
5786
|
-
label: Harvester 集群
|
|
5787
|
-
none: 不存在 Harvester 集群
|
|
5788
|
-
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 的信息。
|
|
5789
|
-
description: Harvester 是一个采用企业级开源技术,包括Kubernetes、Kubevirt和Longhorn,为裸金属服务器打造的现代超融合基础设施(HCI)解决方案。
|
|
5790
|
-
plugins:
|
|
5791
|
-
loadError: 加载 Harvester 插件时出错
|
|
5927
|
+
|
|
5792
5928
|
|
|
5793
5929
|
##############################
|
|
5794
5930
|
# Model Properties
|
|
@@ -5877,9 +6013,9 @@ typeDescription:
|
|
|
5877
6013
|
cis.cattle.io.clusterscan: 扫描是用来根据定义的配置文件,在集群上触发 CIS 扫描的。扫描完成后会创建一份报告。
|
|
5878
6014
|
cis.cattle.io.clusterscanreport: 报告是集群 CIS 扫描的结果。
|
|
5879
6015
|
management.cattle.io.feature: 功能开关用于打开或关闭某些 {vendor} 功能。默认关闭的功能是实验功能。
|
|
5880
|
-
cluster.x-k8s.io.machine: 一个 Machine 封装一个 Kubernetes
|
|
5881
|
-
cluster.x-k8s.io.machinedeployment: Machine Deployment 通过使用模板,在一组 Machine Set(与 Deployment
|
|
5882
|
-
cluster.x-k8s.io.machineset: Machine Set 确保所需数量的 Machine 始终启动并运行(与 ReplicaSet
|
|
6016
|
+
cluster.x-k8s.io.machine: 一个 Machine 封装一个 Kubernetes 节点的配置。你可以使用此视图来查看更新集群后的情况。
|
|
6017
|
+
cluster.x-k8s.io.machinedeployment: Machine Deployment 通过使用模板,在一组 Machine Set(与 Deployment 类似)上编排部署。你可以使用此视图来查看更新集群后的情况。
|
|
6018
|
+
cluster.x-k8s.io.machineset: Machine Set 确保所需数量的 Machine 始终启动并运行(与 ReplicaSet 类似)。你可以使用此视图来查看更新集群后的情况。
|
|
5883
6019
|
resources.cattle.io.backup: 创建备份是为了基于 ResourceSet 执行一次性备份或安排重复性备份。
|
|
5884
6020
|
resources.cattle.io.restore: 创建还原用于根据备份文件触发对集群的还原。
|
|
5885
6021
|
resources.cattle.io.resourceset: Resource Set 定义要在备份中存储哪些 CRD 和资源。
|
|
@@ -6000,6 +6136,21 @@ typeLabel:
|
|
|
6000
6136
|
one { 工作空间 }
|
|
6001
6137
|
other { 工作空间 }
|
|
6002
6138
|
}
|
|
6139
|
+
policy.poddisruptionbudget: |-
|
|
6140
|
+
{count, plural,
|
|
6141
|
+
one { Pod 中断预算 }
|
|
6142
|
+
other { Pod 中断预算 }
|
|
6143
|
+
}
|
|
6144
|
+
limitrange: |-
|
|
6145
|
+
{count, plural,
|
|
6146
|
+
one { 限制范围 }
|
|
6147
|
+
other { 限制范围 }
|
|
6148
|
+
}
|
|
6149
|
+
resourcequota: |-
|
|
6150
|
+
{count, plural,
|
|
6151
|
+
one { 资源配额 }
|
|
6152
|
+
other { 资源配额 }
|
|
6153
|
+
}
|
|
6003
6154
|
# pruh-mee-thee-eyes https://www.prometheus.io/docs/introduction/faq/#what-is-the-plural-of-prometheus
|
|
6004
6155
|
monitoring.coreos.com.prometheus: |-
|
|
6005
6156
|
{count, plural,
|
|
@@ -6066,7 +6217,7 @@ typeLabel:
|
|
|
6066
6217
|
one { 集群 }
|
|
6067
6218
|
other { 集群 }
|
|
6068
6219
|
}
|
|
6069
|
-
|
|
6220
|
+
management.cattle.io.user: |-
|
|
6070
6221
|
{count, plural,
|
|
6071
6222
|
one { 用户 }
|
|
6072
6223
|
other { 用户 }
|
|
@@ -6081,6 +6232,136 @@ typeLabel:
|
|
|
6081
6232
|
one { 节点 }
|
|
6082
6233
|
other { 节点 }
|
|
6083
6234
|
}
|
|
6235
|
+
event: |-
|
|
6236
|
+
{count, plural,
|
|
6237
|
+
one { 事件 }
|
|
6238
|
+
other { 事件 }
|
|
6239
|
+
}
|
|
6240
|
+
apps.deployment: |-
|
|
6241
|
+
{count, plural,
|
|
6242
|
+
one { Deployment }
|
|
6243
|
+
other { Deployment }
|
|
6244
|
+
}
|
|
6245
|
+
batch.cronjob: |-
|
|
6246
|
+
{count, plural,
|
|
6247
|
+
one { CronJob }
|
|
6248
|
+
other { CronJob }
|
|
6249
|
+
}
|
|
6250
|
+
apps.daemonset: |-
|
|
6251
|
+
{count, plural,
|
|
6252
|
+
one { DaemonSet }
|
|
6253
|
+
other { DaemonSet }
|
|
6254
|
+
}
|
|
6255
|
+
batch.job: |-
|
|
6256
|
+
{count, plural,
|
|
6257
|
+
one { Job }
|
|
6258
|
+
other { Job }
|
|
6259
|
+
}
|
|
6260
|
+
apps.statefulset: |-
|
|
6261
|
+
{count, plural,
|
|
6262
|
+
one { StatefulSet }
|
|
6263
|
+
other { StatefulSet }
|
|
6264
|
+
}
|
|
6265
|
+
pod: |-
|
|
6266
|
+
{count, plural,
|
|
6267
|
+
one { Pod }
|
|
6268
|
+
other { Pod }
|
|
6269
|
+
}
|
|
6270
|
+
autoscaling.horizontalpodautoscaler: |-
|
|
6271
|
+
{count, plural,
|
|
6272
|
+
one { HorizontalPodAutoscaler }
|
|
6273
|
+
other { HorizontalPodAutoscaler }
|
|
6274
|
+
}
|
|
6275
|
+
networking.k8s.io.ingress: |-
|
|
6276
|
+
{count, plural,
|
|
6277
|
+
one { Ingress }
|
|
6278
|
+
other { Ingress }
|
|
6279
|
+
}
|
|
6280
|
+
networking.k8s.io.networkpolicy: |-
|
|
6281
|
+
{count, plural,
|
|
6282
|
+
one { 网络策略 }
|
|
6283
|
+
other { 网络策略 }
|
|
6284
|
+
}
|
|
6285
|
+
service: |-
|
|
6286
|
+
{count, plural,
|
|
6287
|
+
one { Service }
|
|
6288
|
+
other { Service }
|
|
6289
|
+
}
|
|
6290
|
+
persistentvolume: |-
|
|
6291
|
+
{count, plural,
|
|
6292
|
+
one { PersistentVolume }
|
|
6293
|
+
other { PersistentVolume }
|
|
6294
|
+
}
|
|
6295
|
+
storage.k8s.io.storageclass: |-
|
|
6296
|
+
{count, plural,
|
|
6297
|
+
one { StorageClass }
|
|
6298
|
+
other { StorageClass }
|
|
6299
|
+
}
|
|
6300
|
+
configmap: |-
|
|
6301
|
+
{count, plural,
|
|
6302
|
+
one { ConfigMap }
|
|
6303
|
+
other { ConfigMap }
|
|
6304
|
+
}
|
|
6305
|
+
persistentvolumeclaim: |-
|
|
6306
|
+
{count, plural,
|
|
6307
|
+
one { PersistentVolumeClaim }
|
|
6308
|
+
other { PersistentVolumeClaim }
|
|
6309
|
+
}
|
|
6310
|
+
secret: |-
|
|
6311
|
+
{count, plural,
|
|
6312
|
+
one { Secret }
|
|
6313
|
+
other { Secret }
|
|
6314
|
+
}
|
|
6315
|
+
apiregistration.k8s.io.apiservice: |-
|
|
6316
|
+
{count, plural,
|
|
6317
|
+
one { APIService }
|
|
6318
|
+
other { APIService }
|
|
6319
|
+
}
|
|
6320
|
+
apiextensions.k8s.io.customresourcedefinition: |-
|
|
6321
|
+
{count, plural,
|
|
6322
|
+
one { CustomResourceDefinition }
|
|
6323
|
+
other { CustomResourceDefinition }
|
|
6324
|
+
}
|
|
6325
|
+
flowcontrol.apiserver.k8s.io.flowschema: |-
|
|
6326
|
+
{count, plural,
|
|
6327
|
+
one { FlowSchema }
|
|
6328
|
+
other { FlowSchema }
|
|
6329
|
+
}
|
|
6330
|
+
flowcontrol.apiserver.k8s.io.prioritylevelconfiguration: |-
|
|
6331
|
+
{count, plural,
|
|
6332
|
+
one { PriorityLevelConfiguration }
|
|
6333
|
+
other { PriorityLevelConfiguration }
|
|
6334
|
+
}
|
|
6335
|
+
apps.replicaset: |-
|
|
6336
|
+
{count, plural,
|
|
6337
|
+
one { ReplicaSet }
|
|
6338
|
+
other { ReplicaSet }
|
|
6339
|
+
}
|
|
6340
|
+
coordination.k8s.io.lease: |-
|
|
6341
|
+
{count, plural,
|
|
6342
|
+
one { Lease }
|
|
6343
|
+
other { Lease }
|
|
6344
|
+
}
|
|
6345
|
+
serviceaccount: |-
|
|
6346
|
+
{count, plural,
|
|
6347
|
+
one { ServiceAccount }
|
|
6348
|
+
other { ServiceAccount }
|
|
6349
|
+
}
|
|
6350
|
+
discovery.k8s.io.endpointslice: |-
|
|
6351
|
+
{count, plural,
|
|
6352
|
+
one { EndpointSlice }
|
|
6353
|
+
other { EndpointSlice }
|
|
6354
|
+
}
|
|
6355
|
+
admissionregistration.k8s.io.mutatingwebhookconfiguration: |-
|
|
6356
|
+
{count, plural,
|
|
6357
|
+
one { MutatingWebhookConfiguration }
|
|
6358
|
+
other { MutatingWebhookConfiguration }
|
|
6359
|
+
}
|
|
6360
|
+
admissionregistration.k8s.io.validatingwebhookconfiguration: |-
|
|
6361
|
+
{count, plural,
|
|
6362
|
+
one { ValidatingWebhookConfiguration }
|
|
6363
|
+
other { ValidatingWebhookConfiguration }
|
|
6364
|
+
}
|
|
6084
6365
|
group.principal: |-
|
|
6085
6366
|
{count, plural,
|
|
6086
6367
|
one { 组 }
|
|
@@ -6101,95 +6382,190 @@ typeLabel:
|
|
|
6101
6382
|
one { Harvester 集群 }
|
|
6102
6383
|
other { Harvester 集群 }
|
|
6103
6384
|
}
|
|
6385
|
+
harvesterhci.io.cloudtemplate: |-
|
|
6386
|
+
{count, plural,
|
|
6387
|
+
one { Cloud Config 模板 }
|
|
6388
|
+
other { Cloud Config 模板 }
|
|
6389
|
+
}
|
|
6390
|
+
fleet.cattle.io.content: |-
|
|
6391
|
+
{count, plural,
|
|
6392
|
+
one { Content }
|
|
6393
|
+
other { Content }
|
|
6394
|
+
}
|
|
6104
6395
|
fleet.cattle.io.bundle: |-
|
|
6105
6396
|
{count, plural,
|
|
6106
6397
|
one { Bundle }
|
|
6107
6398
|
other { Bundle }
|
|
6108
6399
|
}
|
|
6109
|
-
fleet.cattle.io.
|
|
6400
|
+
fleet.cattle.io.bundledeployment: |-
|
|
6110
6401
|
{count, plural,
|
|
6111
|
-
one {
|
|
6112
|
-
other {
|
|
6402
|
+
one { BundleDeployment }
|
|
6403
|
+
other { BundleDeployment }
|
|
6113
6404
|
}
|
|
6114
|
-
|
|
6405
|
+
k3s.cattle.io.addon: |-
|
|
6115
6406
|
{count, plural,
|
|
6116
|
-
one {
|
|
6117
|
-
other {
|
|
6407
|
+
one { 插件 }
|
|
6408
|
+
other { 插件 }
|
|
6118
6409
|
}
|
|
6119
|
-
|
|
6410
|
+
management.cattle.io.apiservice: |-
|
|
6120
6411
|
{count, plural,
|
|
6121
|
-
one {
|
|
6122
|
-
other {
|
|
6412
|
+
one { APIService }
|
|
6413
|
+
other { APIService }
|
|
6123
6414
|
}
|
|
6124
|
-
|
|
6415
|
+
management.cattle.io.catalog: |-
|
|
6125
6416
|
{count, plural,
|
|
6126
|
-
one {
|
|
6127
|
-
other {
|
|
6417
|
+
one { 应用商店 }
|
|
6418
|
+
other { 应用商店 }
|
|
6128
6419
|
}
|
|
6129
|
-
|
|
6420
|
+
fleet.cattle.io.clusterregistration: |-
|
|
6130
6421
|
{count, plural,
|
|
6131
|
-
one {
|
|
6132
|
-
other {
|
|
6422
|
+
one { ClusterRegistration }
|
|
6423
|
+
other { ClusterRegistration }
|
|
6133
6424
|
}
|
|
6134
|
-
management.cattle.io.
|
|
6425
|
+
management.cattle.io.dynamicschema: |-
|
|
6135
6426
|
{count, plural,
|
|
6136
|
-
one {
|
|
6137
|
-
other {
|
|
6427
|
+
one { DynamicSchema }
|
|
6428
|
+
other { DynamicSchema }
|
|
6138
6429
|
}
|
|
6139
|
-
management.cattle.io.
|
|
6430
|
+
management.cattle.io.globalrolebinding: |-
|
|
6140
6431
|
{count, plural,
|
|
6141
|
-
one {
|
|
6142
|
-
other {
|
|
6432
|
+
one { GlobalRoleBinding }
|
|
6433
|
+
other { GlobalRoleBinding }
|
|
6434
|
+
}
|
|
6435
|
+
management.cattle.io.kontainerdriver: |-
|
|
6436
|
+
{count, plural,
|
|
6437
|
+
one { KontainerDriver }
|
|
6438
|
+
other { KontainerDriver }
|
|
6143
6439
|
}
|
|
6144
6440
|
management.cattle.io.nodedriver: |-
|
|
6145
6441
|
{count, plural,
|
|
6146
|
-
one {
|
|
6147
|
-
other {
|
|
6442
|
+
one { NodeDriver }
|
|
6443
|
+
other { NodeDriver }
|
|
6444
|
+
}
|
|
6445
|
+
management.cattle.io.podsecuritypolicytemplate: |-
|
|
6446
|
+
{count, plural,
|
|
6447
|
+
one { PodSecurityPolicyTemplate }
|
|
6448
|
+
other { PodSecurityPolicyTemplate }
|
|
6449
|
+
}
|
|
6450
|
+
management.cattle.io.userattribute: |-
|
|
6451
|
+
{count, plural,
|
|
6452
|
+
one { UserAttribute }
|
|
6453
|
+
other { UserAttribute }
|
|
6454
|
+
}
|
|
6455
|
+
management.cattle.io.catalogtemplate: |-
|
|
6456
|
+
{count, plural,
|
|
6457
|
+
one { CatalogTemplate }
|
|
6458
|
+
other { CatalogTemplate }
|
|
6459
|
+
}
|
|
6460
|
+
management.cattle.io.catalogtemplateversion: |-
|
|
6461
|
+
{count, plural,
|
|
6462
|
+
one { CatalogTemplateVersion }
|
|
6463
|
+
other { CatalogTemplateVersion }
|
|
6464
|
+
}
|
|
6465
|
+
management.cattle.io.cisbenchmarkversion: |-
|
|
6466
|
+
{count, plural,
|
|
6467
|
+
one { CisBenchmarkVersion }
|
|
6468
|
+
other { CisBenchmarkVersion }
|
|
6469
|
+
}
|
|
6470
|
+
management.cattle.io.cisconfig: |-
|
|
6471
|
+
{count, plural,
|
|
6472
|
+
one { CisConfig }
|
|
6473
|
+
other { CisConfig }
|
|
6474
|
+
}
|
|
6475
|
+
management.cattle.io.clusteralertgroup: |-
|
|
6476
|
+
{count, plural,
|
|
6477
|
+
one { ClusterAlertGroup }
|
|
6478
|
+
other { ClusterAlertGroup }
|
|
6479
|
+
}
|
|
6480
|
+
management.cattle.io.clusteralertrule: |-
|
|
6481
|
+
{count, plural,
|
|
6482
|
+
one { ClusterAlertRule }
|
|
6483
|
+
other { ClusterAlertRule }
|
|
6484
|
+
}
|
|
6485
|
+
management.cattle.io.clusterregistrationtoken: |-
|
|
6486
|
+
{count, plural,
|
|
6487
|
+
one { ClusterRegistrationToken }
|
|
6488
|
+
other { ClusterRegistrationToken }
|
|
6148
6489
|
}
|
|
6149
6490
|
management.cattle.io.node: |-
|
|
6150
6491
|
{count, plural,
|
|
6151
6492
|
one { 节点 }
|
|
6152
6493
|
other { 节点 }
|
|
6153
6494
|
}
|
|
6495
|
+
management.cattle.io.projectalertgroup: |-
|
|
6496
|
+
{count, plural,
|
|
6497
|
+
one { ProjectAlertGroup }
|
|
6498
|
+
other { ProjectAlertGroup }
|
|
6499
|
+
}
|
|
6500
|
+
management.cattle.io.projectalertrule: |-
|
|
6501
|
+
{count, plural,
|
|
6502
|
+
one { ProjectAlertRule }
|
|
6503
|
+
other { ProjectAlertRule }
|
|
6504
|
+
}
|
|
6505
|
+
management.cattle.io.rkeaddon: |-
|
|
6506
|
+
{count, plural,
|
|
6507
|
+
one { RkeAddon }
|
|
6508
|
+
other { RkeAddon }
|
|
6509
|
+
}
|
|
6510
|
+
management.cattle.io.rkek8sserviceoption: |-
|
|
6511
|
+
{count, plural,
|
|
6512
|
+
one { RkeK8sServiceOption }
|
|
6513
|
+
other { RkeK8sServiceOption }
|
|
6514
|
+
}
|
|
6515
|
+
management.cattle.io.rkek8ssystemimage: |-
|
|
6516
|
+
{count, plural,
|
|
6517
|
+
one { RkeK8sSystemImage }
|
|
6518
|
+
other { RkeK8sSystemImage }
|
|
6519
|
+
}
|
|
6520
|
+
rbac.authorization.k8s.io.clusterrolebinding: |-
|
|
6521
|
+
{count, plural,
|
|
6522
|
+
one { ClusterRoleBinding }
|
|
6523
|
+
other { ClusterRoleBinding }
|
|
6524
|
+
}
|
|
6154
6525
|
rbac.authorization.k8s.io.clusterrole: |-
|
|
6155
6526
|
{count, plural,
|
|
6156
|
-
one {
|
|
6157
|
-
other {
|
|
6527
|
+
one { ClusterRole }
|
|
6528
|
+
other { ClusterRole }
|
|
6529
|
+
}
|
|
6530
|
+
rbac.authorization.k8s.io.rolebinding: |-
|
|
6531
|
+
{count, plural,
|
|
6532
|
+
one { RoleBinding }
|
|
6533
|
+
other { RoleBinding }
|
|
6158
6534
|
}
|
|
6159
6535
|
rbac.authorization.k8s.io.role: |-
|
|
6160
6536
|
{count, plural,
|
|
6161
|
-
one {
|
|
6162
|
-
other {
|
|
6537
|
+
one { Role }
|
|
6538
|
+
other { Role }
|
|
6163
6539
|
}
|
|
6164
|
-
|
|
6540
|
+
scheduling.k8s.io.priorityclass: |-
|
|
6165
6541
|
{count, plural,
|
|
6166
|
-
one {
|
|
6167
|
-
other {
|
|
6542
|
+
one { PriorityClass }
|
|
6543
|
+
other { PriorityClass }
|
|
6168
6544
|
}
|
|
6169
|
-
|
|
6545
|
+
storage.k8s.io.csinode: |-
|
|
6170
6546
|
{count, plural,
|
|
6171
|
-
one {
|
|
6172
|
-
other {
|
|
6547
|
+
one { CSINode }
|
|
6548
|
+
other { CSINode }
|
|
6173
6549
|
}
|
|
6174
|
-
|
|
6550
|
+
cluster.x-k8s.io.machinedeployment: |-
|
|
6175
6551
|
{count, plural,
|
|
6176
|
-
one {
|
|
6177
|
-
other {
|
|
6552
|
+
one { MachineDeployment }
|
|
6553
|
+
other { MachineDeployment }
|
|
6178
6554
|
}
|
|
6179
|
-
|
|
6555
|
+
cluster.x-k8s.io.machineset: |-
|
|
6180
6556
|
{count, plural,
|
|
6181
|
-
one {
|
|
6182
|
-
other {
|
|
6557
|
+
one { MachineSet }
|
|
6558
|
+
other { MachineSet }
|
|
6183
6559
|
}
|
|
6184
|
-
|
|
6560
|
+
cluster.x-k8s.io.machine: |-
|
|
6185
6561
|
{count, plural,
|
|
6186
|
-
one {
|
|
6187
|
-
other {
|
|
6562
|
+
one { Machine }
|
|
6563
|
+
other { Machine }
|
|
6188
6564
|
}
|
|
6189
|
-
|
|
6565
|
+
fleet.cattle.io.clusterregistrationtoken: |-
|
|
6190
6566
|
{count, plural,
|
|
6191
|
-
one {
|
|
6192
|
-
other {
|
|
6567
|
+
one { 集群注册 Token }
|
|
6568
|
+
other { 集群注册 Token }
|
|
6193
6569
|
}
|
|
6194
6570
|
|
|
6195
6571
|
action:
|
|
@@ -6250,11 +6626,13 @@ registryMirror:
|
|
|
6250
6626
|
header: Mirror
|
|
6251
6627
|
toolTip: 'Mirror 可用来重定向来自一个仓库的镜像请求,使其来自你指定的端点列表。例如,你可以把 docker.io 指向到只和你的内部仓库通信,而不是通过互联网访问实际的 DockerHub。'
|
|
6252
6628
|
addLabel: 添加 Mirror
|
|
6629
|
+
description: Mirror 定义了私有镜像仓库的名称和端点。将会逐个尝试端点,并使用第一个可工作的端点。
|
|
6253
6630
|
|
|
6254
6631
|
registryConfig:
|
|
6255
6632
|
header: 仓库验证
|
|
6256
6633
|
toolTip: '当需要从给定的镜像仓库主机名中拉取镜像时,此信息将用于识别并验证仓库。'
|
|
6257
6634
|
addLabel: 添加镜像仓库
|
|
6635
|
+
description: "为每个镜像仓库主机名和 Mirror 定义 TLS 和凭证配置。"
|
|
6258
6636
|
|
|
6259
6637
|
##############################
|
|
6260
6638
|
### Advanced Settings
|
|
@@ -6262,10 +6640,11 @@ registryConfig:
|
|
|
6262
6640
|
|
|
6263
6641
|
advancedSettings:
|
|
6264
6642
|
label: 设置
|
|
6265
|
-
subtext: 一般用户不需要修改此处的设置。请谨慎操作,不正确的值会破坏 {appName}
|
|
6643
|
+
subtext: 一般用户不需要修改此处的设置。请谨慎操作,不正确的值会破坏 {appName} 的安装。与默认不同的设置会标记为“已修改”。
|
|
6266
6644
|
show: 显示
|
|
6267
6645
|
hide: 隐藏
|
|
6268
6646
|
none: 无
|
|
6647
|
+
modified: 已修改
|
|
6269
6648
|
edit:
|
|
6270
6649
|
label: 编辑设置
|
|
6271
6650
|
changeSetting: "修改设置:"
|
|
@@ -6355,6 +6734,7 @@ featureFlags:
|
|
|
6355
6734
|
performance:
|
|
6356
6735
|
label: UI 性能设置
|
|
6357
6736
|
settingName: 性能
|
|
6737
|
+
experimental: 此设置是实验性的,可能会在后续版本中删除或更新。
|
|
6358
6738
|
incrementalLoad:
|
|
6359
6739
|
label: 增量加载
|
|
6360
6740
|
setting: 你可以配置一个阈值,高于该阈值时则使用增量加载。
|
|
@@ -6363,7 +6743,6 @@ performance:
|
|
|
6363
6743
|
checkboxLabel: 启用增量加载
|
|
6364
6744
|
inputLabel: 资源阈值
|
|
6365
6745
|
manualRefresh:
|
|
6366
|
-
banner: 此设置是实验性的,可能会在后续版本中删除或更新。
|
|
6367
6746
|
label: 手动刷新
|
|
6368
6747
|
setting: 你可以配置一个阈值,高于该阈值时则启用手动刷新。
|
|
6369
6748
|
buttonTooltip: 刷新列表
|
|
@@ -6379,7 +6758,6 @@ performance:
|
|
|
6379
6758
|
gc:
|
|
6380
6759
|
label: 资源垃圾回收
|
|
6381
6760
|
description: UI 将在本地缓存 kuberentes 资源,避免这些资源被重新抓取。在某些情况下,这可能会导致浏览器中存储了大量数据。你可以启用此设置进行定期删除。
|
|
6382
|
-
banner: 此设置是实验性的,可能会在后续版本中删除或更新。
|
|
6383
6761
|
checkboxLabel: 启用垃圾回收
|
|
6384
6762
|
whenRun:
|
|
6385
6763
|
description: 垃圾回收运行的时候更新
|
|
@@ -6398,7 +6776,13 @@ performance:
|
|
|
6398
6776
|
count:
|
|
6399
6777
|
description: 资源必须超过此数量才能考虑进行垃圾回收。
|
|
6400
6778
|
inputLabel: 资源数量
|
|
6401
|
-
|
|
6779
|
+
nsFiltering:
|
|
6780
|
+
label: 命名空间过滤
|
|
6781
|
+
description: 当列表无法显示太多资源时,用户需要选择一个命名空间并仅提取该命名空间中的资源。
|
|
6782
|
+
checkboxLabel: 启用命名空间过滤
|
|
6783
|
+
count:
|
|
6784
|
+
inputLabel: 资源阈值
|
|
6785
|
+
description: 需要按命名空间过滤的阈值
|
|
6402
6786
|
|
|
6403
6787
|
banner:
|
|
6404
6788
|
label: 固定横幅
|
|
@@ -6437,7 +6821,7 @@ branding:
|
|
|
6437
6821
|
directoryName: 品牌资产目录名称
|
|
6438
6822
|
logos:
|
|
6439
6823
|
label: Logo
|
|
6440
|
-
tip: '上传 Logo 以替换顶层导航标题中的 Rancher logo。图片的高度应为 21 像素,最大宽度为 200 像素。最大文件大小为 20KB'
|
|
6824
|
+
tip: '上传 Logo 以替换顶层导航标题中的 Rancher logo。图片的高度应为 21 像素,最大宽度为 200 像素。最大文件大小为 20KB。支持的格式:JPEG、PNG、SVG。'
|
|
6441
6825
|
lightPreview: 浅色主题预览
|
|
6442
6826
|
darkPreview: 深色主题预览
|
|
6443
6827
|
uploadLight: 上传浅色 Logo
|
|
@@ -6515,7 +6899,7 @@ resourceQuota:
|
|
|
6515
6899
|
namespace: '此命名空间:'
|
|
6516
6900
|
available: '可用:'
|
|
6517
6901
|
max: '总计:'
|
|
6518
|
-
customLinks:
|
|
6902
|
+
customLinks:
|
|
6519
6903
|
displayTitle: 链接
|
|
6520
6904
|
label: 主页链接
|
|
6521
6905
|
description: '配置要在主页上显示的链接。你可以配置自定义链接以及显示或隐藏默认链接。'
|
|
@@ -6528,7 +6912,7 @@ customLinks:
|
|
|
6528
6912
|
keyLabel: 显示文本
|
|
6529
6913
|
valueLabel: URL
|
|
6530
6914
|
showLabel: 显示
|
|
6531
|
-
defaults:
|
|
6915
|
+
defaults:
|
|
6532
6916
|
docs: Rancher 官方文档
|
|
6533
6917
|
forums: 论坛
|
|
6534
6918
|
slack: Slack
|
|
@@ -6881,4 +7265,4 @@ charts:
|
|
|
6881
7265
|
- 请注意引号的使用。"
|
|
6882
7266
|
ingress.host:
|
|
6883
7267
|
label: 7 层负载均衡主机名
|
|
6884
|
-
description: "7 层负载均衡主机名"
|
|
7268
|
+
description: "7 层负载均衡主机名"
|