dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/brand/csp/favicon.png +0 -0
- package/assets/brand/harvester/favicon.png +0 -0
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/icons/demo.css +539 -0
- package/assets/icons/demo.css:Zone.Identifier +0 -0
- package/assets/icons/demo_index.html +1131 -0
- package/assets/icons/demo_index.html:Zone.Identifier +0 -0
- package/assets/icons/iconfont.css +219 -0
- package/assets/icons/iconfont.css:Zone.Identifier +0 -0
- package/assets/icons/iconfont.js +1 -0
- package/assets/icons/iconfont.js:Zone.Identifier +0 -0
- package/assets/icons/iconfont.json +324 -0
- package/assets/icons/iconfont.json:Zone.Identifier +0 -0
- package/assets/icons/iconfont.ttf +0 -0
- package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff +0 -0
- package/assets/icons/iconfont.woff2 +0 -0
- package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
- package/assets/iconsNew/demo.css +539 -0
- package/assets/iconsNew/demo.css:Zone.Identifier +0 -0
- package/assets/iconsNew/demo_index.html +303 -0
- package/assets/iconsNew/demo_index.html:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.css +43 -0
- package/assets/iconsNew/iconfont.css:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.js +1 -0
- package/assets/iconsNew/iconfont.js:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.json +44 -0
- package/assets/iconsNew/iconfont.json:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.ttf +0 -0
- package/assets/iconsNew/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff +0 -0
- package/assets/iconsNew/iconfont.woff2 +0 -0
- package/assets/iconsNew/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff:Zone.Identifier +0 -0
- package/assets/images/API.svg +3 -0
- package/assets/images/action.svg +6 -0
- package/assets/images/login/password.svg +20 -0
- package/assets/images/login/user.svg +6 -0
- package/assets/images/login-bg.png +0 -0
- package/assets/images/login-left.png +0 -0
- package/assets/images/login-logo.svg +44 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo.svg +47 -0
- package/assets/images/pl/dark/logo.png +0 -0
- package/assets/images/pl/half-logo.svg +2 -23
- package/assets/images/pl/harvester.png +0 -0
- package/assets/images/pl/logo.png +0 -0
- package/assets/images/promp-yellow.svg +5 -0
- package/assets/images/user.png +0 -0
- package/assets/styles/all.scss +83 -0
- package/assets/styles/app.scss +5 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_helpers.scss +1 -1
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +2 -1
- package/assets/styles/base/_variables.scss +14 -7
- package/assets/styles/fonts/_icons.scss +3 -2
- package/assets/styles/global/_button.scss +44 -26
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +46 -13
- package/assets/styles/global/_labeled-input.scss +54 -26
- package/assets/styles/global/_layout.scss +8 -3
- package/assets/styles/global/_select.scss +25 -17
- package/assets/styles/global/_table.scss +7 -1
- package/assets/styles/global/_tooltip.scss +60 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +69 -46
- package/assets/styles/vendor/vue-select.scss +24 -10
- package/assets/translations/en-us.yaml +92 -4
- package/assets/translations/zh-hans.yaml +668 -206
- package/components/ActionDropdown.vue +2 -1
- package/components/ActionMenu.vue +2 -2
- package/components/ActionMenuShell.vue +2 -0
- package/components/AppModal.vue +46 -5
- package/components/BrandImage.vue +1 -0
- package/components/ButtonDropdown.vue +28 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +2 -2
- package/components/CodeMirror.vue +26 -10
- package/components/ConsumptionGauge.vue +24 -5
- package/components/ContainerResourceLimit.vue +2 -2
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +12 -10
- package/components/CruResourceFooter.vue +2 -2
- package/components/DashboardOptions.vue +29 -17
- package/components/DotState.vue +84 -0
- package/components/Drawer/Chrome.vue +2 -2
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +30 -27
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +5 -4
- package/components/ExplorerMembers.vue +28 -4
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +23 -4
- package/components/GrafanaDashboard.vue +4 -4
- package/components/GrowlManager.vue +3 -1
- package/components/HardwareResourceGauge.vue +39 -3
- package/components/IndentedPanel.vue +4 -10
- package/components/InfoBox.vue +3 -3
- package/components/InputOrDisplay.vue +28 -2
- package/components/LabelValue.vue +20 -1
- package/components/ModalWithCard.vue +12 -3
- package/components/PodSecurityAdmission.vue +2 -2
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +53 -12
- package/components/RelatedResources.vue +3 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +1 -3
- package/components/Resource/Detail/Metadata/KeyValue.vue +8 -4
- package/components/Resource/Detail/Metadata/index.vue +3 -1
- package/components/Resource/Detail/TitleBar/Title.vue +4 -3
- package/components/Resource/Detail/TitleBar/Top.vue +2 -0
- package/components/Resource/Detail/TitleBar/composables.ts +16 -1
- package/components/Resource/Detail/TitleBar/index.vue +125 -27
- package/components/ResourceDetail/Masthead/index.vue +1 -1
- package/components/ResourceDetail/Masthead/latest.vue +1 -1
- package/components/ResourceDetail/Masthead/legacy.vue +183 -39
- package/components/ResourceDetail/legacy.vue +47 -29
- package/components/ResourceList/Masthead.vue +222 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +40 -2
- package/components/SideNav.vue +74 -20
- package/components/SingleClusterInfo.vue +2 -1
- package/components/SortableTable/THead.vue +79 -4
- package/components/SortableTable/index.vue +1053 -464
- package/components/SortableTable/paging.js +26 -16
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/Tab.vue +3 -3
- package/components/Tabbed/index.vue +53 -30
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +51 -19
- package/components/auth/RoleDetailEdit.vue +69 -14
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +119 -0
- package/components/form/ArrayList.vue +177 -152
- package/components/form/ArrayListGrouped.vue +13 -3
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +5 -5
- package/components/form/ClusterAppearance.vue +4 -3
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Command.vue +4 -5
- package/components/form/Conditions.vue +15 -1
- package/components/form/Footer.vue +12 -8
- package/components/form/HealthCheck.vue +0 -2
- package/components/form/HookOption.vue +87 -58
- package/components/form/InputWithSelect.vue +8 -4
- package/components/form/KeyValue.vue +66 -8
- package/components/form/LabeledSelect.vue +216 -242
- package/components/form/Labels.vue +4 -4
- package/components/form/MatchExpressions.vue +28 -11
- package/components/form/Members/ClusterMembershipEditor.vue +1 -1
- package/components/form/Members/ClusterPermissionsEditor.vue +61 -43
- package/components/form/Members/MembershipEditor.vue +4 -4
- package/components/form/Members/ProjectMembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +62 -22
- package/components/form/Networking.vue +6 -9
- package/components/form/NodeAffinity.vue +29 -28
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +24 -25
- package/components/form/Probe.vue +15 -11
- package/components/form/ProjectMemberEditor.vue +66 -48
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +26 -23
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +38 -35
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +24 -23
- package/components/form/Security.vue +1 -3
- package/components/form/Select.vue +12 -3
- package/components/form/ServiceNameSelect.vue +2 -5
- package/components/form/ServicePorts.vue +149 -75
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/Tolerations.vue +13 -9
- package/components/form/UnitInput.vue +8 -3
- package/components/form/ValueFromResource.vue +110 -96
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/formatter/WorkloadHealthScale.vue +4 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +139 -99
- package/components/nav/Header.vue +138 -164
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +34 -36
- package/components/nav/TopLevelMenu.vue +62 -25
- package/components/nav/Type.vue +73 -43
- package/composables/useClickOutside.ts +1 -1
- package/config/menuRouteMap.js +10 -0
- package/config/private-label.js +14 -11
- package/config/product/auth.js +17 -7
- package/config/product/explorer.js +32 -10
- package/config/product/manager.js +28 -17
- package/config/product/settings.js +19 -9
- package/config/product/uiplugins.js +13 -10
- package/config/router/navigation-guards/index.js +61 -3
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/detail/node.vue +28 -23
- package/dialog/AddCustomBadgeDialog.vue +17 -9
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/RollbackWorkloadDialog.vue +1 -1
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/hpa-scaling-rule.vue +9 -6
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +3 -1
- package/edit/autoscaling.horizontalpodautoscaler/metric-identifier.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +7 -5
- package/edit/autoscaling.horizontalpodautoscaler/metric-target.vue +5 -3
- package/edit/autoscaling.horizontalpodautoscaler/metrics-row.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/resource-metric.vue +2 -2
- package/edit/configmap.vue +4 -0
- package/edit/logging-flow/index.vue +1 -2
- package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/azurestorage.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/cloudwatch.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/datadog.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/forward.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/gcs.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/gelf.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/kafka.vue +10 -10
- package/edit/logging.banzaicloud.io.output/providers/kinesisStream.vue +8 -8
- package/edit/logging.banzaicloud.io.output/providers/logdna.vue +17 -17
- package/edit/logging.banzaicloud.io.output/providers/logz.vue +7 -7
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/newrelic.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/redis.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/s3.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +13 -13
- package/edit/logging.banzaicloud.io.output/providers/sumologic.vue +2 -2
- package/edit/logging.banzaicloud.io.output/providers/syslog.vue +54 -54
- package/edit/management.cattle.io.user.vue +17 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +19 -19
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +50 -26
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/dingding.vue +32 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/message.vue +52 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/snmp.vue +45 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/work.vue +31 -0
- package/edit/monitoring.coreos.com.receiver/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +5 -5
- package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -4
- package/edit/namespace.vue +1 -2
- package/edit/networking.k8s.io.ingress/Certificate.vue +14 -5
- package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
- package/edit/networking.k8s.io.ingress/Rule.vue +5 -11
- package/edit/networking.k8s.io.ingress/RulePath.vue +105 -96
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -3
- package/edit/networking.k8s.io.networkpolicy/PolicyRulePort.vue +4 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +12 -11
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/persistentvolume/index.vue +3 -1
- package/edit/persistentvolumeclaim.vue +2 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +1 -1
- package/edit/secret/index.vue +2 -2
- package/edit/service.vue +4 -1
- package/edit/storage.k8s.io.storageclass/index.vue +10 -8
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/aws-ebs.vue +34 -27
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/gce-pd.vue +15 -13
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/vsphere-volume.vue +41 -39
- package/edit/token.vue +31 -12
- package/edit/workload/Job.vue +31 -34
- package/edit/workload/Upgrading.vue +5 -5
- package/edit/workload/index.vue +22 -18
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +9 -7
- package/edit/workload/storage/azureDisk.vue +14 -10
- package/edit/workload/storage/azureFile.vue +9 -7
- package/edit/workload/storage/csi/index.vue +6 -9
- package/edit/workload/storage/emptyDir.vue +7 -5
- package/edit/workload/storage/gcePersistentDisk.vue +9 -7
- package/edit/workload/storage/hostPath.vue +7 -5
- package/edit/workload/storage/nfs.vue +8 -6
- package/edit/workload/storage/persistentVolumeClaim/index.vue +12 -10
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +20 -15
- package/edit/workload/storage/secret.vue +9 -6
- package/edit/workload/storage/vsphereVolume.vue +11 -7
- package/initialize/app-extended.js +7 -1
- package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +8 -6
- package/list/management.cattle.io.setting.vue +22 -13
- package/list/management.cattle.io.user.vue +7 -3
- package/list/namespace.vue +3 -0
- package/list/provisioning.cattle.io.cluster.vue +6 -7
- package/mixins/brand.js +17 -0
- package/mixins/create-edit-view/impl.js +10 -0
- package/models/provisioning.cattle.io.cluster.js +19 -18
- package/models/workload.js +2 -2
- package/package.json +1 -1
- package/pages/account/index.vue +93 -58
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +216 -51
- package/pages/auth/setup.vue +175 -33
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +83 -8
- package/pages/c/_cluster/explorer/ConfigBadge.vue +1 -1
- package/pages/c/_cluster/explorer/index.vue +2 -1
- package/pages/c/_cluster/explorer/tools/index.vue +6 -6
- package/pages/c/_cluster/monitoring/monitor/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +174 -102
- package/pages/c/_cluster/settings/brand.vue +350 -302
- package/pages/c/_cluster/settings/performance.vue +61 -38
- package/pages/home.vue +119 -37
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/actions.js +1 -1
- package/plugins/dashboard-store/resource-class.js +28 -27
- package/promptRemove/mixin/roleDeletionCheck.js +2 -2
- package/public/index.html +4 -4
- package/rancher-components/BadgeState/BadgeState.vue +38 -55
- package/rancher-components/Banner/Banner.vue +25 -9
- package/rancher-components/Card/Card.vue +7 -8
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -0
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +42 -3
- package/rancher-components/Form/Radio/RadioButton.vue +35 -11
- package/rancher-components/Form/Radio/RadioGroup.vue +22 -6
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +41 -4
- package/rancher-components/RcDropdown/RcDropdown.vue +35 -7
- package/rancher-components/RcDropdown/RcDropdownItem.vue +2 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +12 -6
- package/rancher-components/RcDropdown/types.ts +1 -0
- package/rancher-components/StringList/StringList.vue +1 -1
- package/scripts/build-pkg.sh +18 -23
- package/scripts/publish-shell.sh +1 -1
- package/static/favicon.ico +0 -0
- package/static/favicon.png +0 -0
- package/static/loading-indicator.html +3 -3
- package/store/i18n.js +6 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +30 -2
- package/types/shell/index.d.ts +86 -97
- package/utils/error.js +109 -8
- package/utils/errorTranslate.json +1740 -0
- package/utils/errorTranslateNew.json +39 -0
- package/utils/roleFiltering.js +33 -0
- package/utils/router.js +21 -0
- package/utils/select.js +26 -3
- package/utils/string.js +8 -5
- package/utils/title.ts +1 -1
- package/vue.config.js +1 -1
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "4846261",
|
|
3
|
+
"name": "menu",
|
|
4
|
+
"font_family": "iconfont",
|
|
5
|
+
"css_prefix_text": "icon-",
|
|
6
|
+
"description": "",
|
|
7
|
+
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "45079104",
|
|
10
|
+
"name": "供应商网络",
|
|
11
|
+
"font_class": "gongyingshangwangluo",
|
|
12
|
+
"unicode": "e62f",
|
|
13
|
+
"unicode_decimal": 58927
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "45079106",
|
|
17
|
+
"name": "子网",
|
|
18
|
+
"font_class": "ziwang",
|
|
19
|
+
"unicode": "e630",
|
|
20
|
+
"unicode_decimal": 58928
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon_id": "45079107",
|
|
24
|
+
"name": "vlan",
|
|
25
|
+
"font_class": "vlan",
|
|
26
|
+
"unicode": "e631",
|
|
27
|
+
"unicode_decimal": 58929
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"icon_id": "45079108",
|
|
31
|
+
"name": "vpc",
|
|
32
|
+
"font_class": "vpc",
|
|
33
|
+
"unicode": "e632",
|
|
34
|
+
"unicode_decimal": 58930
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"icon_id": "43598699",
|
|
38
|
+
"name": "虚拟磁盘快照",
|
|
39
|
+
"font_class": "a-zu456872",
|
|
40
|
+
"unicode": "e629",
|
|
41
|
+
"unicode_decimal": 58921
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"icon_id": "43598690",
|
|
45
|
+
"name": "虚拟磁盘",
|
|
46
|
+
"font_class": "a-zu456871",
|
|
47
|
+
"unicode": "e628",
|
|
48
|
+
"unicode_decimal": 58920
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"icon_id": "43576548",
|
|
52
|
+
"name": "集群网络",
|
|
53
|
+
"font_class": "a-zu46002",
|
|
54
|
+
"unicode": "e627",
|
|
55
|
+
"unicode_decimal": 58919
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"icon_id": "43524726",
|
|
59
|
+
"name": "概览",
|
|
60
|
+
"font_class": "gailan",
|
|
61
|
+
"unicode": "e606",
|
|
62
|
+
"unicode_decimal": 58886
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"icon_id": "43524728",
|
|
66
|
+
"name": "集群流",
|
|
67
|
+
"font_class": "jiqunliu",
|
|
68
|
+
"unicode": "e607",
|
|
69
|
+
"unicode_decimal": 58887
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"icon_id": "43524729",
|
|
73
|
+
"name": "集群输出",
|
|
74
|
+
"font_class": "jiqunshuchu",
|
|
75
|
+
"unicode": "e608",
|
|
76
|
+
"unicode_decimal": 58888
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"icon_id": "43524737",
|
|
80
|
+
"name": "集群流",
|
|
81
|
+
"font_class": "jiqunliu1",
|
|
82
|
+
"unicode": "e609",
|
|
83
|
+
"unicode_decimal": 58889
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"icon_id": "43524742",
|
|
87
|
+
"name": "集群输出",
|
|
88
|
+
"font_class": "jiqunshuchu1",
|
|
89
|
+
"unicode": "e60a",
|
|
90
|
+
"unicode_decimal": 58890
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"icon_id": "43524744",
|
|
94
|
+
"name": "加密",
|
|
95
|
+
"font_class": "jiami",
|
|
96
|
+
"unicode": "e60b",
|
|
97
|
+
"unicode_decimal": 58891
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"icon_id": "43524747",
|
|
101
|
+
"name": "监控",
|
|
102
|
+
"font_class": "jiankong",
|
|
103
|
+
"unicode": "e60c",
|
|
104
|
+
"unicode_decimal": 58892
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"icon_id": "43524748",
|
|
108
|
+
"name": "监控日志",
|
|
109
|
+
"font_class": "jiankongrizhi",
|
|
110
|
+
"unicode": "e60d",
|
|
111
|
+
"unicode_decimal": 58893
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"icon_id": "43524749",
|
|
115
|
+
"name": "警报",
|
|
116
|
+
"font_class": "jingbao",
|
|
117
|
+
"unicode": "e60e",
|
|
118
|
+
"unicode_decimal": 58894
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"icon_id": "43524750",
|
|
122
|
+
"name": "镜像",
|
|
123
|
+
"font_class": "jingxiang",
|
|
124
|
+
"unicode": "e60f",
|
|
125
|
+
"unicode_decimal": 58895
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"icon_id": "43524751",
|
|
129
|
+
"name": "流",
|
|
130
|
+
"font_class": "liu",
|
|
131
|
+
"unicode": "e610",
|
|
132
|
+
"unicode_decimal": 58896
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"icon_id": "43524752",
|
|
136
|
+
"name": "资源组",
|
|
137
|
+
"font_class": "mingmingkongjian",
|
|
138
|
+
"unicode": "e611",
|
|
139
|
+
"unicode_decimal": 58897
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"icon_id": "43524753",
|
|
143
|
+
"name": "模版",
|
|
144
|
+
"font_class": "moban",
|
|
145
|
+
"unicode": "e612",
|
|
146
|
+
"unicode_decimal": 58898
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"icon_id": "43524754",
|
|
150
|
+
"name": "配置",
|
|
151
|
+
"font_class": "peizhi",
|
|
152
|
+
"unicode": "e613",
|
|
153
|
+
"unicode_decimal": 58899
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"icon_id": "43524755",
|
|
157
|
+
"name": "设置",
|
|
158
|
+
"font_class": "shezhi",
|
|
159
|
+
"unicode": "e614",
|
|
160
|
+
"unicode_decimal": 58900
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"icon_id": "43524756",
|
|
164
|
+
"name": "输出",
|
|
165
|
+
"font_class": "shuchu",
|
|
166
|
+
"unicode": "e615",
|
|
167
|
+
"unicode_decimal": 58901
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"icon_id": "43524757",
|
|
171
|
+
"name": "网络",
|
|
172
|
+
"font_class": "wangluo",
|
|
173
|
+
"unicode": "e616",
|
|
174
|
+
"unicode_decimal": 58902
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"icon_id": "43524758",
|
|
178
|
+
"name": "虚机",
|
|
179
|
+
"font_class": "xuji",
|
|
180
|
+
"unicode": "e617",
|
|
181
|
+
"unicode_decimal": 58903
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"icon_id": "43524759",
|
|
185
|
+
"name": "虚拟机",
|
|
186
|
+
"font_class": "xuniji",
|
|
187
|
+
"unicode": "e618",
|
|
188
|
+
"unicode_decimal": 58904
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"icon_id": "43524761",
|
|
192
|
+
"name": "虚拟机备份",
|
|
193
|
+
"font_class": "xunijibeifen",
|
|
194
|
+
"unicode": "e619",
|
|
195
|
+
"unicode_decimal": 58905
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"icon_id": "43524762",
|
|
199
|
+
"name": "虚拟机调度",
|
|
200
|
+
"font_class": "xunijitiaodu",
|
|
201
|
+
"unicode": "e61a",
|
|
202
|
+
"unicode_decimal": 58906
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"icon_id": "43524763",
|
|
206
|
+
"name": "虚拟机快照",
|
|
207
|
+
"font_class": "xunijikuaizhao",
|
|
208
|
+
"unicode": "e61b",
|
|
209
|
+
"unicode_decimal": 58907
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"icon_id": "43524764",
|
|
213
|
+
"name": "虚拟机网络",
|
|
214
|
+
"font_class": "xunijiwangluo",
|
|
215
|
+
"unicode": "e61c",
|
|
216
|
+
"unicode_decimal": 58908
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"icon_id": "43524766",
|
|
220
|
+
"name": "云配置模版",
|
|
221
|
+
"font_class": "yunpeizhimoban",
|
|
222
|
+
"unicode": "e61d",
|
|
223
|
+
"unicode_decimal": 58909
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"icon_id": "43524767",
|
|
227
|
+
"name": "主机 ",
|
|
228
|
+
"font_class": "zhuji",
|
|
229
|
+
"unicode": "e61e",
|
|
230
|
+
"unicode_decimal": 58910
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"icon_id": "43524780",
|
|
234
|
+
"name": "资源",
|
|
235
|
+
"font_class": "ziyuan",
|
|
236
|
+
"unicode": "e61f",
|
|
237
|
+
"unicode_decimal": 58911
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"icon_id": "43524781",
|
|
241
|
+
"name": "gpu",
|
|
242
|
+
"font_class": "gpu",
|
|
243
|
+
"unicode": "e620",
|
|
244
|
+
"unicode_decimal": 58912
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"icon_id": "43524782",
|
|
248
|
+
"name": "ip",
|
|
249
|
+
"font_class": "ip",
|
|
250
|
+
"unicode": "e621",
|
|
251
|
+
"unicode_decimal": 58913
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"icon_id": "43524783",
|
|
255
|
+
"name": "pci",
|
|
256
|
+
"font_class": "pci",
|
|
257
|
+
"unicode": "e622",
|
|
258
|
+
"unicode_decimal": 58914
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"icon_id": "43524786",
|
|
262
|
+
"name": "sriov",
|
|
263
|
+
"font_class": "sriov",
|
|
264
|
+
"unicode": "e623",
|
|
265
|
+
"unicode_decimal": 58915
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"icon_id": "43524788",
|
|
269
|
+
"name": "ssh",
|
|
270
|
+
"font_class": "ssh",
|
|
271
|
+
"unicode": "e624",
|
|
272
|
+
"unicode_decimal": 58916
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"icon_id": "43524789",
|
|
276
|
+
"name": "usb",
|
|
277
|
+
"font_class": "usb",
|
|
278
|
+
"unicode": "e625",
|
|
279
|
+
"unicode_decimal": 58917
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"icon_id": "43524790",
|
|
283
|
+
"name": "vgpu",
|
|
284
|
+
"font_class": "vgpu",
|
|
285
|
+
"unicode": "e626",
|
|
286
|
+
"unicode_decimal": 58918
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"icon_id": "43524721",
|
|
290
|
+
"name": "存储卷",
|
|
291
|
+
"font_class": "cunchujuan",
|
|
292
|
+
"unicode": "e601",
|
|
293
|
+
"unicode_decimal": 58881
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"icon_id": "43524722",
|
|
297
|
+
"name": "存储快照",
|
|
298
|
+
"font_class": "cunchukuaizhao",
|
|
299
|
+
"unicode": "e602",
|
|
300
|
+
"unicode_decimal": 58882
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"icon_id": "43524723",
|
|
304
|
+
"name": "存储类",
|
|
305
|
+
"font_class": "cunchulei",
|
|
306
|
+
"unicode": "e603",
|
|
307
|
+
"unicode_decimal": 58883
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"icon_id": "43524724",
|
|
311
|
+
"name": "负载均衡",
|
|
312
|
+
"font_class": "fuzaijunheng",
|
|
313
|
+
"unicode": "e604",
|
|
314
|
+
"unicode_decimal": 58884
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"icon_id": "43524725",
|
|
318
|
+
"name": "附加组件",
|
|
319
|
+
"font_class": "fujiazujian",
|
|
320
|
+
"unicode": "e605",
|
|
321
|
+
"unicode_decimal": 58885
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
}
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|