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
|
@@ -29,11 +29,13 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.vs__dropdown-menu {
|
|
32
|
+
padding-inline-start: 0px;
|
|
32
33
|
display: block;
|
|
33
34
|
position: absolute;
|
|
34
35
|
left: -2px;
|
|
35
|
-
z-index: z-index('dropdownContent');
|
|
36
|
-
|
|
36
|
+
// z-index: z-index('dropdownContent');
|
|
37
|
+
z-index: 50;
|
|
38
|
+
// padding: $input-padding-sm 0;
|
|
37
39
|
margin: 0;
|
|
38
40
|
width: calc(100% + 4px);
|
|
39
41
|
max-height: 350px;
|
|
@@ -67,14 +69,15 @@
|
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
.vs__dropdown-option {
|
|
70
|
-
line-height:
|
|
72
|
+
line-height: 32px; /* Normalize line height */
|
|
71
73
|
display: block;
|
|
72
|
-
padding: 0 calc(#{$input-padding-sm}/2);
|
|
74
|
+
// padding: 0 calc(#{$input-padding-sm}/2);
|
|
75
|
+
padding: 0 12px;
|
|
73
76
|
clear: both;
|
|
74
77
|
color: var(--dropdown-text);
|
|
75
78
|
white-space: nowrap;
|
|
76
79
|
z-index: 1000;
|
|
77
|
-
overflow-y: auto;
|
|
80
|
+
// overflow-y: auto;
|
|
78
81
|
// needs overflow-x hidden so that select for type of charts in cluster chart page
|
|
79
82
|
// doesn't show a horizontal scroll https://github.com/rancher/dashboard/pull/13139/files/9e6a8e64181de4525ad378d4d1b93c8efc2ed6d5#r1929296126
|
|
80
83
|
overflow-x: hidden;
|
|
@@ -156,9 +159,10 @@
|
|
|
156
159
|
content: $icon-chevron-down;
|
|
157
160
|
font-family: 'icons';
|
|
158
161
|
height: 32px;
|
|
159
|
-
padding-top: 8px;
|
|
160
162
|
color: var(--secondary);
|
|
161
|
-
margin-right:
|
|
163
|
+
margin-right: 9px;
|
|
164
|
+
display: flex;
|
|
165
|
+
align-items: center;
|
|
162
166
|
}
|
|
163
167
|
}
|
|
164
168
|
|
|
@@ -262,6 +266,13 @@ $transition-duration: 150ms;
|
|
|
262
266
|
&:not(:last-of-type) {
|
|
263
267
|
margin-right: 2px;
|
|
264
268
|
}
|
|
269
|
+
button:hover{
|
|
270
|
+
background-color: unset !important;
|
|
271
|
+
&::after{
|
|
272
|
+
color: var(--link) !important;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
}
|
|
265
276
|
|
|
266
277
|
button.vs__deselect {
|
|
267
278
|
line-height: unset;
|
|
@@ -273,12 +284,13 @@ $transition-duration: 150ms;
|
|
|
273
284
|
.vs__deselect {
|
|
274
285
|
display: inline-flex;
|
|
275
286
|
appearance: none;
|
|
276
|
-
margin-left:
|
|
287
|
+
margin-left: 3px;
|
|
277
288
|
padding: 0;
|
|
278
289
|
border: 0;
|
|
279
290
|
cursor: pointer;
|
|
280
291
|
background: none;
|
|
281
292
|
fill: var(--primary);
|
|
293
|
+
min-width: 32px;
|
|
282
294
|
|
|
283
295
|
svg {
|
|
284
296
|
display: none;
|
|
@@ -310,6 +322,7 @@ $transition-duration: 150ms;
|
|
|
310
322
|
}
|
|
311
323
|
.vs__selected {
|
|
312
324
|
color: var(--input-text);
|
|
325
|
+
background-color: rgba(0, 0, 0, 0);
|
|
313
326
|
}
|
|
314
327
|
}
|
|
315
328
|
|
|
@@ -319,7 +332,7 @@ $transition-duration: 150ms;
|
|
|
319
332
|
}
|
|
320
333
|
.vs__dropdown-toggle {
|
|
321
334
|
background-color: var(--input-bg);
|
|
322
|
-
border: none;
|
|
335
|
+
border: none !important;
|
|
323
336
|
padding: none;
|
|
324
337
|
border-radius: var(--border-radius);
|
|
325
338
|
border: 1px solid var(--dropdown-border);
|
|
@@ -377,7 +390,8 @@ header .vs-select .vs__dropdown-toggle {
|
|
|
377
390
|
|
|
378
391
|
.vs__no-options {
|
|
379
392
|
color: var(--dropdown-text);
|
|
380
|
-
padding:
|
|
393
|
+
padding: 0px 20px;
|
|
394
|
+
line-height: 32px;
|
|
381
395
|
}
|
|
382
396
|
|
|
383
397
|
header {
|
|
@@ -762,6 +762,63 @@ assignTo:
|
|
|
762
762
|
}
|
|
763
763
|
workspace: Workspace
|
|
764
764
|
|
|
765
|
+
stateLabel:
|
|
766
|
+
Images preloaded: Images preloaded
|
|
767
|
+
Waiting Reboot: Waiting Reboot
|
|
768
|
+
warning: warning
|
|
769
|
+
upgrading: upgrading
|
|
770
|
+
Upgrading: Upgrading
|
|
771
|
+
Succeeded: Succeeded
|
|
772
|
+
Pending migration: Pending migration
|
|
773
|
+
Imagepullbackoff: Imagepullbackoff
|
|
774
|
+
VM error: VM error
|
|
775
|
+
Locked: Locked
|
|
776
|
+
Bound: Bound
|
|
777
|
+
Running: Running
|
|
778
|
+
Off: Off
|
|
779
|
+
Stopped: Stopped
|
|
780
|
+
pending: pending
|
|
781
|
+
Pending: Pending
|
|
782
|
+
failed: failed
|
|
783
|
+
Failed: Failed
|
|
784
|
+
Paused: Paused
|
|
785
|
+
Stopping: Stopping
|
|
786
|
+
Progressing: Progressing
|
|
787
|
+
Scheduling: Scheduling
|
|
788
|
+
Terminating: Terminating
|
|
789
|
+
Scheduled: Scheduled
|
|
790
|
+
Unknown: Unknown
|
|
791
|
+
CrashLoopBackOff: CrashLoopBackOff
|
|
792
|
+
Active: Active
|
|
793
|
+
Inactive: Inactive
|
|
794
|
+
Ready: Ready
|
|
795
|
+
Not Ready: Not Ready
|
|
796
|
+
Not ready: Not ready
|
|
797
|
+
Degraded: Degraded
|
|
798
|
+
Removing: Removing
|
|
799
|
+
Validated: Validated
|
|
800
|
+
Validating: Validating
|
|
801
|
+
Healthy: Healthy
|
|
802
|
+
Warning: Warning
|
|
803
|
+
Error: Error
|
|
804
|
+
Cordoned: Cordoned
|
|
805
|
+
Starting: Starting
|
|
806
|
+
Uploading: Uploading
|
|
807
|
+
Downloading: Downloading
|
|
808
|
+
In-use: In-use
|
|
809
|
+
Suspended: Suspended
|
|
810
|
+
Disabled: Disabled
|
|
811
|
+
Enabled: Enabled
|
|
812
|
+
Maintenance: Maintenance
|
|
813
|
+
Migrating: Migrating
|
|
814
|
+
Restoring: Restoring
|
|
815
|
+
Resizing: Resizing
|
|
816
|
+
Exporting: Exporting
|
|
817
|
+
Unavailable: Unavailable
|
|
818
|
+
Unschedulable: Unschedulable
|
|
819
|
+
VMI_WAITINH: VMI_WAITINH
|
|
820
|
+
Entering maintenance mode: Entering maintenance mode
|
|
821
|
+
|
|
765
822
|
asyncButton:
|
|
766
823
|
alt:
|
|
767
824
|
iconAlt: Async button icon
|
|
@@ -6407,6 +6464,9 @@ storageClass:
|
|
|
6407
6464
|
tooltip: By default the default storage class on the host Harvester cluster is used.
|
|
6408
6465
|
|
|
6409
6466
|
tableHeaders:
|
|
6467
|
+
claimedby: claimedby
|
|
6468
|
+
pod: pod
|
|
6469
|
+
volumeattributesclass: volumeattributesclass
|
|
6410
6470
|
assuredConcurrencyShares: Assured Concurrency Shares
|
|
6411
6471
|
accessKey: Access Key
|
|
6412
6472
|
addressType: Address Type
|
|
@@ -7563,7 +7623,35 @@ typeDescription:
|
|
|
7563
7623
|
logging.banzaicloud.io.output: An output defines which logging providers that logs can be sent to. The output needs to be in the same namespace as the flow that is using it.
|
|
7564
7624
|
group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
|
|
7565
7625
|
management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
|
|
7566
|
-
|
|
7626
|
+
kubevirt.io.virtualmachine: 云虚拟机是一种安全可靠、弹性可伸缩的云计算服务器,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。
|
|
7627
|
+
harvesterhci.io.volume: 虚拟磁盘具有高性能和低时延的特点,支持随机读写,可以像使用物理硬盘一样,在虚拟机上进行格式化并建立文件系统来使用块存储。
|
|
7628
|
+
harvesterhci.io.volumesnapshot: 虚拟磁盘快照功能通过捕获虚拟磁盘在特定时间点的状态,生成增量副本,支持快速回滚磁盘状态,为测试验证、容灾恢复提供高效解决方案
|
|
7629
|
+
harvesterhci.io.virtualmachinebackup: 虚拟机备份功能通过创建包含磁盘数据、配置信息的完整副本,支持跨环境恢复及长期数据保护,为系统故障或灾难提供可靠容灾方案。
|
|
7630
|
+
harvesterhci.io.schedulevmbackup: 虚拟机备份策略功能通过创建定时任务,对虚拟机进行完整备份或增量快照,为用户提供自动化的数据备份和容灾方案。
|
|
7631
|
+
harvesterhci.io.vmsnapshot: 虚拟机快照功能通过捕获特定时间点的系统状态,支持快速恢复虚拟机状态,为数据备份与系统调试提供灵活解决方案。
|
|
7632
|
+
harvesterhci.io.keypair: SSH密钥对是一种安全便捷的登录认证方式,您可以实现免密码远程登录,并在无需人工干预的情况下进行安全的自动化操作,实现服务器配置和应用程序部署的自动化。
|
|
7633
|
+
harvesterhci.io.networkattachmentdefinition: 快速构建云上数据中心网络,二层,三层网络为扁平网络,虚拟专有网络为...VPN等网络类型,可以通过专线/VPN等连接方式与传统数据中心组成一个按需定制的网络环境,实现应用的平滑迁移上云。
|
|
7634
|
+
loadbalancer.harvesterhci.io.ippool: 地址池是负载均衡器专用的内置 IP 地址管理解决方案。
|
|
7635
|
+
loadbalancer.harvesterhci.io.loadbalancer: 负载均衡器(Load Balancer)是用于在多个计算资源之间分配网络或应用流量的设备或软件。其主要目的是优化资源利用、最大化吞吐量、减少延迟,并确保容错配置。
|
|
7636
|
+
harvesterhci.io.virtualmachineimage: 镜像是创建虚拟机实例的基础模板,规格能够设定创建虚拟机的CPU、内存、磁盘等资源数量,在创建虚拟机实例时必须选择一个镜像以及规格。
|
|
7637
|
+
harvesterhci.io.virtualmachinetemplateversion: 虚拟机模版是用于快速部署具有相同配置的多个虚拟机的一个基础镜像。它包含了操作系统、预安装的应用程序以及一系列预先设定的配置参数。
|
|
7638
|
+
harvesterhci.io.host: 物理机管理通过资源整合、动态调整、统一管理和自动化运维,提高了资源利用率、业务灵活性、系统可靠性和安全性,同时降低了成本和能耗,是资源管理重要的实现手段。
|
|
7639
|
+
harvesterhci.io.storage: 存储管理简化了复杂架构,提升了存储性能与效率,确保了高可用性和数据安全性,支持虚拟化环境,降低了成本,并优化了数据保护策略,是数据中心存储管理的关键解决方案。
|
|
7640
|
+
network.harvesterhci.io.clusternetwork: 集群网络功能通过将集群内物理服务器和网卡组成多个逻辑网络,实现服务器之间的灵活网络互联,提供高可用、高性能、高灵活度的网络服务。
|
|
7641
|
+
devices.harvesterhci.io.sriovnetworkdevice: SR-IOV网卡功能通过 SR-IOV 技术实现物理网卡的虚拟划分,支持虚拟机直接访问独立虚拟网卡,提升网卡利用率同时,不降低网络性能,优化资源利用率。
|
|
7642
|
+
devices.harvesterhci.io.sriovgpudevice: GPU管理主要对图形处理单元(Graphics Processing Unit,GPU)的有效监控、配置和优化,以确保其高效、稳定地运行。GPU管理也可以在超算场景中的使用,其强大的并行处理能力和高内存带宽使其成为高性能计算的重要工具和实现方式。
|
|
7643
|
+
devices.harvesterhci.io.usbdevice: USB管理功能,通过设备直通技术,将物理 USB 设备直接映射至虚拟机,实现跨平台数据交互与外设资源共享。
|
|
7644
|
+
harvesterhci.io.monitoring.alertmanagerconfig: 支持对云资源(包括物理机、虚拟机、存储、网络等)的运行状态、性能指标以及安全事件进行持续监控,能够及时发现潜在问题并触发告警,确保运维团队能够迅速响应并解决问题,从而保障云服务的稳定性和安全性。
|
|
7645
|
+
harvesterhci.io.setting: 集群配置主要用于管理系统中的一些功能及配置参数。
|
|
7646
|
+
harvesterhci.io.secret: 密钥管理功能集成密钥生成、存储、访问控制等功能,能够为镜像和虚拟磁盘点加密存储提供安全密钥。
|
|
7647
|
+
devices.harvesterhci.io.pcidevice: PCI是Peripheral Component Interconnect(外围设备互连)的缩写,它是一种计算机总线标准,主要用于连接计算机内部的各种外部设备。
|
|
7648
|
+
management.cattle.io.setting: 统一配置平台基础选项与全局设置,支持CA证书、密码规则、域名、Token时效等核心配置。
|
|
7649
|
+
management.cattle.io.user: 用于管理用户账号,支持创建、维护用户信息,可设置用户权限、管理密码等,保障系统资源仅由授权用户访问,提升系统安全性。
|
|
7650
|
+
harvesterhci.io.management.cluster: 提供虚拟化集群的实时健康状态监控、版本号管理及资源负载管理,支持批量导入/删除集群、配置调优与权限分级功能,实现高效运维管控。
|
|
7651
|
+
harvesterhci.io.logging.clusterflow: 用于配置集群范围内的日志采集与流转规则,可匹配多个资源组的日志,并将日志转发至指定的集群日志外发目标,实现全局级的日志统一管理与路由。
|
|
7652
|
+
harvesterhci.io.logging.clusteroutput: 定义集群范围的日志输出目标,例如 Elasticsearch、Loki、S3、Kafka 等。可被多个集群日志配置引用,用于集中存储与分析集群级日志数据。
|
|
7653
|
+
harvesterhci.io.logging.flow: 用于配置资源组(命名空间)内的日志采集与流转规则,仅作用于当前资源组内的日志,并将日志转发至对应的资源组日志外发目标,便于分组级的日志管理。
|
|
7654
|
+
harvesterhci.io.logging.output: 定义资源组级别的日志输出目标,仅能被同一资源组下的日志配置引用,用于将该资源组内的日志发送至指定的存储或分析系统。
|
|
7567
7655
|
typeLabel:
|
|
7568
7656
|
management.cattle.io.oidcclient: |-
|
|
7569
7657
|
{count, plural,
|
|
@@ -8327,10 +8415,10 @@ advancedSettings:
|
|
|
8327
8415
|
'ui-default-landing': 'The default page users land on after login.'
|
|
8328
8416
|
'brand': Folder name for an alternative theme defined in '/assets/brand'
|
|
8329
8417
|
'hide-local-cluster': Hide the local cluster
|
|
8330
|
-
'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
|
|
8331
|
-
'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported or node-driver K3s or RKE2 clusters.
|
|
8418
|
+
# 'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
|
|
8419
|
+
# 'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported or node-driver K3s or RKE2 clusters.
|
|
8332
8420
|
'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
|
|
8333
|
-
'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
8421
|
+
# 'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
8334
8422
|
warnings:
|
|
8335
8423
|
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
8336
8424
|
editHelp:
|