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