dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.9
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/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 +216 -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/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 +19 -0
- package/assets/images/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 +63 -0
- package/assets/styles/app.scss +4 -0
- package/assets/styles/base/_basic.scss +2 -2
- 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/global/_button.scss +43 -25
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +45 -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 +56 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +66 -43
- package/assets/styles/vendor/vue-select.scss +22 -9
- package/assets/translations/en-us.yaml +28 -4
- package/assets/translations/zh-hans.yaml +452 -189
- 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 +26 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +1 -1
- package/components/CodeMirror.vue +20 -6
- package/components/ConsumptionGauge.vue +24 -5
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +9 -8
- 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 +22 -22
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +2 -1
- package/components/ExplorerMembers.vue +18 -3
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +112 -48
- 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 +1 -1
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +30 -11
- 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/index.vue +109 -24
- package/components/ResourceDetail/Masthead/legacy.vue +181 -38
- package/components/ResourceDetail/legacy.vue +32 -14
- package/components/ResourceList/Masthead.vue +226 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +24 -2
- package/components/SideNav.vue +74 -20
- package/components/SortableTable/THead.vue +33 -3
- package/components/SortableTable/index.vue +1016 -463
- 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 +47 -29
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +37 -13
- package/components/auth/RoleDetailEdit.vue +58 -7
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +316 -0
- package/components/form/ArrayList.vue +41 -33
- package/components/form/ArrayListGrouped.vue +10 -2
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +4 -4
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Footer.vue +11 -8
- package/components/form/InputWithSelect.vue +8 -5
- package/components/form/KeyValue.vue +47 -7
- package/components/form/LabeledSelect.vue +214 -242
- package/components/form/Labels.vue +3 -3
- package/components/form/MatchExpressions.vue +24 -7
- package/components/form/Members/ClusterPermissionsEditor.vue +1 -2
- package/components/form/Members/MembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +59 -20
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +4 -5
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +18 -17
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +3 -6
- package/components/form/Select.vue +5 -2
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/UnitInput.vue +8 -3
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +132 -99
- package/components/nav/Header.vue +124 -27
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +20 -17
- package/components/nav/TopLevelMenu.vue +182 -119
- package/components/nav/Type.vue +63 -41
- package/composables/useClickOutside.ts +1 -1
- package/config/private-label.js +15 -11
- package/config/product/auth.js +17 -7
- package/config/product/settings.js +19 -9
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/ScalePoolDownDialog.vue +2 -2
- 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 +31 -31
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- 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/webhook.vue +1 -1
- 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/token.vue +31 -12
- package/edit/workload/index.vue +4 -4
- 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/package.json +1 -1
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +220 -52
- package/pages/auth/setup.vue +142 -19
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +56 -5
- 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 +70 -30
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.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 +12 -8
- 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 +13 -5
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +12 -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/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 +5 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +32 -2
- package/types/shell/index.d.ts +78 -97
- package/utils/error.js +89 -8
- package/utils/errorTranslate.json +1351 -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
|
@@ -31,7 +31,7 @@ generic:
|
|
|
31
31
|
ifNotPresent: 如果不存在
|
|
32
32
|
never: 从不
|
|
33
33
|
labels: 标签
|
|
34
|
-
labelsAndAnnotations:
|
|
34
|
+
labelsAndAnnotations: 标签和注释
|
|
35
35
|
podSecurityAdmission: Pod 安全准入
|
|
36
36
|
links: 链接
|
|
37
37
|
loading: 正在加载…
|
|
@@ -122,7 +122,7 @@ locale:
|
|
|
122
122
|
none: (None)
|
|
123
123
|
|
|
124
124
|
nav:
|
|
125
|
-
harvesterDashboard:
|
|
125
|
+
harvesterDashboard: Cloud 仪表板
|
|
126
126
|
backToRancher: Cluster Manager
|
|
127
127
|
clusterTools: 集群工具
|
|
128
128
|
kubeconfig:
|
|
@@ -141,6 +141,7 @@ nav:
|
|
|
141
141
|
restoreSnapshot: 还原快照
|
|
142
142
|
rotateCertificates: 轮换证书
|
|
143
143
|
rotateEncryptionKeys: 轮换加密密钥
|
|
144
|
+
saveAsRKETemplate: 保存为 RKE 模板
|
|
144
145
|
takeSnapshot: 拍摄快照
|
|
145
146
|
group:
|
|
146
147
|
cluster: 集群
|
|
@@ -170,14 +171,14 @@ nav:
|
|
|
170
171
|
Scheduling: 调度
|
|
171
172
|
Storage: 存储
|
|
172
173
|
ns:
|
|
173
|
-
all:
|
|
174
|
+
all: 所有资源组
|
|
174
175
|
clusterLevel: 集群资源
|
|
175
176
|
namespace: "{name}"
|
|
176
|
-
namespaced:
|
|
177
|
+
namespaced: 资源组资源
|
|
177
178
|
orphan: 不在项目内
|
|
178
179
|
project: "项目名称: {name}"
|
|
179
|
-
system:
|
|
180
|
-
user:
|
|
180
|
+
system: 系统资源组
|
|
181
|
+
user: 用户资源组
|
|
181
182
|
apps: 应用
|
|
182
183
|
categories:
|
|
183
184
|
explore: 浏览集群
|
|
@@ -197,7 +198,7 @@ nav:
|
|
|
197
198
|
restoreCards: 恢复隐藏的卡片
|
|
198
199
|
userMenu:
|
|
199
200
|
preferences: 偏好设置
|
|
200
|
-
accountAndKeys:
|
|
201
|
+
accountAndKeys: 账号和API密钥
|
|
201
202
|
logOut: 登出
|
|
202
203
|
failWhale:
|
|
203
204
|
authMiddleware: 认证中间件
|
|
@@ -213,7 +214,7 @@ product:
|
|
|
213
214
|
apps: 应用
|
|
214
215
|
auth: 用户 & 认证
|
|
215
216
|
backup: Rancher 备份
|
|
216
|
-
|
|
217
|
+
cis: CIS Benchmark
|
|
217
218
|
ecm: Cluster Manager
|
|
218
219
|
explorer: 集群浏览器
|
|
219
220
|
fleet: 持续交付
|
|
@@ -310,7 +311,7 @@ about:
|
|
|
310
311
|
body: 生成响应时间以提供更具体的信息。
|
|
311
312
|
|
|
312
313
|
accountAndKeys:
|
|
313
|
-
title:
|
|
314
|
+
title: 账号和API密钥
|
|
314
315
|
account:
|
|
315
316
|
title: 账号
|
|
316
317
|
change: 更改密码
|
|
@@ -591,6 +592,88 @@ assignTo:
|
|
|
591
592
|
}
|
|
592
593
|
workspace: 工作空间
|
|
593
594
|
|
|
595
|
+
stateLabel:
|
|
596
|
+
Bound: 已绑定
|
|
597
|
+
Running: 运行中
|
|
598
|
+
Off: 关闭
|
|
599
|
+
Stopped: 关闭
|
|
600
|
+
Pending: 准备中
|
|
601
|
+
Failed: 失败
|
|
602
|
+
Paused: 暂停
|
|
603
|
+
Stopping: 停止中
|
|
604
|
+
Progressing: 处理中
|
|
605
|
+
Scheduling: 启动中
|
|
606
|
+
Terminating: 停止中
|
|
607
|
+
Scheduled: 启动中
|
|
608
|
+
Unknown: 未知
|
|
609
|
+
CrashLoopBackOff: 崩溃
|
|
610
|
+
Active: 活跃
|
|
611
|
+
Inactive: 不活跃
|
|
612
|
+
Ready: 就绪
|
|
613
|
+
Not Ready: 未就绪
|
|
614
|
+
Not ready: 未就绪
|
|
615
|
+
Degraded: 降级
|
|
616
|
+
Removing: 删除中
|
|
617
|
+
Validated: 验证通过
|
|
618
|
+
Validating: 验证中
|
|
619
|
+
Healthy: 健康
|
|
620
|
+
Warning: 警告
|
|
621
|
+
Error: 异常
|
|
622
|
+
Cordoned: 隔离中
|
|
623
|
+
Starting: 启动中
|
|
624
|
+
Uploading: 上传中
|
|
625
|
+
Downloading: 下载中
|
|
626
|
+
In-use: 使用中
|
|
627
|
+
Suspended: 暂停
|
|
628
|
+
Disabled: 禁用
|
|
629
|
+
Enabled: 启用
|
|
630
|
+
Maintenance: 维护中
|
|
631
|
+
Migrating: 迁移中
|
|
632
|
+
Restoring: 恢复中
|
|
633
|
+
Resizing: 调整中
|
|
634
|
+
Exporting: 导出中
|
|
635
|
+
Unavailable: 不可用
|
|
636
|
+
Unschedulable: 未调度
|
|
637
|
+
VMI_WAITINH: 等待中
|
|
638
|
+
Entering maintenance mode: 维护中
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
buttonLabel:
|
|
642
|
+
Stop: 停止
|
|
643
|
+
Restart: 重启
|
|
644
|
+
Start: 启动
|
|
645
|
+
Pause: 暂停
|
|
646
|
+
Soft Reboot: 软关机
|
|
647
|
+
Take Backup: 创建备份
|
|
648
|
+
Take Virtual Machine Snapshot: 创建快照
|
|
649
|
+
Edit Virtual Machine Quota: 修改配额
|
|
650
|
+
Create Schedule: 创建任务
|
|
651
|
+
Migrate: 迁移
|
|
652
|
+
Add Volume: 添加虚拟磁盘
|
|
653
|
+
Generate Template: 生成模版
|
|
654
|
+
View Logs: 查看日志
|
|
655
|
+
Edit Config: 编辑配置
|
|
656
|
+
Clone: 克隆
|
|
657
|
+
Remove: 删除
|
|
658
|
+
Export Image: 导出为镜像
|
|
659
|
+
Take napshot: 创建快照
|
|
660
|
+
Restore New: 恢复
|
|
661
|
+
Replace Existing: 恢复
|
|
662
|
+
promptRemove: 删除
|
|
663
|
+
Cordon: 隔离
|
|
664
|
+
Enable: 启用
|
|
665
|
+
Disable: 禁用
|
|
666
|
+
Disable Maintenance Mode: 关闭维护模式
|
|
667
|
+
Disable CPU Manager: 关闭CPU管理器
|
|
668
|
+
Enable Maintenance Mode: 开启维护模式
|
|
669
|
+
Enable CPU Manager: 开启CPU管理器
|
|
670
|
+
|
|
671
|
+
Errors:
|
|
672
|
+
changePassword:
|
|
673
|
+
Password must be at least 12 characters: 密码至少为12个字符
|
|
674
|
+
invalid current password: 当前的密码输入错误
|
|
675
|
+
|
|
676
|
+
|
|
594
677
|
asyncButton:
|
|
595
678
|
apply:
|
|
596
679
|
action: 应用
|
|
@@ -741,7 +824,7 @@ backupRestoreOperator:
|
|
|
741
824
|
label: 删除超时
|
|
742
825
|
tip: 在删除 Finalizers 强制删除之前,等待资源删除成功的秒数。
|
|
743
826
|
deployment:
|
|
744
|
-
rancherNamespace: Rancher ResourceSet
|
|
827
|
+
rancherNamespace: Rancher ResourceSet 资源组
|
|
745
828
|
size: 大小
|
|
746
829
|
storage:
|
|
747
830
|
label: 默认存储位置
|
|
@@ -759,7 +842,7 @@ backupRestoreOperator:
|
|
|
759
842
|
warning: '此 {type} 没有将其回收策略设置为 "保留"。如果卷被更改或未绑定,你的备份可能会丢失。'
|
|
760
843
|
encryption: 加密
|
|
761
844
|
encryptionConfigName:
|
|
762
|
-
backuptip: '<code>cattle-resources-system</code
|
|
845
|
+
backuptip: '<code>cattle-resources-system</code>资源组中具有<code>encryption-provider-config.yaml</code>密钥的任何密文。<br/>此文件的内容是还原此备份所必需的,Rancher Backup 不会存储这些内容。'
|
|
763
846
|
label: 加密配置密文
|
|
764
847
|
options:
|
|
765
848
|
none: 存储未加密的备份内容。
|
|
@@ -768,7 +851,7 @@ backupRestoreOperator:
|
|
|
768
851
|
warning: '此文件的内容是还原此备份必需的,Rancher Backup 不会存储这些内容。'
|
|
769
852
|
lastBackup: 上次备份
|
|
770
853
|
nextBackup: 下次备份
|
|
771
|
-
noResourceSet:
|
|
854
|
+
noResourceSet: 你必须在此资源组中定义一个 ResourceSet 来创建备份 CR。
|
|
772
855
|
prune:
|
|
773
856
|
label: 修剪
|
|
774
857
|
tip: 删除备份中不存在的 Rancher 管理的资源(推荐)
|
|
@@ -845,7 +928,7 @@ catalog:
|
|
|
845
928
|
chartUrls: Chart
|
|
846
929
|
keywords: 关键词
|
|
847
930
|
errors:
|
|
848
|
-
clusterToolExists: 此 Chart
|
|
931
|
+
clusterToolExists: 此 Chart 含有固定的资源组和名称。找到一个匹配的 <a href="{url}">应用</a>,任何修改都将应用于此应用。
|
|
849
932
|
global: 全局
|
|
850
933
|
charts:
|
|
851
934
|
all: 全部
|
|
@@ -866,6 +949,7 @@ catalog:
|
|
|
866
949
|
windowsIncompatible: 仅 Linux
|
|
867
950
|
versionWindowsIncompatible: 仅限 Linux 版本
|
|
868
951
|
header: Chart
|
|
952
|
+
featuredCharts: 精选 Chart
|
|
869
953
|
noCharts: '没有可用的 Chart,你有添加仓库吗?'
|
|
870
954
|
noWindows: 你的应用商店没有能够部署在具有 Windows 节点的集群的 Chart。
|
|
871
955
|
noWindowsAndLinux: 你的应用商店没有能部署在具有 Windows 和 Linux Worker 节点的集群的 Chart。
|
|
@@ -926,7 +1010,7 @@ catalog:
|
|
|
926
1010
|
other { 秒 }
|
|
927
1011
|
}
|
|
928
1012
|
wait: 等待
|
|
929
|
-
namespaceIsInProject: "这个 Chart
|
|
1013
|
+
namespaceIsInProject: "这个 Chart 的目标资源组<code>{namespace}</code>已经存在,不能添加到不同的项目中。"
|
|
930
1014
|
project: 安装到项目
|
|
931
1015
|
section:
|
|
932
1016
|
chartOptions: 编辑选项
|
|
@@ -946,8 +1030,8 @@ catalog:
|
|
|
946
1030
|
true { 应用 }
|
|
947
1031
|
false { Chart}
|
|
948
1032
|
}。首先设置 {vendor} 用来管理应用的基本信息。
|
|
949
|
-
nsCreationDescription: "
|
|
950
|
-
createNamespace: "
|
|
1033
|
+
nsCreationDescription: "如果你要把应用安装到新的资源组,在资源组字段中输入其名称,并选择它。"
|
|
1034
|
+
createNamespace: "将创建资源组 <code>{namespace}</code>。"
|
|
951
1035
|
clusterTplVersion:
|
|
952
1036
|
label: 版本
|
|
953
1037
|
subtext: 选择模板版本
|
|
@@ -977,7 +1061,7 @@ catalog:
|
|
|
977
1061
|
tableHeaders:
|
|
978
1062
|
action: 操作
|
|
979
1063
|
releaseName: 版本名称
|
|
980
|
-
releaseNamespace:
|
|
1064
|
+
releaseNamespace: 版本资源组
|
|
981
1065
|
repo:
|
|
982
1066
|
action:
|
|
983
1067
|
refresh: 刷新
|
|
@@ -1048,7 +1132,7 @@ chartHeading:
|
|
|
1048
1132
|
compliance:
|
|
1049
1133
|
addTest: 添加测试 ID
|
|
1050
1134
|
alertNeeded: |-
|
|
1051
|
-
必须在
|
|
1135
|
+
必须在 CIS Chart values.yaml 中开启告警。
|
|
1052
1136
|
这要求<a tabindex="0" href="{link}"> {vendor} 的 Monitoring 与 Alerting 应用</a>已经安装
|
|
1053
1137
|
,而且接收器和路由<a target="_blank" rel='noopener noreferrer nofollow' href='{docsBase}/how-to-guides/advanced-user-guides/monitoring-v2-configuration-guides/advanced-configuration/alertmanager'>已配置告警发送</a>。
|
|
1054
1138
|
alertOnComplete: 扫描完成告警
|
|
@@ -1132,7 +1216,7 @@ cluster:
|
|
|
1132
1216
|
label: vSphere
|
|
1133
1217
|
note: '<b>重要</b>:在附加配置标签中配置 vSphere 云提供商和存储提供商选项。'
|
|
1134
1218
|
harvester:
|
|
1135
|
-
label:
|
|
1219
|
+
label: Cloud
|
|
1136
1220
|
copyConfig: 将 KubeConfig 复制到剪切板
|
|
1137
1221
|
copiedConfig: 已将 KubeConfig 复制到剪切板
|
|
1138
1222
|
custom:
|
|
@@ -1262,7 +1346,7 @@ cluster:
|
|
|
1262
1346
|
</ul>
|
|
1263
1347
|
点击<a href="https://cloud.google.com/kubernetes-engine/docs/how-to/iam-integration" target="_blank" rel="noopener noreferrer nofollow">此处</a>查看更多角色相关的信息。
|
|
1264
1348
|
harvester:
|
|
1265
|
-
namespace:
|
|
1349
|
+
namespace: 资源组
|
|
1266
1350
|
cpu: CPU
|
|
1267
1351
|
memory: 内存
|
|
1268
1352
|
disk: 磁盘
|
|
@@ -1290,27 +1374,27 @@ cluster:
|
|
|
1290
1374
|
title: "网络数据:"
|
|
1291
1375
|
kubeconfigContent:
|
|
1292
1376
|
label: KubeconfigContent
|
|
1293
|
-
placeholder: '
|
|
1294
|
-
cluster: 导入的
|
|
1377
|
+
placeholder: '资源组/名称'
|
|
1378
|
+
cluster: 导入的 Cloud 集群
|
|
1295
1379
|
installGuestAgent: 安装访客代理
|
|
1296
1380
|
description:
|
|
1297
1381
|
label: 集群描述
|
|
1298
1382
|
placeholder: 输入可以描述该集群的文本
|
|
1299
1383
|
harvester:
|
|
1300
|
-
importNotice: 导入
|
|
1384
|
+
importNotice: 导入 Cloud 集群的方式:
|
|
1301
1385
|
warning:
|
|
1302
|
-
label: 这是一个
|
|
1386
|
+
label: 这是一个 Cloud 集群 - 请启用 Cloud 功能开关以对其进行管理。
|
|
1303
1387
|
state: 警告
|
|
1304
1388
|
cloudProvider:
|
|
1305
1389
|
incompatible:
|
|
1306
|
-
由于当前的
|
|
1390
|
+
由于当前的 Cloud 版本与所选的 RKE2 Kubernetes 版本不兼容,因此你无法选择 Cloud cloud provider。请单击 <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.suse.com/suse-Cloud/support-matrix/all-supported-versions">此处</a>查看支持的 Kubernetes 版本。
|
|
1307
1391
|
clusterWarning: |-
|
|
1308
1392
|
还有 {count, plural,
|
|
1309
|
-
=1 {1 个
|
|
1310
|
-
other { # 个
|
|
1393
|
+
=1 {1 个 Cloud 集群未显示}
|
|
1394
|
+
other { # 个 Cloud 集群未显示}
|
|
1311
1395
|
}
|
|
1312
1396
|
registration:
|
|
1313
|
-
step1: "1. 前往目标
|
|
1397
|
+
step1: "1. 前往目标 Cloud UI 的<code>运维管理 -> 集群配置 -> 高级配置</code>页面。"
|
|
1314
1398
|
step2: '2. 找到<code>cluster-registration-url</code>设置项,并点击<code><i class="icon icon-actions" ></i></code> -> <code>编辑设置</code>按钮。'
|
|
1315
1399
|
step3: "3. 输入以下注册 URL,并点击<code>保存</code>。"
|
|
1316
1400
|
step4: "注册 URL"
|
|
@@ -1353,7 +1437,7 @@ cluster:
|
|
|
1353
1437
|
noData: 没有预设的日志项目
|
|
1354
1438
|
name:
|
|
1355
1439
|
label: 集群名称
|
|
1356
|
-
placeholder:
|
|
1440
|
+
placeholder: 请输入集群名称
|
|
1357
1441
|
machineConfig:
|
|
1358
1442
|
banner:
|
|
1359
1443
|
updateInfo: 创建一个池用来更新主机配置
|
|
@@ -1671,6 +1755,7 @@ cluster:
|
|
|
1671
1755
|
rke2-k3-reprovisioning: '更改集群配置可能导致节点重新配置。详情请参见 <a target="blank" href="{docsBase}/how-to-guides/new-user-guides/launch-kubernetes-with-rancher/rke1-vs-rke2-differences#cluster-api" target="_blank" rel="noopener nofollow">文档</a>。'
|
|
1672
1756
|
desiredNodeGroupWarning: 没有可用于运行 Cluster Agent 的节点。要让集群变为 Active 状态,至少需要有 1 个可用的节点。
|
|
1673
1757
|
haveArgInfo: 所选 Kubernetes 版本的配置信息不可用。此屏幕中可用的选项将受到限制,你可能需要使用 YAML 编辑器。
|
|
1758
|
+
rkeTemplateUpgrade: 模板修订版 {name} 可用于升级
|
|
1674
1759
|
|
|
1675
1760
|
availabilityWarnings:
|
|
1676
1761
|
node: 节点 {name} 处于非活动状态
|
|
@@ -1774,12 +1859,11 @@ cluster:
|
|
|
1774
1859
|
docker: Docker
|
|
1775
1860
|
eks: Amazon EKS
|
|
1776
1861
|
exoscale: Exoscale
|
|
1777
|
-
sks: Exoscale SKS
|
|
1778
1862
|
gcp: Google
|
|
1779
1863
|
google: Google GCE
|
|
1780
1864
|
googlegke: Google GKE
|
|
1781
1865
|
gke: Google GKE
|
|
1782
|
-
harvester:
|
|
1866
|
+
harvester: Cloud
|
|
1783
1867
|
huaweicce: 华为 CCE
|
|
1784
1868
|
import: 通用
|
|
1785
1869
|
imported: 已导入
|
|
@@ -2035,6 +2119,12 @@ resource:
|
|
|
2035
2119
|
errors:
|
|
2036
2120
|
update: "更新 {name} 出错"
|
|
2037
2121
|
|
|
2122
|
+
codeMirror:
|
|
2123
|
+
escapeText: 按 Shift+Escape 键从编辑器中模糊
|
|
2124
|
+
keymap:
|
|
2125
|
+
tooltip: 键映射首选项
|
|
2126
|
+
indicatorToolip: "按键映射: {name}"
|
|
2127
|
+
|
|
2038
2128
|
cruResource:
|
|
2039
2129
|
backToForm: 返回表单编辑
|
|
2040
2130
|
backBody: 返回表单编辑不会保留对 YAML 做出的所有更改
|
|
@@ -2106,21 +2196,21 @@ fleet:
|
|
|
2106
2196
|
clusters:
|
|
2107
2197
|
harvester: |-
|
|
2108
2198
|
还有 {count, plural,
|
|
2109
|
-
=1 {1个
|
|
2110
|
-
other { #个
|
|
2199
|
+
=1 {1个 Cloud 集群未显示,因为它不能与持续交付一起使用。}
|
|
2200
|
+
other { #个 Cloud 集群未显示,因为它们不能与持续交付一起使用。}
|
|
2111
2201
|
}
|
|
2112
2202
|
tokens:
|
|
2113
2203
|
harvester: |-
|
|
2114
2204
|
{count, plural,
|
|
2115
|
-
=1 {1个 Token 未显示,因为它属于不能与持续交付一起使用的
|
|
2116
|
-
other {#个 Token 未显示,因为它属于不能与持续交付一起使用的
|
|
2205
|
+
=1 {1个 Token 未显示,因为它属于不能与持续交付一起使用的 Cloud 集群。}
|
|
2206
|
+
other {#个 Token 未显示,因为它属于不能与持续交付一起使用的 Cloud 集群。}
|
|
2117
2207
|
}
|
|
2118
2208
|
bundles:
|
|
2119
2209
|
resources: 资源
|
|
2120
2210
|
harvester: |-
|
|
2121
2211
|
{count, plural,
|
|
2122
|
-
=1 {1 个 Bundle 未显示,因为它属于不能与持续交付一起使用的
|
|
2123
|
-
other {# 个 Bundle 未显示,因为它属于不能与持续交付一起使用的
|
|
2212
|
+
=1 {1 个 Bundle 未显示,因为它属于不能与持续交付一起使用的 Cloud 集群。}
|
|
2213
|
+
other {# 个 Bundle 未显示,因为它属于不能与持续交付一起使用的 Cloud 集群。}
|
|
2124
2214
|
}
|
|
2125
2215
|
fleetSummary:
|
|
2126
2216
|
noClusters:
|
|
@@ -2186,8 +2276,8 @@ fleet:
|
|
|
2186
2276
|
label: Service Account 名称
|
|
2187
2277
|
placeholder: "(选填)在目标集群中使用 Service Account"
|
|
2188
2278
|
targetNamespace:
|
|
2189
|
-
label:
|
|
2190
|
-
placeholder: "
|
|
2279
|
+
label: 目标资源组
|
|
2280
|
+
placeholder: "(选填)要求所有资源都在此资源组内"
|
|
2191
2281
|
target:
|
|
2192
2282
|
selectLabel: 目标
|
|
2193
2283
|
advanced: 高级选项
|
|
@@ -2224,6 +2314,8 @@ fleet:
|
|
|
2224
2314
|
other {现有{total, number}个集群,与其中的{matched, number}个匹配,包括"{sample}"}
|
|
2225
2315
|
}
|
|
2226
2316
|
fdc:
|
|
2317
|
+
loadingChart: 正在加载 Chart 数据...
|
|
2318
|
+
renderingChart: 正在渲染 Chart...
|
|
2227
2319
|
id: ID
|
|
2228
2320
|
type: 类型
|
|
2229
2321
|
state: 状态
|
|
@@ -2233,12 +2325,12 @@ fleet:
|
|
|
2233
2325
|
errors: 错误
|
|
2234
2326
|
workspaces:
|
|
2235
2327
|
tabs:
|
|
2236
|
-
restrictions:
|
|
2328
|
+
restrictions: 允许的目标资源组
|
|
2237
2329
|
timeout: 工作空间创建超时。工作空间可能已创建,建议在创建另一个工作空间之前检查工作空间页面。
|
|
2238
2330
|
restrictions:
|
|
2239
2331
|
addTitle: 'allowedTargetNamespaces'
|
|
2240
2332
|
addLabel: 添加
|
|
2241
|
-
banner: "{count, plural, =0 {
|
|
2333
|
+
banner: "{count, plural, =0 { 在这里添加资源组会创建一个 GitRepoRestriction。} other { 只有 Git Repo Restriction 的 <code>allowedTargetNamespaces</code> 在此处管理,你可以对 Git Repo Restriction 进行其他更改。} }"
|
|
2242
2334
|
footer:
|
|
2243
2335
|
cnforums: 中文社区
|
|
2244
2336
|
docs: Rancher 官方文档
|
|
@@ -2266,14 +2358,14 @@ gatekeeperConstraint:
|
|
|
2266
2358
|
title: 标签选择器
|
|
2267
2359
|
namespaces:
|
|
2268
2360
|
sub:
|
|
2269
|
-
excludedNamespaces:
|
|
2270
|
-
namespaces:
|
|
2361
|
+
excludedNamespaces: 排除的资源组
|
|
2362
|
+
namespaces: 资源组
|
|
2271
2363
|
namespaceSelector:
|
|
2272
|
-
addNamespace:
|
|
2273
|
-
title:
|
|
2364
|
+
addNamespace: 添加资源组
|
|
2365
|
+
title: 资源组选择器
|
|
2274
2366
|
scope:
|
|
2275
2367
|
title: 范围
|
|
2276
|
-
title:
|
|
2368
|
+
title: 资源组
|
|
2277
2369
|
parameters:
|
|
2278
2370
|
addParameter: 添加参数
|
|
2279
2371
|
editAsForm: 以表单编辑
|
|
@@ -2353,7 +2445,7 @@ growl:
|
|
|
2353
2445
|
message: "在尝试第 #{tries} 次时恢复了与 {url} 的连接。"
|
|
2354
2446
|
title: Websocket 已重新连接
|
|
2355
2447
|
podSecurity:
|
|
2356
|
-
message: "创建此 Pod
|
|
2448
|
+
message: "创建此 Pod 将违反资源组的现有限制策略"
|
|
2357
2449
|
title: PodSecurity 违规
|
|
2358
2450
|
|
|
2359
2451
|
hpa:
|
|
@@ -2443,7 +2535,7 @@ hpa:
|
|
|
2443
2535
|
import:
|
|
2444
2536
|
title: 导入 YAML
|
|
2445
2537
|
defaultNamespace:
|
|
2446
|
-
label:
|
|
2538
|
+
label: 默认资源组
|
|
2447
2539
|
success: |-
|
|
2448
2540
|
已应用 {count, plural,
|
|
2449
2541
|
=1 {1个资源}
|
|
@@ -2692,7 +2784,21 @@ istio:
|
|
|
2692
2784
|
advanced: 高级选项
|
|
2693
2785
|
description: 描述
|
|
2694
2786
|
tracing: 启用 Jaeger 跟踪(有限)
|
|
2695
|
-
v1Warning: 在安装这个版本前,请卸载<code>istio-system</code>
|
|
2787
|
+
v1Warning: 在安装这个版本前,请卸载<code>istio-system</code> 资源组中的当前 Istio 版本。
|
|
2788
|
+
|
|
2789
|
+
jwt:
|
|
2790
|
+
title: JWT Authentication
|
|
2791
|
+
actions:
|
|
2792
|
+
activate: Enable
|
|
2793
|
+
deactivate: Disable
|
|
2794
|
+
refresh: Refresh
|
|
2795
|
+
state:
|
|
2796
|
+
enabled: Enabled
|
|
2797
|
+
disabled: Disabled
|
|
2798
|
+
headers:
|
|
2799
|
+
clusterName: Cluster Name
|
|
2800
|
+
updatedOn: JWT Enabled On
|
|
2801
|
+
clusterAge: Cluster Age
|
|
2696
2802
|
|
|
2697
2803
|
labels:
|
|
2698
2804
|
addLabel: 添加标签
|
|
@@ -2708,10 +2814,25 @@ labels:
|
|
|
2708
2814
|
hide: 隐藏系统标签
|
|
2709
2815
|
annotations:
|
|
2710
2816
|
title: 注释
|
|
2817
|
+
singular: Annotation
|
|
2818
|
+
|
|
2819
|
+
labelSelect:
|
|
2820
|
+
noOptions:
|
|
2821
|
+
empty: 暂无数据
|
|
2822
|
+
noMatch: 暂无数据
|
|
2823
|
+
pagination:
|
|
2824
|
+
counts: '{count} / {totalCount} items'
|
|
2825
|
+
more: 加载更多...
|
|
2826
|
+
labeledSelect:
|
|
2827
|
+
startTyping: 开始输入以定义项目
|
|
2828
|
+
pressEnter: 按 Enter 键添加 "{input}"
|
|
2829
|
+
|
|
2711
2830
|
|
|
2712
2831
|
landing:
|
|
2832
|
+
bannerImage: Homepage banner image
|
|
2833
|
+
homepage: Homepage
|
|
2713
2834
|
clusters:
|
|
2714
|
-
title: 集群
|
|
2835
|
+
title: Cloud 集群
|
|
2715
2836
|
provider: 提供商
|
|
2716
2837
|
kubernetesVersion: Kubernetes 版本
|
|
2717
2838
|
explorer: 浏览器
|
|
@@ -2732,6 +2853,8 @@ landing:
|
|
|
2732
2853
|
title: 商业支持
|
|
2733
2854
|
body: 了解商业支持
|
|
2734
2855
|
landingPrefs:
|
|
2856
|
+
title: 更改登录后显示的页面:
|
|
2857
|
+
userPrefs: 偏好设置
|
|
2735
2858
|
body: "登录后显示:"
|
|
2736
2859
|
options:
|
|
2737
2860
|
homePage: 主页
|
|
@@ -2741,7 +2864,7 @@ landing:
|
|
|
2741
2864
|
|
|
2742
2865
|
logging:
|
|
2743
2866
|
clusterFlow:
|
|
2744
|
-
noOutputsBanner:
|
|
2867
|
+
noOutputsBanner: 选定的资源组中没有集群输出
|
|
2745
2868
|
flow:
|
|
2746
2869
|
clusterOutputs:
|
|
2747
2870
|
doesntExistTooltip: 该集群输出不存在
|
|
@@ -2771,15 +2894,15 @@ logging:
|
|
|
2771
2894
|
placeholder: "默认值:任何容器"
|
|
2772
2895
|
namespaces:
|
|
2773
2896
|
title:
|
|
2774
|
-
include:
|
|
2775
|
-
exclude:
|
|
2776
|
-
placeholder: "
|
|
2897
|
+
include: 仅限特定的资源组
|
|
2898
|
+
exclude: 排除特定的资源组
|
|
2899
|
+
placeholder: "默认值:任何资源组"
|
|
2777
2900
|
|
|
2778
2901
|
filters:
|
|
2779
2902
|
label: 筛选
|
|
2780
2903
|
outputs:
|
|
2781
2904
|
doesntExistTooltip: 该集群输出不存在
|
|
2782
|
-
sameNamespaceError:
|
|
2905
|
+
sameNamespaceError: 输出必须位于与流相同的资源组中。
|
|
2783
2906
|
label: 输出
|
|
2784
2907
|
install:
|
|
2785
2908
|
k3sContainerEngine: K3S 容器引擎
|
|
@@ -2975,7 +3098,7 @@ logging:
|
|
|
2975
3098
|
overview:
|
|
2976
3099
|
poweredBy: Banzai Cloud
|
|
2977
3100
|
clusterLevel: 集群级别
|
|
2978
|
-
namespaceLevel:
|
|
3101
|
+
namespaceLevel: 资源组级别
|
|
2979
3102
|
provider: 提供商
|
|
2980
3103
|
splunk:
|
|
2981
3104
|
host: 主机
|
|
@@ -3040,14 +3163,14 @@ login:
|
|
|
3040
3163
|
password: 密码
|
|
3041
3164
|
loggingIn: 登录中...
|
|
3042
3165
|
loggedIn: 已登录
|
|
3043
|
-
loginWithLocal:
|
|
3166
|
+
loginWithLocal: 登录
|
|
3044
3167
|
useProvider: 使用 {provider} 用户
|
|
3045
3168
|
useNonLocal: 使用非本地用户
|
|
3046
3169
|
remember:
|
|
3047
3170
|
label: 记住用户名
|
|
3048
3171
|
|
|
3049
3172
|
logout:
|
|
3050
|
-
message:
|
|
3173
|
+
message: 正在退出登陆...
|
|
3051
3174
|
|
|
3052
3175
|
managementNode:
|
|
3053
3176
|
customName: 自定义名称
|
|
@@ -3110,9 +3233,9 @@ monitoring:
|
|
|
3110
3233
|
label: 补充密文
|
|
3111
3234
|
existing: 选择现有的配置密文
|
|
3112
3235
|
info: |
|
|
3113
|
-
<span class="text-bold">创建默认配置</span>。在部署这个 Chart 时,将在<pre class='inline-block m-0'>cattle-monitoring-system</pre>
|
|
3236
|
+
<span class="text-bold">创建默认配置</span>。在部署这个 Chart 时,将在<pre class='inline-block m-0'>cattle-monitoring-system</pre> 资源组中创建一个包含 Alertmanager 配置的密文,名称为<pre class='inline-block m-0'>alertmanager-rancher-monitoring-alertmanager</pre>。默认情况下,在卸载或升级此 Chart 时,此密文均不会被修改。<br />
|
|
3114
3237
|
部署这个 Chart 之后,你需要在 UI 中编辑密文,从而添加 Alertmanager 用于发送告警的自定义通知配置。<br /> <br />
|
|
3115
|
-
<span class="text-bold">选择一个现有的配置密文</span>:你必须指定一个存在于<pre class='inline-block m-0'>cattle-monitoring-system</pre
|
|
3238
|
+
<span class="text-bold">选择一个现有的配置密文</span>:你必须指定一个存在于<pre class='inline-block m-0'>cattle-monitoring-system</pre>资源组内的密文。如果资源组不存在,你将无法选择现有的密钥。
|
|
3116
3239
|
label: Alertmanager 密文
|
|
3117
3240
|
new: 创建默认配置
|
|
3118
3241
|
radio:
|
|
@@ -3189,11 +3312,11 @@ monitoring:
|
|
|
3189
3312
|
adminApi: Admin API
|
|
3190
3313
|
evaluation: 评估间隔
|
|
3191
3314
|
ignoreNamespaceSelectors:
|
|
3192
|
-
help: '
|
|
3193
|
-
label:
|
|
3315
|
+
help: '如果忽略资源组选择器,集群管理员可以限制团队监视资源组之外的授权资源。然而,这会影响需要跨资源组抓取监控数据的应用(例如Istio)的功能。'
|
|
3316
|
+
label: 资源组选择器
|
|
3194
3317
|
radio:
|
|
3195
|
-
enforced: '
|
|
3196
|
-
ignored: '
|
|
3318
|
+
enforced: '使用:监控可以访问资源组字段匹配的资源组中的资源'
|
|
3319
|
+
ignored: '忽略:监控只能访问它们所在资源组中的资源'
|
|
3197
3320
|
limits:
|
|
3198
3321
|
cpu: CPU 限制
|
|
3199
3322
|
memory: 内存限制
|
|
@@ -3253,24 +3376,24 @@ monitoring:
|
|
|
3253
3376
|
monitors: 监控
|
|
3254
3377
|
projectMonitors: 项目监控
|
|
3255
3378
|
alertmanagerConfig:
|
|
3256
|
-
description:
|
|
3257
|
-
empty:
|
|
3379
|
+
description: 如果要配置用于项目告警和集群告警的路由和接收器,你可以在监控告警资源中进行配置。
|
|
3380
|
+
empty: 还没有为任何可访问的资源组配置告警。
|
|
3258
3381
|
getStarted: 单击“创建”开始配置告警。
|
|
3259
|
-
receiverTooltip:
|
|
3260
|
-
deprecationWarning: 路由和接收器资源已弃用。路由和接收器不能在此页面上作为单独的 Kubernetes
|
|
3382
|
+
receiverTooltip: 此路由会将告警发送到选定的接收器,该接收器必须在同一个监控告警中定义。
|
|
3383
|
+
deprecationWarning: 路由和接收器资源已弃用。路由和接收器不能在此页面上作为单独的 Kubernetes 资源进行管理。它们应配置为监控告警资源中的 YAML 字段。
|
|
3261
3384
|
routeInfo: 此表单支持配置一个将流量定向到接收器的路由。通过在 YAML 中配置子路由,你可以将告警定向到更多接收器。
|
|
3262
3385
|
receiverFormNames:
|
|
3263
|
-
create:
|
|
3264
|
-
edit:
|
|
3265
|
-
editYaml:
|
|
3266
|
-
detail:
|
|
3267
|
-
disabledReceiverButton:
|
|
3268
|
-
error:
|
|
3386
|
+
create: 在监控告警中创建接收器
|
|
3387
|
+
edit: 在监控告警中编辑接收器
|
|
3388
|
+
editYaml: 编辑监控告警
|
|
3389
|
+
detail: 监控告警中的接收器
|
|
3390
|
+
disabledReceiverButton: 创建监控告警后就可以使用接收器
|
|
3391
|
+
error: 保存监控告警时出错
|
|
3269
3392
|
email:
|
|
3270
3393
|
username: 认证用户名
|
|
3271
|
-
password: 具有 Auth
|
|
3394
|
+
password: 具有 Auth 密码的密钥
|
|
3272
3395
|
slack:
|
|
3273
|
-
apiUrl:
|
|
3396
|
+
apiUrl: 有SlackWebhook地址的密文
|
|
3274
3397
|
pagerDuty:
|
|
3275
3398
|
routingKey: 具有路由密钥的密文
|
|
3276
3399
|
serviceKey: 具有 Service Key 的密文
|
|
@@ -3356,11 +3479,11 @@ alertmanagerConfigReceiver:
|
|
|
3356
3479
|
name: 接收器名称
|
|
3357
3480
|
addButton: 添加接收器
|
|
3358
3481
|
receivers: 接收器
|
|
3359
|
-
namespaceWarning:
|
|
3482
|
+
namespaceWarning: 找不到用于获取密文的资源组,无法渲染密文选择器。
|
|
3360
3483
|
receiverTypes: "可以在表单中编辑以下接收器类型:Email、Slack、PagerDuty、Opsgenie 和 Webhook。如果是其他类型的接收器,则编辑 AlertmanagerConfig YAML。"
|
|
3361
3484
|
slack:
|
|
3362
3485
|
webhookUrl: Webhook URL
|
|
3363
|
-
apiUrlTooltip: 包含 Slack webhook URL 的 Secret Key。该密钥需要与 AlertmanagerConfig
|
|
3486
|
+
apiUrlTooltip: 包含 Slack webhook URL 的 Secret Key。该密钥需要与 AlertmanagerConfig 对象位于同一资源组中,并且可由 Prometheus Operator 访问。
|
|
3364
3487
|
monitoringRoute:
|
|
3365
3488
|
groups:
|
|
3366
3489
|
label: 分组依据
|
|
@@ -3393,16 +3516,16 @@ monitoringRoute:
|
|
|
3393
3516
|
|
|
3394
3517
|
moveModal:
|
|
3395
3518
|
title: 移动到新的项目?
|
|
3396
|
-
description: '
|
|
3519
|
+
description: '你正在移动下列资源组:'
|
|
3397
3520
|
moveButtonLabel: 移动
|
|
3398
3521
|
targetProject: 目标项目
|
|
3399
3522
|
|
|
3400
3523
|
nameNsDescription:
|
|
3401
3524
|
name:
|
|
3402
3525
|
label: 名称
|
|
3403
|
-
placeholder: '
|
|
3526
|
+
placeholder: '请输入名称'
|
|
3404
3527
|
namespace:
|
|
3405
|
-
label:
|
|
3528
|
+
label: 资源组
|
|
3406
3529
|
placeholder: ''
|
|
3407
3530
|
workspace:
|
|
3408
3531
|
label: 工作空间
|
|
@@ -3412,6 +3535,7 @@ nameNsDescription:
|
|
|
3412
3535
|
placeholder: 输入可以描述该资源的文本
|
|
3413
3536
|
|
|
3414
3537
|
namespace:
|
|
3538
|
+
cancelCreateAriaLabel: 取消创建命名空间
|
|
3415
3539
|
containerResourceLimit: 容器资源限制
|
|
3416
3540
|
resourceQuotas: 资源配额
|
|
3417
3541
|
project:
|
|
@@ -3423,10 +3547,10 @@ namespace:
|
|
|
3423
3547
|
move: 移动
|
|
3424
3548
|
total: 总计
|
|
3425
3549
|
workloads: 工作负载
|
|
3426
|
-
label:
|
|
3427
|
-
selectNamespace:
|
|
3428
|
-
createNamespace:
|
|
3429
|
-
selectOrCreate:
|
|
3550
|
+
label: 资源组
|
|
3551
|
+
selectNamespace: 选择资源组
|
|
3552
|
+
createNamespace: 创建新的资源组
|
|
3553
|
+
selectOrCreate: 选择或创建资源组
|
|
3430
3554
|
resourceStates:
|
|
3431
3555
|
success: '活动'
|
|
3432
3556
|
info: '转换中'
|
|
@@ -3449,8 +3573,8 @@ namespaceFilter:
|
|
|
3449
3573
|
}
|
|
3450
3574
|
|
|
3451
3575
|
namespaceList:
|
|
3452
|
-
selectLabel:
|
|
3453
|
-
addLabel:
|
|
3576
|
+
selectLabel: 资源组
|
|
3577
|
+
addLabel: 添加资源组
|
|
3454
3578
|
|
|
3455
3579
|
navLink:
|
|
3456
3580
|
name:
|
|
@@ -3471,7 +3595,7 @@ navLink:
|
|
|
3471
3595
|
placeholder: '例如:https://rancher.com'
|
|
3472
3596
|
toService:
|
|
3473
3597
|
service:
|
|
3474
|
-
label:
|
|
3598
|
+
label: 服务(资源组/名称)
|
|
3475
3599
|
placeholder: '例如:cattle-system/rancher-webhook'
|
|
3476
3600
|
path:
|
|
3477
3601
|
label: 路径
|
|
@@ -3521,7 +3645,7 @@ networkpolicy:
|
|
|
3521
3645
|
label: 标签 & 注释
|
|
3522
3646
|
rules:
|
|
3523
3647
|
pod: Pod
|
|
3524
|
-
namespace:
|
|
3648
|
+
namespace: 资源组
|
|
3525
3649
|
ruleLabel: 规则 {index}
|
|
3526
3650
|
addPort: 添加允许的端口
|
|
3527
3651
|
type: 规则类型
|
|
@@ -3547,9 +3671,9 @@ networkpolicy:
|
|
|
3547
3671
|
podSelector:
|
|
3548
3672
|
label: Pod 选择器
|
|
3549
3673
|
namespaceSelector:
|
|
3550
|
-
label:
|
|
3674
|
+
label: 资源组选择器
|
|
3551
3675
|
namespaceAndPodSelector:
|
|
3552
|
-
label:
|
|
3676
|
+
label: 资源组/Pod 选择器
|
|
3553
3677
|
config:
|
|
3554
3678
|
label: 配置
|
|
3555
3679
|
selectors:
|
|
@@ -3565,17 +3689,17 @@ networkpolicy:
|
|
|
3565
3689
|
matchingNamespaces:
|
|
3566
3690
|
matchesSome: |-
|
|
3567
3691
|
{matched, plural,
|
|
3568
|
-
=0 {匹配 {total, number}
|
|
3569
|
-
=1 {匹配 {total, number}
|
|
3570
|
-
other {匹配 {total, number}
|
|
3692
|
+
=0 {匹配 {total, number} 个资源组中的 0 个}
|
|
3693
|
+
=1 {匹配 {total, number} 个资源组中的 1 个:"{sample}"}
|
|
3694
|
+
other {匹配 {total, number} 个资源组中的 {matched, number} 个,包括 "{sample}"}
|
|
3571
3695
|
}
|
|
3572
3696
|
matchingNamespacesAndPods:
|
|
3573
|
-
tooltip:
|
|
3697
|
+
tooltip: 指定资源组选择器和 Pod 选择器的单条规则,用于选择特定资源组中的特定 Pod
|
|
3574
3698
|
matchesSome: |-
|
|
3575
3699
|
{matchedNamespaces, plural,
|
|
3576
|
-
=0 { 在 0
|
|
3577
|
-
=1 { 在 1
|
|
3578
|
-
other { 在 {matchedNamespaces, number}
|
|
3700
|
+
=0 { 在 0 个资源组中(总共 {totalNamespaces, number} 个)}
|
|
3701
|
+
=1 { 在 1 个资源组(总共 {totalNamespaces, number} 个)"{sampleNamespaces}" 中}
|
|
3702
|
+
other { 在 {matchedNamespaces, number} 个资源组中(总共 {totalNamespaces, number} 个),包括 "{sampleNamespaces}"}
|
|
3579
3703
|
},{matchedPods, plural,
|
|
3580
3704
|
=0 {匹配 {totalPods, number} 个 Pod 中的 0 个 }
|
|
3581
3705
|
=1 {匹配 {totalPods, number} 个 Pod 中的 1 个:"{samplePods}"}
|
|
@@ -3674,7 +3798,7 @@ persistentVolume:
|
|
|
3674
3798
|
label: 密文名称
|
|
3675
3799
|
placeholder: 例如:secret
|
|
3676
3800
|
secretNamespace:
|
|
3677
|
-
label:
|
|
3801
|
+
label: 密文所在的资源组
|
|
3678
3802
|
placeholder: 例如:default
|
|
3679
3803
|
monitors:
|
|
3680
3804
|
add: 添加监控
|
|
@@ -3704,31 +3828,31 @@ persistentVolume:
|
|
|
3704
3828
|
label: 节点发布密文名称
|
|
3705
3829
|
placeholder: 例如:secret
|
|
3706
3830
|
nodePublishSecretNamespace:
|
|
3707
|
-
label:
|
|
3831
|
+
label: 节点发布密文资源组
|
|
3708
3832
|
placeholder: 例如:default
|
|
3709
3833
|
nodeStageSecretName:
|
|
3710
3834
|
label: 节点暂存密文名称
|
|
3711
3835
|
placeholder: 例如:secret
|
|
3712
3836
|
nodeStageSecretNamespace:
|
|
3713
|
-
label:
|
|
3837
|
+
label: 节点暂存密文资源组
|
|
3714
3838
|
placeholder: 例如:default
|
|
3715
3839
|
controllerExpandSecretName:
|
|
3716
3840
|
label: Controller 展开密文名称
|
|
3717
3841
|
placeholder: 例如:secret
|
|
3718
3842
|
controllerExpandSecretNamespace:
|
|
3719
|
-
label: Controller
|
|
3843
|
+
label: Controller 展开密文资源组
|
|
3720
3844
|
placeholder: 例如:default
|
|
3721
3845
|
controllerPublishSecretName:
|
|
3722
3846
|
label: Controller 发布密文名称
|
|
3723
3847
|
placeholder: 例如:secret
|
|
3724
3848
|
controllerPublishSecretNamespace:
|
|
3725
|
-
label: Controller
|
|
3849
|
+
label: Controller 发布密文资源组
|
|
3726
3850
|
placeholder: 例如:default
|
|
3727
3851
|
drivers:
|
|
3728
3852
|
disk-csi-azure-com: Azure 磁盘 (CSI)
|
|
3729
3853
|
file-csi-azure-com: Azure 文件 (CSI)
|
|
3730
3854
|
driver-longhorn-io: Longhorn (CSI)
|
|
3731
|
-
driver-harvesterhci-io:
|
|
3855
|
+
driver-harvesterhci-io: Cloud (CSI)
|
|
3732
3856
|
nfs-csi-k8s-io: NFS (CSI)
|
|
3733
3857
|
ebs-csi-aws-com: AWS Elastic Block Store (CSI)
|
|
3734
3858
|
rbd-csi-ceph-com: Ceph RBD (CSI)
|
|
@@ -3876,7 +4000,7 @@ persistentVolume:
|
|
|
3876
4000
|
label: 卷名称
|
|
3877
4001
|
placeholder: 例如:vol
|
|
3878
4002
|
volumeNamespace:
|
|
3879
|
-
label:
|
|
4003
|
+
label: 卷资源组
|
|
3880
4004
|
placeholder: 例如:default
|
|
3881
4005
|
nfs:
|
|
3882
4006
|
label: NFS 共享
|
|
@@ -4075,7 +4199,7 @@ plugins:
|
|
|
4075
4199
|
label: 商店镜像参考
|
|
4076
4200
|
placeholder: "例如:hub.docker.io/example-org/my-image:latest"
|
|
4077
4201
|
secrets:
|
|
4078
|
-
banner: "如果托管目录镜像的仓库需要拉取 Secret
|
|
4202
|
+
banner: "如果托管目录镜像的仓库需要拉取 Secret,则必须在以下资源组中创建它们:<pre>cattle-ui-plugin-system</pre>"
|
|
4079
4203
|
banner: 这将创建 Deployment、Service 和 Helm 仓库来服务扩展 Chart。
|
|
4080
4204
|
imageVersion:
|
|
4081
4205
|
title: 找不到镜像版本
|
|
@@ -4180,7 +4304,7 @@ podSecurityAdmission:
|
|
|
4180
4304
|
warn: 警告
|
|
4181
4305
|
usernames: 用户名
|
|
4182
4306
|
runtimeClasses: RuntimeClass
|
|
4183
|
-
namespaces:
|
|
4307
|
+
namespaces: 资源组
|
|
4184
4308
|
privileged: privileged
|
|
4185
4309
|
baseline: baseline
|
|
4186
4310
|
restricted: restricted
|
|
@@ -4188,7 +4312,7 @@ podSecurityAdmission:
|
|
|
4188
4312
|
placeholder: '版本(默认:latest)'
|
|
4189
4313
|
exemptions:
|
|
4190
4314
|
title: 豁免
|
|
4191
|
-
description: 允许为特定的用户名、RuntimeClassName
|
|
4315
|
+
description: 允许为特定的用户名、RuntimeClassName 和资源组创建 Pod,否则它们会被上方设置的策略禁止。
|
|
4192
4316
|
placeholder: 输入以逗号分隔的 {psaExemptionsControl} 列表
|
|
4193
4317
|
prefs:
|
|
4194
4318
|
title: 偏好设置
|
|
@@ -4226,7 +4350,7 @@ prefs:
|
|
|
4226
4350
|
advFeatures:
|
|
4227
4351
|
title: 高级功能
|
|
4228
4352
|
viewInApi: 启用“在 API 中查看”
|
|
4229
|
-
allNamespaces: 显示由 Rancher 管理的 system
|
|
4353
|
+
allNamespaces: 显示由 Rancher 管理的 system 资源组(不要编辑或删除)
|
|
4230
4354
|
themeShortcut: 使用快捷键(shift+T)来切换深色/浅色主题
|
|
4231
4355
|
pluginDeveloper: 启用扩展开发者功能
|
|
4232
4356
|
hideDesc:
|
|
@@ -4309,7 +4433,7 @@ projectMembers:
|
|
|
4309
4433
|
custom:
|
|
4310
4434
|
label: 自定义
|
|
4311
4435
|
description: 为该用户自定义角色。
|
|
4312
|
-
createNs:
|
|
4436
|
+
createNs: 创建资源组
|
|
4313
4437
|
configmapsManage: 管理 ConfigMaps
|
|
4314
4438
|
ingressManage: 管理 Ingress
|
|
4315
4439
|
projectcatalogsManage: 管理项目应用商店
|
|
@@ -4331,12 +4455,12 @@ projectMembers:
|
|
|
4331
4455
|
workloadsView: 查看工作负载
|
|
4332
4456
|
|
|
4333
4457
|
projectNamespaces:
|
|
4334
|
-
createNamespace:
|
|
4458
|
+
createNamespace: 创建资源组
|
|
4335
4459
|
createProject: 创建项目
|
|
4336
|
-
label:
|
|
4337
|
-
noNamespaces:
|
|
4338
|
-
noProjectNoNamespaces:
|
|
4339
|
-
isIstioInjectionEnabled:
|
|
4460
|
+
label: 项目/资源组
|
|
4461
|
+
noNamespaces: 没有定义的资源组。
|
|
4462
|
+
noProjectNoNamespaces: 所有资源组都在一个项目中
|
|
4463
|
+
isIstioInjectionEnabled: 为此资源组启用了 Istio 自动 Sidecar 注入
|
|
4340
4464
|
|
|
4341
4465
|
prometheusRule:
|
|
4342
4466
|
alertingRules:
|
|
@@ -4405,19 +4529,20 @@ promptScaleMachineDown:
|
|
|
4405
4529
|
retainedMachine2: <b>{ name }</b> 会保留
|
|
4406
4530
|
|
|
4407
4531
|
promptRemove:
|
|
4408
|
-
title:
|
|
4532
|
+
title: 提示
|
|
4409
4533
|
andOthers: |-
|
|
4410
4534
|
{count, plural,
|
|
4411
4535
|
=0 {.}
|
|
4412
4536
|
=1 { 还有另<b>一个</b>。}
|
|
4413
4537
|
other { 还有另外<b>{count}个</b>。}
|
|
4414
4538
|
}
|
|
4415
|
-
attemptingToRemove: "你正在试图删除 {type}"
|
|
4539
|
+
# attemptingToRemove: "你正在试图删除 {type}"
|
|
4540
|
+
attemptingToRemove: "请确认是否删除{type}"
|
|
4416
4541
|
attemptingToRemoveAuthConfig: "你正在尝试禁用此 Auth Provider。<br><br> 请注意,集群角色模板绑定、项目角色模板绑定、全局角色绑定、用户和 Token 都会被删除。<br><br> 你确定要继续吗?"
|
|
4417
4542
|
protip: "提示:按住 {alternateLabel} 键的同时单击删除,以绕过此确认。"
|
|
4418
4543
|
confirmName: "在下方输入 <b>{nameToMatch}</b> 以确认:"
|
|
4419
|
-
deleteAssociatedNamespaces: "
|
|
4420
|
-
willDeleteAssociatedNamespaces: "
|
|
4544
|
+
deleteAssociatedNamespaces: "同时删除此项目中的资源组:"
|
|
4545
|
+
willDeleteAssociatedNamespaces: "项目中的所有资源组也都会被删除:"
|
|
4421
4546
|
confirmRelatedResource: "删除 {type} 将删除这个 {type} 上的所有资源,此过程不可逆。你确定要继续删除 {names} 吗?"
|
|
4422
4547
|
promptConfirmation: "缩减时不再提示确认。"
|
|
4423
4548
|
|
|
@@ -4446,6 +4571,12 @@ promptRollback:
|
|
|
4446
4571
|
multipleWorkloadError: "一次只能回滚一个工作负载。"
|
|
4447
4572
|
singleRevisionBanner: 没有可用于回滚的修订版本。
|
|
4448
4573
|
|
|
4574
|
+
promptSaveAsRKETemplate:
|
|
4575
|
+
title: 将 {cluster} 转换为新的 RKE 模板
|
|
4576
|
+
name: 集群模板名称
|
|
4577
|
+
description: 创建新的集群模板,并使用当前集群配置发起修改。
|
|
4578
|
+
warning: 此操作将对集群进行修改,即把新创建的集群模板和修改应用到集群中。此操作不能撤销。
|
|
4579
|
+
|
|
4449
4580
|
promptRotateEncryptionKey:
|
|
4450
4581
|
title: 轮换加密密钥
|
|
4451
4582
|
description: 上次备份 {name} 的备份时间为 {date}
|
|
@@ -4483,7 +4614,7 @@ rbac:
|
|
|
4483
4614
|
grantResources:
|
|
4484
4615
|
label: 授权资源
|
|
4485
4616
|
noApiGroupClusterScope: 核心 K8s API,集群内
|
|
4486
|
-
noApiGroupNamespaceScope: 核心 K8s API
|
|
4617
|
+
noApiGroupNamespaceScope: 核心 K8s API,资源组内
|
|
4487
4618
|
deprecatedLabel: (已弃用)
|
|
4488
4619
|
resourceOptionInfo: 并不是每个 Rancher 管理的 Kubernetes 集群中可用资源都列在了资源选项中。高级用例可能要求手动输入资源和 API 组。
|
|
4489
4620
|
tableHeaders:
|
|
@@ -4503,8 +4634,8 @@ rbac:
|
|
|
4503
4634
|
yes: "是:创建新集群的默认角色"
|
|
4504
4635
|
defaultLabel: 集群创建者的默认角色
|
|
4505
4636
|
NAMESPACE:
|
|
4506
|
-
createButton:
|
|
4507
|
-
label:
|
|
4637
|
+
createButton: 创建项目或资源组的角色
|
|
4638
|
+
label: 项目或资源组
|
|
4508
4639
|
yes: "是:创建新项目的默认角色"
|
|
4509
4640
|
defaultLabel: 项目创建者的默认角色
|
|
4510
4641
|
RBAC_ROLE:
|
|
@@ -4613,7 +4744,7 @@ resourceDetail:
|
|
|
4613
4744
|
description: 描述
|
|
4614
4745
|
endpoints: 端点
|
|
4615
4746
|
labels: 标签
|
|
4616
|
-
namespaces:
|
|
4747
|
+
namespaces: 资源组
|
|
4617
4748
|
ownerReferences: |-
|
|
4618
4749
|
{count, plural,
|
|
4619
4750
|
=1 {所有者}
|
|
@@ -4645,7 +4776,7 @@ resourceDetail:
|
|
|
4645
4776
|
sensitive:
|
|
4646
4777
|
hide: 隐藏敏感信息
|
|
4647
4778
|
show: 显示敏感信息
|
|
4648
|
-
namespace:
|
|
4779
|
+
namespace: 资源组
|
|
4649
4780
|
workspace: 工作空间
|
|
4650
4781
|
project: 项目
|
|
4651
4782
|
detail: 详情
|
|
@@ -4661,15 +4792,15 @@ resourceList:
|
|
|
4661
4792
|
create: 创建
|
|
4662
4793
|
createFromYaml: 使用 YAML 文件创建
|
|
4663
4794
|
createResource: "创建 {resourceName}"
|
|
4664
|
-
nsFiltering: "
|
|
4665
|
-
nsFilterToolTip: "
|
|
4795
|
+
nsFiltering: "请使用上面的过滤器选择一个或多个资源组或项目。"
|
|
4796
|
+
nsFilterToolTip: "仅限于过滤项目和资源组"
|
|
4666
4797
|
resourceLoadingIndicator:
|
|
4667
4798
|
loading: 正在加载
|
|
4668
4799
|
|
|
4669
4800
|
resourceTable:
|
|
4670
4801
|
groupBy:
|
|
4671
4802
|
none: 简单列表
|
|
4672
|
-
namespace:
|
|
4803
|
+
namespace: 按资源组分组
|
|
4673
4804
|
project: 按项目分组
|
|
4674
4805
|
node: 按节点分组
|
|
4675
4806
|
role: 按角色分组
|
|
@@ -4677,10 +4808,10 @@ resourceTable:
|
|
|
4677
4808
|
groupLabel:
|
|
4678
4809
|
cluster: "<span>集群:</span> {name}"
|
|
4679
4810
|
notInACluster: 不在集群中
|
|
4680
|
-
namespace: "<span
|
|
4811
|
+
namespace: "<span>资源组:</span> {name}"
|
|
4681
4812
|
notInAMachinePool: "不在 Deployment 中"
|
|
4682
4813
|
machinePool: "<span>节点池:</span> {name}"
|
|
4683
|
-
notInANamespace:
|
|
4814
|
+
notInANamespace: 不在资源组内
|
|
4684
4815
|
notInAProject: 不在项目内
|
|
4685
4816
|
project: "<span>项目:</span> {name}"
|
|
4686
4817
|
notInAWorkspace: 不在工作空间内
|
|
@@ -4702,7 +4833,7 @@ resourceTabs:
|
|
|
4702
4833
|
|
|
4703
4834
|
resourceYaml:
|
|
4704
4835
|
errors:
|
|
4705
|
-
namespaceRequired:
|
|
4836
|
+
namespaceRequired: 这个资源是有资源组的,所以必须提供一个资源组。
|
|
4706
4837
|
buttons:
|
|
4707
4838
|
continue: 继续编辑
|
|
4708
4839
|
edit: 编辑 YAML
|
|
@@ -4807,7 +4938,7 @@ selectOrCreateAuthSecret:
|
|
|
4807
4938
|
basic:
|
|
4808
4939
|
username: 用户名
|
|
4809
4940
|
password: 密码
|
|
4810
|
-
namespaceGroup: "
|
|
4941
|
+
namespaceGroup: "资源组:{name}"
|
|
4811
4942
|
chooseExisting: "选择一个现有的密文:"
|
|
4812
4943
|
createSsh: 创建 SSH 密钥密文
|
|
4813
4944
|
createBasic: 创建 HTTP 基本身份认证密文
|
|
@@ -4942,7 +5073,7 @@ setup:
|
|
|
4942
5073
|
defaultPassword:
|
|
4943
5074
|
intro: 这是你第一次访问 {vendor}。如果你预先设置了 Bootstrap 密码,请在此处输入。否则我们会为你生成一个随机密码。找到它:<br/><br/>
|
|
4944
5075
|
dockerPrefix: '"docker run" 安装:'
|
|
4945
|
-
dockerPs: '运行<code>docker ps</code>找到你的容器 ID,然后运行:'
|
|
5076
|
+
dockerPs: '运行<code style="background-color: #68686850;border: none;">docker ps</code>找到你的容器 ID,然后运行:'
|
|
4946
5077
|
dockerSuffix: ""
|
|
4947
5078
|
helmPrefix: 'Helm 安装,运行:'
|
|
4948
5079
|
helmSuffix: ""
|
|
@@ -4967,7 +5098,7 @@ sortableTable:
|
|
|
4967
5098
|
some: "影响 {total} 项中的 {actionable} 项"
|
|
4968
5099
|
noData: 没有匹配项
|
|
4969
5100
|
noRows: 没有可显示的内容。
|
|
4970
|
-
noActions:
|
|
5101
|
+
noActions: 暂无可执行的操作。
|
|
4971
5102
|
paging:
|
|
4972
5103
|
generic: |-
|
|
4973
5104
|
{pages, plural,
|
|
@@ -4979,7 +5110,7 @@ sortableTable:
|
|
|
4979
5110
|
=0 {No {pluralLabel}}
|
|
4980
5111
|
=1 {{count} {count, plural, =1 {{singularLabel}} other {{pluralLabel}}}}
|
|
4981
5112
|
other {{from} - {to} of {count} {pluralLabel}}}
|
|
4982
|
-
search:
|
|
5113
|
+
search: 请输入
|
|
4983
5114
|
in: in
|
|
4984
5115
|
addFilter: 添加筛选器
|
|
4985
5116
|
filterFor: 筛选...
|
|
@@ -5120,7 +5251,7 @@ storageClass:
|
|
|
5120
5251
|
label: REST 用户密钥
|
|
5121
5252
|
placeholder: 例如:password
|
|
5122
5253
|
secretNamespace:
|
|
5123
|
-
label:
|
|
5254
|
+
label: 密文所在的资源组
|
|
5124
5255
|
placeholder: 例如:default
|
|
5125
5256
|
secretName:
|
|
5126
5257
|
label: 密文名称
|
|
@@ -5157,7 +5288,7 @@ storageClass:
|
|
|
5157
5288
|
label: Admin ID
|
|
5158
5289
|
placeholder: 例如:kube
|
|
5159
5290
|
adminSecretNamespace:
|
|
5160
|
-
label: Admin
|
|
5291
|
+
label: Admin 密文所在的资源组
|
|
5161
5292
|
placeholder: 例如:kube-system
|
|
5162
5293
|
adminSecret:
|
|
5163
5294
|
label: Admin 密文
|
|
@@ -5169,7 +5300,7 @@ storageClass:
|
|
|
5169
5300
|
label: 用户 ID
|
|
5170
5301
|
placeholder: 例如:kube
|
|
5171
5302
|
userSecretNamespace:
|
|
5172
|
-
label:
|
|
5303
|
+
label: 用户密文所在的资源组
|
|
5173
5304
|
placeholder: 例如:default
|
|
5174
5305
|
userSecretName:
|
|
5175
5306
|
label: 用户密文名称
|
|
@@ -5192,7 +5323,7 @@ storageClass:
|
|
|
5192
5323
|
label: 镜像仓库
|
|
5193
5324
|
placeholder: 例如:138.68.74.142:7861
|
|
5194
5325
|
adminSecretNamespace:
|
|
5195
|
-
label: Admin
|
|
5326
|
+
label: Admin 密文所在的资源组
|
|
5196
5327
|
placeholder: 例如:kube-system
|
|
5197
5328
|
adminSecretName:
|
|
5198
5329
|
label: Admin 密文名称
|
|
@@ -5270,7 +5401,7 @@ storageClass:
|
|
|
5270
5401
|
label: 文件系统类型
|
|
5271
5402
|
placeholder: 例如:ext4
|
|
5272
5403
|
adminSecretNamespace:
|
|
5273
|
-
label: Admin
|
|
5404
|
+
label: Admin 密文所在的资源组
|
|
5274
5405
|
placeholder: 例如:default
|
|
5275
5406
|
adminSecretName:
|
|
5276
5407
|
label: Admin 密文名称
|
|
@@ -5281,13 +5412,13 @@ storageClass:
|
|
|
5281
5412
|
title: (已弃用)
|
|
5282
5413
|
warning: '{provisioner} 树内插件已弃用。你可以在<a target="_blank" rel="noopener noreferrer nofollow" href="https://kubernetes-csi.github.io/docs/drivers.html">这里</a>查找 CSI 驱动。'
|
|
5283
5414
|
harvesterhci:
|
|
5284
|
-
title:
|
|
5415
|
+
title: Cloud (CSI)
|
|
5285
5416
|
warning:
|
|
5286
|
-
unSatisfiesVersion: 请升级
|
|
5417
|
+
unSatisfiesVersion: 请升级 Cloud CSI 驱动版本来使用此功能(csi-driver >= v0.1.15)
|
|
5287
5418
|
hostStorageClass:
|
|
5288
5419
|
label: 主机存储类
|
|
5289
|
-
placeholder: 主机
|
|
5290
|
-
tooltip: 默认使用主机
|
|
5420
|
+
placeholder: 主机 Cloud 集群上的存储类名称
|
|
5421
|
+
tooltip: 默认使用主机 Cloud 集群上的默认存储类。
|
|
5291
5422
|
|
|
5292
5423
|
tableHeaders:
|
|
5293
5424
|
assuredConcurrencyShares: 确保并发份额
|
|
@@ -5348,6 +5479,7 @@ tableHeaders:
|
|
|
5348
5479
|
effect: 效果
|
|
5349
5480
|
endpoints: 端点
|
|
5350
5481
|
firstSeen: 首次出现时间
|
|
5482
|
+
fleetBundleType: 类型
|
|
5351
5483
|
flow: Flow
|
|
5352
5484
|
fingerprint: 唯一标识
|
|
5353
5485
|
gitRepos: Git 仓库
|
|
@@ -5380,6 +5512,7 @@ tableHeaders:
|
|
|
5380
5512
|
lastSchedule: 最后调度时间
|
|
5381
5513
|
lastSeen: 最后出现
|
|
5382
5514
|
lastSeenTooltip: 最近一次记录此事件的时间
|
|
5515
|
+
lastUsed: 最后使用
|
|
5383
5516
|
loggingOutputProviders: 提供商
|
|
5384
5517
|
machines: 主机
|
|
5385
5518
|
machineNodeName: 节点
|
|
@@ -5397,7 +5530,7 @@ tableHeaders:
|
|
|
5397
5530
|
name: 名称
|
|
5398
5531
|
nameDisplay: 显示名称
|
|
5399
5532
|
nameUnlinked: 名称
|
|
5400
|
-
namespace:
|
|
5533
|
+
namespace: 资源组
|
|
5401
5534
|
namespaceName: 名称
|
|
5402
5535
|
namespaceNameUnlinked: 名称
|
|
5403
5536
|
networkType: 类型
|
|
@@ -5443,7 +5576,7 @@ tableHeaders:
|
|
|
5443
5576
|
receivers: 接收器
|
|
5444
5577
|
receiverTypes: 接收器类型
|
|
5445
5578
|
reclaimPolicy: 回收策略
|
|
5446
|
-
registrationNamespace:
|
|
5579
|
+
registrationNamespace: 注册资源组
|
|
5447
5580
|
repo: 仓库
|
|
5448
5581
|
repositories: 仓库
|
|
5449
5582
|
repoName: 仓库名称
|
|
@@ -5498,6 +5631,10 @@ tableHeaders:
|
|
|
5498
5631
|
users: 用户
|
|
5499
5632
|
userDisplayName: 显示名称
|
|
5500
5633
|
userId: ID
|
|
5634
|
+
userDeletedIn: 到期删除
|
|
5635
|
+
userDisabledIn: 到期禁用
|
|
5636
|
+
userLastLogin: 最后登录
|
|
5637
|
+
userState: 启用状态
|
|
5501
5638
|
userStatus: 状态
|
|
5502
5639
|
username: 本地用户名
|
|
5503
5640
|
value: 值
|
|
@@ -5873,8 +6010,8 @@ workload:
|
|
|
5873
6010
|
'true': "是:容器可以获得比其父进程更多的权限。"
|
|
5874
6011
|
dropCapabilities: 移除 Capabilities
|
|
5875
6012
|
fsGroup: 文件系统组
|
|
5876
|
-
hostIPC: 使用主机 IPC
|
|
5877
|
-
hostPID: 使用主机 PID
|
|
6013
|
+
hostIPC: 使用主机 IPC 资源组
|
|
6014
|
+
hostPID: 使用主机 PID 资源组
|
|
5878
6015
|
podFsGroup: Pod 文件系统组
|
|
5879
6016
|
privileged:
|
|
5880
6017
|
label: Privileged
|
|
@@ -5893,7 +6030,7 @@ workload:
|
|
|
5893
6030
|
noOption: "否"
|
|
5894
6031
|
yesOption: "是:容器必须以非 Root 用户身份运行"
|
|
5895
6032
|
runAsUser: 以用户 ID 运行
|
|
5896
|
-
shareProcessNamespace:
|
|
6033
|
+
shareProcessNamespace: 共享单一进程资源组
|
|
5897
6034
|
supplementalGroups: 其他组 ID
|
|
5898
6035
|
sysctls: Sysctls
|
|
5899
6036
|
sysctlsKey: 名称
|
|
@@ -6042,11 +6179,11 @@ workload:
|
|
|
6042
6179
|
exists: 已设置
|
|
6043
6180
|
greaterThan: ">"
|
|
6044
6181
|
in: 在列表中
|
|
6045
|
-
inNamespaces: "
|
|
6182
|
+
inNamespaces: "特定资源组"
|
|
6046
6183
|
key: 键
|
|
6047
6184
|
lessThan: <
|
|
6048
6185
|
matchType: 匹配类型
|
|
6049
|
-
namespaces:
|
|
6186
|
+
namespaces: 资源组
|
|
6050
6187
|
notIn: 不在列表中
|
|
6051
6188
|
operator: 运算符
|
|
6052
6189
|
value: 值
|
|
@@ -6060,8 +6197,8 @@ workload:
|
|
|
6060
6197
|
requireAny: "需要以下任何一种:"
|
|
6061
6198
|
schedulingRules: 在匹配调度规则的节点上运行 Pod
|
|
6062
6199
|
specificNode: 在指定节点上运行 Pod
|
|
6063
|
-
thisPodNamespace: 此 Pod
|
|
6064
|
-
allNamespaces:
|
|
6200
|
+
thisPodNamespace: 此 Pod 的资源组
|
|
6201
|
+
allNamespaces: 所有资源组
|
|
6065
6202
|
topologyKey:
|
|
6066
6203
|
label: 拓扑键
|
|
6067
6204
|
placeholder: 例如:failure-domain.beta.kubernetes.io/zone
|
|
@@ -6100,7 +6237,7 @@ workload:
|
|
|
6100
6237
|
value: 值
|
|
6101
6238
|
serviceAccountName:
|
|
6102
6239
|
label: Service Account 名称
|
|
6103
|
-
createMessage:
|
|
6240
|
+
createMessage: 此资源组中不存在服务名称 [ {name} ],请手动创建它。
|
|
6104
6241
|
serviceName: 服务名称
|
|
6105
6242
|
storage:
|
|
6106
6243
|
subtypes:
|
|
@@ -6331,18 +6468,47 @@ typeDescription:
|
|
|
6331
6468
|
monitoring.coreos.com.podmonitor: PodMonitor 定义了 Prometheus 要抓取指标的 Pod 组。更为常用的是 ServiceMonitor。然而,PodMonitor 让你在 ServiceMonitor 不起作用时,处理任何其他情况。
|
|
6332
6469
|
monitoring.coreos.com.prometheusrule: PrometheusRule 定义了记录和/或告警规则。记录规则可以预先计算值并保存结果。告警规则允许你定义向 AlertManager 发送通知的条件。
|
|
6333
6470
|
monitoring.coreos.com.prometheus: Prometheus server 是一个 Prometheus deployment,其抓取的配置和规则由选定的 ServiceMonitor、PodMonitor 和 PrometheusRule 决定。它将其告警信息发送给所有选择的具有定制资源配置的 AlertManager。
|
|
6334
|
-
monitoring.coreos.com.alertmanager: Alertmanager 是一个 deployment
|
|
6471
|
+
monitoring.coreos.com.alertmanager: Alertmanager 是一个 deployment。其配置由同一资源组中的密文指定,该密文决定了告警的接收器。
|
|
6335
6472
|
node: Kubernetes 节点资源展示了承载 Deployment 的虚拟机或物理机。请进入"集群管理"页面管理可用节点的生命周期。
|
|
6336
6473
|
catalog.cattle.io.clusterrepo: 'Chart 仓库是一个 Helm 仓库或 {vendor} 基于 Git 的应用商店。此处列出了集群中可用的 Chart。'
|
|
6337
6474
|
catalog.cattle.io.clusterrepo.local: ' Chart 仓库是一个 Helm 仓库或 {vendor} 基于 Git 的应用商店。此处列出了集群中可用的 Chart。集群模板是通过 Helm Chart 部署的。'
|
|
6338
6475
|
catalog.cattle.io.operation: 最近的操作指的是最近应用于集群的一系列 Helm 操作。
|
|
6339
6476
|
catalog.cattle.io.app: 已安装的应用指的是通过我们的 Chart 或 Helm CLI 安装的 Helm 3 Chart。
|
|
6340
6477
|
logging.banzaicloud.io.clusterflow: 集群日志将被收集并投递到选定的 ClusterOutput 中。
|
|
6341
|
-
logging.banzaicloud.io.clusteroutput: ClusterOutput 定义了日志可以发送到哪些日志提供程序。只有部署在 Logging operator
|
|
6342
|
-
logging.banzaicloud.io.flow: Flow 定义了要收集和过滤的日志,以及日志的输出目标。Flow
|
|
6343
|
-
logging.banzaicloud.io.output: Output 定义了日志可以发送到哪些日志提供程序。Output 需要与使用它的 Flow
|
|
6478
|
+
logging.banzaicloud.io.clusteroutput: ClusterOutput 定义了日志可以发送到哪些日志提供程序。只有部署在 Logging operator 所在的资源组中时,ClusterOutput 才生效。
|
|
6479
|
+
logging.banzaicloud.io.flow: Flow 定义了要收集和过滤的日志,以及日志的输出目标。Flow 是一个资源组资源。换言之,只有部署了该 Flow 的资源组日志才能被该 Flow 收集。
|
|
6480
|
+
logging.banzaicloud.io.output: Output 定义了日志可以发送到哪些日志提供程序。Output 需要与使用它的 Flow 位于相同的资源组中。
|
|
6344
6481
|
group.principal: 为组分配全局角色的操作,仅适用于支持组的外部验证提供程序。本地授权不支持组。
|
|
6345
|
-
|
|
6482
|
+
kubevirt.io.virtualmachine: 云虚拟机是一种安全可靠、弹性可伸缩的云计算服务器,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。
|
|
6483
|
+
harvesterhci.io.volume: 虚拟磁盘具有高性能和低时延的特点,支持随机读写,可以像使用物理硬盘一样,在虚拟机上进行格式化并建立文件系统来使用块存储。
|
|
6484
|
+
harvesterhci.io.volumesnapshot: 虚拟磁盘快照功能通过捕获虚拟磁盘在特定时间点的状态,生成增量副本,支持快速回滚磁盘状态,为测试验证、容灾恢复提供高效解决方案
|
|
6485
|
+
harvesterhci.io.virtualmachinebackup: 虚拟机备份功能通过创建包含磁盘数据、配置信息的完整副本,支持跨环境恢复及长期数据保护,为系统故障或灾难提供可靠容灾方案。
|
|
6486
|
+
harvesterhci.io.schedulevmbackup: 虚拟机备份策略功能通过创建定时任务,对虚拟机进行完整备份或增量快照,为用户提供自动化的数据备份和容灾方案。
|
|
6487
|
+
harvesterhci.io.vmsnapshot: 虚拟机快照功能通过捕获特定时间点的系统状态,支持快速恢复虚拟机状态,为数据备份与系统调试提供灵活解决方案。
|
|
6488
|
+
harvesterhci.io.keypair: SSH密钥对是一种安全便捷的登录认证方式,您可以实现免密码远程登录,并在无需人工干预的情况下进行安全的自动化操作,实现服务器配置和应用程序部署的自动化。
|
|
6489
|
+
harvesterhci.io.networkattachmentdefinition: 快速构建云上数据中心网络,二层,三层网络为扁平网络,虚拟专有网络为...VPN等网络类型,可以通过专线/VPN等连接方式与传统数据中心组成一个按需定制的网络环境,实现应用的平滑迁移上云。
|
|
6490
|
+
loadbalancer.harvesterhci.io.ippool: 地址池是负载均衡器专用的内置 IP 地址管理解决方案。
|
|
6491
|
+
loadbalancer.harvesterhci.io.loadbalancer: 负载均衡器(Load Balancer)是用于在多个计算资源之间分配网络或应用流量的设备或软件。其主要目的是优化资源利用、最大化吞吐量、减少延迟,并确保容错配置。
|
|
6492
|
+
harvesterhci.io.virtualmachineimage: 镜像是创建虚拟机实例的基础模板,规格能够设定创建虚拟机的CPU、内存、磁盘等资源数量,在创建虚拟机实例时必须选择一个镜像以及规格。
|
|
6493
|
+
harvesterhci.io.virtualmachinetemplateversion: 虚拟机模版是用于快速部署具有相同配置的多个虚拟机的一个基础镜像。它包含了操作系统、预安装的应用程序以及一系列预先设定的配置参数。
|
|
6494
|
+
harvesterhci.io.host: 物理机管理通过资源整合、动态调整、统一管理和自动化运维,提高了资源利用率、业务灵活性、系统可靠性和安全性,同时降低了成本和能耗,是资源管理重要的实现手段。
|
|
6495
|
+
harvesterhci.io.storage: 存储管理简化了复杂架构,提升了存储性能与效率,确保了高可用性和数据安全性,支持虚拟化环境,降低了成本,并优化了数据保护策略,是数据中心存储管理的关键解决方案。
|
|
6496
|
+
network.harvesterhci.io.clusternetwork: 集群网络功能通过将集群内物理服务器和网卡组成多个逻辑网络,实现服务器之间的灵活网络互联,提供高可用、高性能、高灵活度的网络服务。
|
|
6497
|
+
devices.harvesterhci.io.sriovnetworkdevice: SR-IOV网卡功能通过 SR-IOV 技术实现物理网卡的虚拟划分,支持虚拟机直接访问独立虚拟网卡,提升网卡利用率同时,不降低网络性能,优化资源利用率。
|
|
6498
|
+
devices.harvesterhci.io.sriovgpudevice: GPU管理主要对图形处理单元(Graphics Processing Unit,GPU)的有效监控、配置和优化,以确保其高效、稳定地运行。GPU管理也可以在超算场景中的使用,其强大的并行处理能力和高内存带宽使其成为高性能计算的重要工具和实现方式。
|
|
6499
|
+
devices.harvesterhci.io.usbdevice: USB管理功能,通过设备直通技术,将物理 USB 设备直接映射至虚拟机,实现跨平台数据交互与外设资源共享。
|
|
6500
|
+
harvesterhci.io.monitoring.alertmanagerconfig: 支持对云资源(包括物理机、虚拟机、存储、网络等)的运行状态、性能指标以及安全事件进行持续监控,能够及时发现潜在问题并触发告警,确保运维团队能够迅速响应并解决问题,从而保障云服务的稳定性和安全性。
|
|
6501
|
+
harvesterhci.io.setting: 集群配置主要用于管理系统中的一些功能及配置参数。
|
|
6502
|
+
harvesterhci.io.secret: 密钥管理功能集成密钥生成、存储、访问控制等功能,能够为镜像和虚拟磁盘点加密存储提供安全密钥。
|
|
6503
|
+
devices.harvesterhci.io.pcidevice: PCI是Peripheral Component Interconnect(外围设备互连)的缩写,它是一种计算机总线标准,主要用于连接计算机内部的各种外部设备。
|
|
6504
|
+
devices.harvesterhci.io.vgpudevice: vGPU(虚拟 GPU,Virtual GPU)是一种通过虚拟化技术将物理 GPU 资源分割、共享给多个虚拟机(VM)或容器的技术,旨在解决物理 GPU 资源利用率低、部署成本高的问题,同时满足多用户对图形渲染、高性能计算(HPC)、AI 加速等场景的需求。
|
|
6505
|
+
kubeovn.io.vpc: VPC(Virtual Private Cloud,虚拟私有云)是一种云计算服务模型,允许用户在公有云环境中创建隔离的虚拟网络空间,以实现更高的安全性和灵活性。VPC 使用户能够定义自己的网络拓扑、IP 地址范围、子网、路由表和网络网关等,从而提供类似于传统数据中心的网络控制和配置能力。
|
|
6506
|
+
kubeovn.io.subnet: 子网是虚拟私有云(VPC)中的一个逻辑分区,用于将网络划分为更小的、可管理的部分。每个子网都有自己的 IP 地址范围和网络配置,允许用户在 VPC 内创建隔离的网络环境,以满足不同应用或服务的需求。
|
|
6507
|
+
kubeovn.io.providernetwork: 物理网络(Provider Network)是指在虚拟私有云(VPC)中,由云服务提供商管理的网络资源。它通常用于连接 VPC 内的虚拟机、容器和其他资源,并提供对外部网络的访问。提供者网络可以包括物理网络设备、虚拟交换机、路由器等,以实现高效、安全的网络通信。
|
|
6508
|
+
kubeovn.io.vlan: VLAN(Virtual Local Area Network,虚拟局域网)是一种网络技术,用于在物理网络中创建逻辑隔离的子网络。VLAN 允许用户将不同的设备和服务分组到同一虚拟网络中,从而提高网络的安全性、灵活性和可管理性。每个 VLAN 都有一个唯一的标识符(VLAN ID),用于区分不同的虚拟网络。
|
|
6509
|
+
management.cattle.io.setting: 统一配置平台基础选项与全局设置,支持CA证书、密码规则、域名、Token时效等核心配置。
|
|
6510
|
+
management.cattle.io.user: 用于管理用户账号,支持创建、维护用户信息,可设置用户权限、管理密码等,保障系统资源仅由授权用户访问,提升系统安全性。
|
|
6511
|
+
harvesterhci.io.management.cluster: 提供虚拟化集群的实时健康状态监控、版本号管理及资源负载管理,支持批量导入/删除集群、配置调优与权限分级功能,实现高效运维管控。
|
|
6346
6512
|
typeLabel:
|
|
6347
6513
|
management.cattle.io.token: |-
|
|
6348
6514
|
{count, plural,
|
|
@@ -6381,8 +6547,8 @@ typeLabel:
|
|
|
6381
6547
|
}
|
|
6382
6548
|
catalog.cattle.io.repo: |-
|
|
6383
6549
|
{count, plural,
|
|
6384
|
-
one {
|
|
6385
|
-
other {
|
|
6550
|
+
one { 资源组仓库 }
|
|
6551
|
+
other { 资源组仓库 }
|
|
6386
6552
|
}
|
|
6387
6553
|
chartinstallaction: |-
|
|
6388
6554
|
{count, plural,
|
|
@@ -6441,8 +6607,8 @@ typeLabel:
|
|
|
6441
6607
|
}
|
|
6442
6608
|
management.cattle.io.setting: |-
|
|
6443
6609
|
{count, plural,
|
|
6444
|
-
one {
|
|
6445
|
-
other {
|
|
6610
|
+
one { 基础设置 }
|
|
6611
|
+
other { 基础设置 }
|
|
6446
6612
|
}
|
|
6447
6613
|
management.cattle.io.fleetworkspace: |-
|
|
6448
6614
|
{count, plural,
|
|
@@ -6542,8 +6708,8 @@ typeLabel:
|
|
|
6542
6708
|
}
|
|
6543
6709
|
namespace: |-
|
|
6544
6710
|
{count, plural,
|
|
6545
|
-
one {
|
|
6546
|
-
other {
|
|
6711
|
+
one { 资源组 }
|
|
6712
|
+
other { 资源组 }
|
|
6547
6713
|
}
|
|
6548
6714
|
node: |-
|
|
6549
6715
|
{count, plural,
|
|
@@ -6697,8 +6863,8 @@ typeLabel:
|
|
|
6697
6863
|
}
|
|
6698
6864
|
harvesterhci.io.management.cluster: |-
|
|
6699
6865
|
{count, plural,
|
|
6700
|
-
one {
|
|
6701
|
-
other {
|
|
6866
|
+
one { Cloud 集群 }
|
|
6867
|
+
other { Cloud 集群 }
|
|
6702
6868
|
}
|
|
6703
6869
|
harvesterhci.io.cloudtemplate: |-
|
|
6704
6870
|
{count, plural,
|
|
@@ -6970,7 +7136,7 @@ registryConfig:
|
|
|
6970
7136
|
##############################
|
|
6971
7137
|
|
|
6972
7138
|
advancedSettings:
|
|
6973
|
-
label:
|
|
7139
|
+
label: 基础设置
|
|
6974
7140
|
subtext: 一般用户不需要修改此处的设置。请谨慎操作,不正确的值会破坏 {appName} 的安装。与默认不同的设置会标记为“已修改”。
|
|
6975
7141
|
show: 显示
|
|
6976
7142
|
hide: 隐藏
|
|
@@ -6998,7 +7164,7 @@ advancedSettings:
|
|
|
6998
7164
|
'ui-index': 'Cluster Manager UI 的 HTML 索引位置。'
|
|
6999
7165
|
'ui-dashboard-index': '{appName} UI 的 HTML 索引位置。'
|
|
7000
7166
|
'ui-offline-preferred': '控制 UI 资产是由服务器容器在本地提供,还是从 ui-index 和 ui-dashboard-index 设置中定义的远程 URL 提供。`动态` 选项将在 {appName} 的生产版本中使用本地资产。'
|
|
7001
|
-
'ui-pl': '
|
|
7167
|
+
'ui-pl': '系统名称'
|
|
7002
7168
|
'auth-user-info-max-age-seconds': '在同步验证提供程序组成员之前,用户验证 Token 的最长存活时间。'
|
|
7003
7169
|
'auth-user-info-resync-cron': '重新同步验证提供程序组成员的默认 cron 调度。'
|
|
7004
7170
|
'cluster-template-enforcement': '非管理员只能通过预先批准的 RKE 模板启动集群。'
|
|
@@ -7013,6 +7179,9 @@ advancedSettings:
|
|
|
7013
7179
|
'ui-default-landing': '用户登录后的默认页面。'
|
|
7014
7180
|
'brand': 在'/assets/brand'中定义,用于替代主题的文件夹名称
|
|
7015
7181
|
'hide-local-cluster': 隐藏 local 集群
|
|
7182
|
+
'agent-tls-mode': "Rancher 证书验证。在 strict(严格)模式下,代理(系统、集群、Fleet 等)将仅信任使用由 cacerts 设置中的 CABundle 签名的证书的 Rancher 安装。当模式为 system-store(系统存储)时,代理将信任由操作系统信任存储中的 CABundle 签名的任何证书。"
|
|
7183
|
+
'k3s-based-upgrader-uninstall-concurrency': "定义 Rancher 可并发从导入的 K3s 或 RKE2 集群中卸载旧版 rancher-k3s-upgrader 或 rancher-rke2-upgrader 应用程序的最大集群数量。"
|
|
7184
|
+
'imported-cluster-version-management': "为导入的 RKE2/K3s 集群启用版本管理,如果本地集群是 RKE2/K3s 集群,则也对其生效。集群级别的版本管理设置会在集群层面覆盖此全局设置。对于集群级别版本管理设置为 'system-default'(系统默认)的现有集群,更改此标志将在下一次协调期间(默认每 5 分钟一次,或一旦编辑集群便立即触发,以先到者为准)触发集群代理的重新部署。"
|
|
7016
7185
|
editHelp:
|
|
7017
7186
|
'ui-banners': 此设置使用包含 3 个根参数的 JSON 对象,分别是<code>banner</code>、<code>showHeader</code>和<code>showFooter</code>。<code>banner</code> 是包含 <code>textColor</code>,<code>background</code>和<code>text</code>的对象,其中<code>textColor</code> 和 <code>background</code>的值可以是任何有效的 CSS 颜色值。
|
|
7018
7187
|
enum:
|
|
@@ -7046,7 +7215,7 @@ featureFlags:
|
|
|
7046
7215
|
title: 等待重启
|
|
7047
7216
|
wait: 重启需要数分钟。
|
|
7048
7217
|
description:
|
|
7049
|
-
harvester: 接入
|
|
7218
|
+
harvester: 接入 Cloud,以导入和管理 Cloud 集群
|
|
7050
7219
|
unsupported-storage-drivers: 允许使用非默认启用的存储提供商和卷插件
|
|
7051
7220
|
legacy: 启用旧版功能
|
|
7052
7221
|
istio-virtual-service-ui: 暴露了一个用户界面,使用户能够创建、读取、更新和删除虚拟服务和目标规则,这是 Istio 的流量管理功能。
|
|
@@ -7067,7 +7236,7 @@ performance:
|
|
|
7067
7236
|
启用后,资源会更快出现,但可能需要更长的时间来加载整个资源集。此设置仅适用于来自 Kubernetes API 的资源
|
|
7068
7237
|
checkboxLabel: 启用增量加载
|
|
7069
7238
|
inputLabel: 资源阈值
|
|
7070
|
-
incompatibleDescription: "
|
|
7239
|
+
incompatibleDescription: "增量加载与资源组/项目过滤不兼容,无法同时启用。"
|
|
7071
7240
|
manualRefresh:
|
|
7072
7241
|
label: 手动刷新
|
|
7073
7242
|
setting: 你可以配置一个阈值,高于该阈值时则启用手动刷新。
|
|
@@ -7076,7 +7245,7 @@ performance:
|
|
|
7076
7245
|
启用后,列表数据不会自动更新,用户必须手动刷新列表视图。此设置仅适用于来自 Kubernetes API 的资源
|
|
7077
7246
|
checkboxLabel: 启用列表数据的手动刷新
|
|
7078
7247
|
inputLabel: 资源阈值
|
|
7079
|
-
incompatibleDescription: "
|
|
7248
|
+
incompatibleDescription: "手动刷新与资源组/项目过滤不兼容,无法同时启用。"
|
|
7080
7249
|
websocketNotification:
|
|
7081
7250
|
label: WebSocket 通知
|
|
7082
7251
|
description: |-
|
|
@@ -7104,10 +7273,10 @@ performance:
|
|
|
7104
7273
|
description: 资源必须超过此数量才能考虑进行垃圾回收。
|
|
7105
7274
|
inputLabel: 资源数量
|
|
7106
7275
|
nsFiltering:
|
|
7107
|
-
label:
|
|
7108
|
-
description:
|
|
7109
|
-
checkboxLabel:
|
|
7110
|
-
incompatibleDescription: "\"
|
|
7276
|
+
label: 要求资源组/项目过滤
|
|
7277
|
+
description: 用户需要选择资源组和/或项目。这将限制查看列表时获取的资源数量,有助于在具有大量资源的系统中提高 UI 的响应速度。
|
|
7278
|
+
checkboxLabel: 启用要求资源组/项目过滤
|
|
7279
|
+
incompatibleDescription: "\"要求资源组/项目过滤\"与手动刷新和增量加载不兼容,无法同时启用。"
|
|
7111
7280
|
advancedWorker:
|
|
7112
7281
|
label: Websocket Web Worker
|
|
7113
7282
|
description: 推送到 UI 的资源更新来自 WebSocket,并在 UI 线程中处理。启用此选项可在单独的线程中处理 Web Worker 中的集群 WebSocket 更新。这有助于提高 UI 在资源经常变化的系统中的响应能力。
|
|
@@ -7124,9 +7293,9 @@ performance:
|
|
|
7124
7293
|
banner:
|
|
7125
7294
|
label: 固定横幅
|
|
7126
7295
|
settingName: 横幅
|
|
7127
|
-
|
|
7128
|
-
|
|
7129
|
-
|
|
7296
|
+
headerBanner: 标题横幅
|
|
7297
|
+
footerBanner: 页脚横幅
|
|
7298
|
+
loginScreenBanner: 登录屏幕横幅
|
|
7130
7299
|
text: 文本
|
|
7131
7300
|
buttonText: 同意按钮文本
|
|
7132
7301
|
textColor: 文本颜色
|
|
@@ -7154,7 +7323,7 @@ banner:
|
|
|
7154
7323
|
consentFootnote: "提示:使用 \n 进行换行"
|
|
7155
7324
|
|
|
7156
7325
|
branding:
|
|
7157
|
-
label:
|
|
7326
|
+
label: 界面
|
|
7158
7327
|
directoryName: 品牌资产目录名称
|
|
7159
7328
|
logos:
|
|
7160
7329
|
label: Logo
|
|
@@ -7164,6 +7333,22 @@ branding:
|
|
|
7164
7333
|
uploadLight: 上传浅色 Logo
|
|
7165
7334
|
uploadDark: 上传深色 Logo
|
|
7166
7335
|
useCustom: 使用自定义 Logo
|
|
7336
|
+
banner:
|
|
7337
|
+
label: 横幅
|
|
7338
|
+
tip: '上传图片以替换仪表板页面中的默认 Rancher 横幅。推荐使用宽高比为 6:1 的 SVG 图像。默认图片尺寸为 4197x633。最大文件大小为 200KB。可接受格式:JPEG、PNG、SVG。'
|
|
7339
|
+
lightPreview: 浅色主题预览
|
|
7340
|
+
darkPreview: 深色主题预览
|
|
7341
|
+
uploadLight: 上传浅色横幅
|
|
7342
|
+
uploadDark: 上传深色横幅
|
|
7343
|
+
useCustom: 使用自定义横幅
|
|
7344
|
+
loginBackground:
|
|
7345
|
+
label: 登录背景
|
|
7346
|
+
tip: '上传图片以替换登录页面的默认 Rancher 背景。推荐使用宽高比为 7:8 的 SVG 图像。默认图片尺寸为 683x768。最大文件大小为 200KB。可接受格式:JPEG、PNG、SVG。'
|
|
7347
|
+
lightPreview: 浅色主题预览
|
|
7348
|
+
darkPreview: 深色主题预览
|
|
7349
|
+
uploadLight: 上传浅色背景
|
|
7350
|
+
uploadDark: 上传深色背景
|
|
7351
|
+
useCustom: 使用自定义背景
|
|
7167
7352
|
favicon:
|
|
7168
7353
|
label: 网站图标
|
|
7169
7354
|
tip: '上传一个网站图标来替换浏览器选项卡中的 Rancher 图标。最大文件大小为 20KB'
|
|
@@ -7175,7 +7360,7 @@ branding:
|
|
|
7175
7360
|
suse: SUSE 主题
|
|
7176
7361
|
custom: 自定义主题
|
|
7177
7362
|
uiPL:
|
|
7178
|
-
label:
|
|
7363
|
+
label: 系统名称
|
|
7179
7364
|
color:
|
|
7180
7365
|
label: 主颜色
|
|
7181
7366
|
tip: 使用自定义颜色替换整个 UI 中使用的主颜色。
|
|
@@ -7196,12 +7381,12 @@ resourceQuota:
|
|
|
7196
7381
|
label: 资源配额
|
|
7197
7382
|
headers:
|
|
7198
7383
|
limit: 限制
|
|
7199
|
-
namespaceDefaultLimit:
|
|
7384
|
+
namespaceDefaultLimit: 资源组默认限制
|
|
7200
7385
|
projectLimit: 项目限制
|
|
7201
7386
|
projectResourceAvailability: 项目资源可用性
|
|
7202
7387
|
resourceType: 资源类型
|
|
7203
|
-
helpText:
|
|
7204
|
-
helpTextDetail:
|
|
7388
|
+
helpText: 配置整个资源组可用的资源量。
|
|
7389
|
+
helpTextDetail: 整个资源组可以使用的资源量。
|
|
7205
7390
|
helpTextHarvester: VM 需要预留额外的内存。
|
|
7206
7391
|
configMaps: ConfigMaps
|
|
7207
7392
|
limitsCpu: CPU 限制
|
|
@@ -7217,7 +7402,7 @@ resourceQuota:
|
|
|
7217
7402
|
servicesLoadBalancers: Service Load Balancer
|
|
7218
7403
|
servicesNodePorts: Service Node Port
|
|
7219
7404
|
namespaceLimit:
|
|
7220
|
-
label:
|
|
7405
|
+
label: 资源组限制
|
|
7221
7406
|
projectLimit:
|
|
7222
7407
|
label: 项目限制
|
|
7223
7408
|
cpuPlaceholder: 例如:2000
|
|
@@ -7225,7 +7410,7 @@ resourceQuota:
|
|
|
7225
7410
|
storagePlaceholder: 例如:50
|
|
7226
7411
|
unitlessPlaceholder: 例如:50
|
|
7227
7412
|
namespaceDefaultLimit:
|
|
7228
|
-
label:
|
|
7413
|
+
label: 资源组默认限制
|
|
7229
7414
|
cpuPlaceholder: 例如:500
|
|
7230
7415
|
memoryPlaceholder: 例如:1024
|
|
7231
7416
|
storagePlaceholder: 例如:10
|
|
@@ -7233,8 +7418,8 @@ resourceQuota:
|
|
|
7233
7418
|
add:
|
|
7234
7419
|
label: 添加资源
|
|
7235
7420
|
tooltip:
|
|
7236
|
-
reserved: '
|
|
7237
|
-
namespace: '
|
|
7421
|
+
reserved: '其他资源组:'
|
|
7422
|
+
namespace: '此资源组:'
|
|
7238
7423
|
available: '可用:'
|
|
7239
7424
|
max: '总计:'
|
|
7240
7425
|
customLinks:
|
|
@@ -7320,7 +7505,7 @@ legacy:
|
|
|
7320
7505
|
|
|
7321
7506
|
project:
|
|
7322
7507
|
label: 项目
|
|
7323
|
-
select: "
|
|
7508
|
+
select: "使用页面顶部的项目/资源组筛选器选择一个项目,以查看其旧版项目功能。"
|
|
7324
7509
|
|
|
7325
7510
|
serverUpgrade:
|
|
7326
7511
|
title: "{vendor} Server 已更改"
|
|
@@ -7346,7 +7531,9 @@ auth:
|
|
|
7346
7531
|
label: 认证
|
|
7347
7532
|
vncConsole:
|
|
7348
7533
|
error:
|
|
7349
|
-
message: Web VNC
|
|
7534
|
+
message: Web VNC 断开链接
|
|
7535
|
+
reconnecting:
|
|
7536
|
+
message: Web VNC控制台重新连接尝试
|
|
7350
7537
|
charts:
|
|
7351
7538
|
longhorn:
|
|
7352
7539
|
group:
|
|
@@ -7669,3 +7856,79 @@ gitPicker:
|
|
|
7669
7856
|
networkAttachmentDefinition:
|
|
7670
7857
|
tabs:
|
|
7671
7858
|
config: 配置
|
|
7859
|
+
|
|
7860
|
+
|
|
7861
|
+
component:
|
|
7862
|
+
drawer:
|
|
7863
|
+
chrome:
|
|
7864
|
+
ariaLabel:
|
|
7865
|
+
close: 关闭抽屉
|
|
7866
|
+
close: 关闭
|
|
7867
|
+
resourceDetailDrawer:
|
|
7868
|
+
title: "{resourceName} ({resourceType}) - 配置"
|
|
7869
|
+
editConfig: 编辑配置
|
|
7870
|
+
editYaml: 编辑YAML
|
|
7871
|
+
ariaLabel:
|
|
7872
|
+
editConfig: 编辑配置
|
|
7873
|
+
editYaml: 编辑YAML
|
|
7874
|
+
yamlTab:
|
|
7875
|
+
title: YAML
|
|
7876
|
+
configTab:
|
|
7877
|
+
title: 配置
|
|
7878
|
+
resource:
|
|
7879
|
+
detail:
|
|
7880
|
+
card:
|
|
7881
|
+
resourceUsage:
|
|
7882
|
+
used: Used
|
|
7883
|
+
amount: '{used} of {available}'
|
|
7884
|
+
cpu: CPU
|
|
7885
|
+
memory: Memory
|
|
7886
|
+
pods: Pods
|
|
7887
|
+
resourcesCard:
|
|
7888
|
+
title: 资源
|
|
7889
|
+
rows:
|
|
7890
|
+
services: 服务
|
|
7891
|
+
ingresses: Ingresses
|
|
7892
|
+
referredToBy: 参考
|
|
7893
|
+
refersTo: 引用
|
|
7894
|
+
podsCard:
|
|
7895
|
+
title: Pods
|
|
7896
|
+
ariaResourceName: pods
|
|
7897
|
+
insightsCard:
|
|
7898
|
+
title: Insights
|
|
7899
|
+
rows:
|
|
7900
|
+
conditions: Conditions
|
|
7901
|
+
events: Events
|
|
7902
|
+
scaler:
|
|
7903
|
+
ariaLabel:
|
|
7904
|
+
increase: Increase {resourceName}
|
|
7905
|
+
decrease: Decrease {resourceName}
|
|
7906
|
+
titleBar:
|
|
7907
|
+
showConfiguration: 显示配置
|
|
7908
|
+
ariaLabel:
|
|
7909
|
+
actionMenu: 更多操作
|
|
7910
|
+
showConfiguration: 显示{resource}的整个配置
|
|
7911
|
+
metadata:
|
|
7912
|
+
labelsAndAnnotations: 标签和注释
|
|
7913
|
+
identifyingInformation:
|
|
7914
|
+
createdBy: 创建
|
|
7915
|
+
namespace: 命名空间
|
|
7916
|
+
project: 项目
|
|
7917
|
+
age: 使用时长
|
|
7918
|
+
image: 图片
|
|
7919
|
+
ready: 准备
|
|
7920
|
+
up-to-date: Up-to-date
|
|
7921
|
+
available: 可用
|
|
7922
|
+
serviceAccount: 服务帐户
|
|
7923
|
+
type: 类型
|
|
7924
|
+
certificate: 证书
|
|
7925
|
+
issuer: Issuer
|
|
7926
|
+
expires: 到期
|
|
7927
|
+
workspace: 工作区
|
|
7928
|
+
annotations:
|
|
7929
|
+
title: 注释
|
|
7930
|
+
labels:
|
|
7931
|
+
title: 标签
|
|
7932
|
+
keyValue:
|
|
7933
|
+
noRows: 此资源上没有配置{propertyName}.
|
|
7934
|
+
showConfiguration: 显示配置
|