@rancher/shell 0.1.3 → 0.1.21
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/suse/dark/rancher-logo.svg +1 -148
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/brand/suse/rancher-logo.svg +1 -130
- package/assets/images/featured/img1.jpg +0 -0
- package/assets/images/featured.jpg +0 -0
- package/assets/images/generic-plugin.svg +1 -0
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +3 -0
- package/assets/styles/themes/_suse.scss +1 -1
- package/assets/translations/en-us.yaml +219 -47
- package/assets/translations/zh-hans.yaml +21 -24
- package/components/AsyncButton.vue +17 -2
- package/components/ButtonDropdown.vue +4 -0
- package/components/Carousel.vue +291 -0
- package/components/CommunityLinks.vue +64 -22
- package/components/CruResource.vue +11 -3
- package/components/Dialog.vue +102 -0
- package/components/ExplorerMembers.vue +2 -4
- package/components/ExplorerProjectsNamespaces.vue +25 -9
- package/components/IconMessage.vue +9 -1
- package/components/LazyImage.vue +21 -8
- package/components/LocaleSelector.vue +62 -29
- package/components/PromptRemove.vue +2 -2
- package/components/ResourceList/Masthead.vue +21 -1
- package/components/ResourceList/ResourceLoadingIndicator.vue +0 -8
- package/components/ResourceList/index.vue +9 -23
- package/components/ResourceTable.vue +7 -2
- package/components/SimpleBox.vue +6 -4
- package/components/SortableTable/index.vue +18 -25
- package/components/Tabbed/Tab.vue +5 -0
- package/components/Tabbed/index.vue +54 -9
- package/components/TypeDescription.vue +10 -1
- package/components/auth/Principal.vue +1 -0
- package/components/fleet/FleetBundles.vue +8 -3
- package/components/fleet/FleetClusters.vue +6 -0
- package/components/fleet/FleetRepos.vue +7 -1
- package/components/fleet/FleetSummary.vue +6 -0
- package/components/form/Command.vue +5 -0
- package/components/form/EnvVars.vue +5 -0
- package/components/form/KeyValue.vue +80 -58
- package/components/form/NameNsDescription.vue +13 -5
- package/components/form/NodeScheduling.vue +6 -1
- package/components/form/PodAffinity.vue +5 -0
- package/components/form/ResourceTabs/index.vue +5 -1
- package/components/form/ServiceNameSelect.vue +5 -0
- package/components/form/ValueFromResource.vue +7 -1
- package/components/formatter/ClusterLink.vue +3 -7
- package/components/nav/NamespaceFilter.vue +3 -3
- package/components/nav/TopLevelMenu.vue +12 -29
- package/config/home-links.js +155 -0
- package/config/labels-annotations.js +2 -1
- package/config/private-label.js +1 -1
- package/config/product/explorer.js +5 -4
- package/config/product/legacy.js +0 -47
- package/config/product/manager.js +0 -2
- package/config/product/multi-cluster-apps.js +0 -12
- package/config/product/settings.js +12 -1
- package/config/product/uiplugins.js +17 -0
- package/config/settings.js +23 -2
- package/config/types.js +5 -1
- package/config/uiplugins.js +117 -0
- package/config/version.js +17 -0
- package/content/docs/en-us/getting-started.md +1 -26
- package/core/plugin.ts +12 -0
- package/core/plugins.js +38 -2
- package/core/types.ts +6 -0
- package/creators/app/{.eslintignore → files/.eslintignore} +0 -0
- package/creators/app/{.eslintrc.js → files/.eslintrc.js} +0 -0
- package/creators/app/{.vscode → files/.vscode}/settings.json +0 -0
- package/creators/app/{babel.config.js → files/babel.config.js} +0 -0
- package/creators/app/{nuxt.config.js → files/nuxt.config.js} +0 -0
- package/creators/app/{tsconfig.json → files/tsconfig.json} +2 -1
- package/creators/app/init +16 -17
- package/creators/app/package.json +6 -0
- package/creators/pkg/{babel.config.js → files/babel.config.js} +0 -0
- package/creators/pkg/{index.ts → files/index.ts} +0 -0
- package/creators/pkg/{tsconfig.json → files/tsconfig.json} +13 -12
- package/creators/pkg/{vue.config.js → files/vue.config.js} +0 -0
- package/creators/pkg/init +1 -1
- package/creators/update/init +54 -0
- package/creators/update/package.json +20 -0
- package/creators/update/upgrade +56 -0
- package/creators/update/yarn-error.log +54 -0
- package/detail/provisioning.cattle.io.cluster.vue +3 -3
- package/detail/workload/index.vue +3 -2
- package/dialog/DiagnosticTimingsDialog.vue +116 -0
- package/dialog/RotateCertificatesDialog.vue +9 -3
- package/edit/auth/azuread.vue +28 -9
- package/edit/networking.k8s.io.ingress/index.vue +2 -2
- package/edit/persistentvolume/index.vue +51 -13
- package/edit/persistentvolumeclaim.vue +31 -13
- package/edit/pod.vue +27 -0
- package/edit/provisioning.cattle.io.cluster/rke2.vue +103 -24
- package/edit/service.vue +7 -5
- package/edit/workload/__tests__/Upgrading.test.ts +1 -0
- package/edit/workload/index.vue +32 -10
- package/edit/workload/mixins/workload.js +121 -126
- package/edit/workload/storage/ContainerMountPaths.vue +240 -0
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +20 -1
- package/edit/workload/storage/azureDisk.vue +22 -2
- package/edit/workload/storage/azureFile.vue +20 -2
- package/edit/workload/storage/csi/index.vue +23 -1
- package/edit/workload/storage/gcePersistentDisk.vue +20 -2
- package/edit/workload/storage/index.vue +33 -65
- package/edit/workload/storage/persistentVolumeClaim/index.vue +5 -0
- package/edit/workload/storage/secret.vue +6 -1
- package/edit/workload/storage/vsphereVolume.vue +11 -1
- package/layouts/default.vue +14 -8
- package/layouts/home.vue +9 -4
- package/layouts/plain.vue +10 -5
- package/list/catalog.cattle.io.app.vue +10 -9
- package/list/catalog.cattle.io.clusterrepo.vue +6 -61
- package/list/cis.cattle.io.clusterscan.vue +12 -12
- package/list/fleet.cattle.io.bundle.vue +33 -28
- package/list/fleet.cattle.io.cluster.vue +26 -22
- package/list/fleet.cattle.io.clustergroup.vue +6 -0
- package/list/fleet.cattle.io.clusterregistrationtoken.vue +28 -24
- package/list/fleet.cattle.io.gitrepo.vue +25 -14
- package/list/helm.cattle.io.projecthelmchart.vue +52 -33
- package/list/logging.banzaicloud.io.clusterflow.vue +7 -12
- package/list/logging.banzaicloud.io.flow.vue +7 -14
- package/list/management.cattle.io.cluster.vue +26 -15
- package/list/management.cattle.io.feature.vue +13 -8
- package/list/management.cattle.io.setting.vue +3 -3
- package/list/management.cattle.io.user.vue +38 -19
- package/list/monitoring.coreos.com.alertmanagerconfig.vue +8 -15
- package/list/namespace.vue +14 -1
- package/list/node.vue +13 -16
- package/list/persistentvolume.vue +16 -9
- package/list/persistentvolumeclaim.vue +5 -8
- package/list/provisioning.cattle.io.cluster.vue +35 -9
- package/list/service.vue +24 -12
- package/list/ui.cattle.io.navlink.vue +6 -0
- package/list/workload.vue +2 -2
- package/machine-config/harvester.vue +5 -3
- package/middleware/authenticated.js +6 -0
- package/mixins/resource-fetch.js +12 -18
- package/mixins/resource-manager.js +126 -0
- package/models/catalog.cattle.io.uiplugin.js +38 -0
- package/models/cluster/node.js +25 -2
- package/models/fleet.cattle.io.bundle.js +1 -1
- package/models/harvesterhci.io.management.cluster.js +11 -5
- package/models/pod.js +15 -5
- package/models/provisioning.cattle.io.cluster.js +16 -6
- package/models/workload.js +5 -3
- package/models/workload.service.js +10 -0
- package/nuxt.config.js +70 -25
- package/package.json +108 -109
- package/pages/auth/login.vue +11 -1
- package/pages/auth/verify.vue +9 -0
- package/pages/c/_cluster/apps/charts/index.vue +46 -1
- package/pages/c/_cluster/apps/charts/install.vue +10 -9
- package/pages/c/_cluster/explorer/index.vue +72 -9
- package/pages/c/_cluster/explorer/tools/index.vue +12 -5
- package/pages/c/_cluster/mcapps/index.vue +1 -1
- package/pages/c/_cluster/settings/DefaultLinksEditor.vue +108 -0
- package/pages/c/_cluster/settings/brand.vue +0 -40
- package/pages/c/_cluster/settings/links.vue +152 -0
- package/pages/c/_cluster/settings/performance.vue +90 -7
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +232 -0
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +293 -0
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +300 -0
- package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +125 -0
- package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +261 -0
- package/pages/c/_cluster/uiplugins/UninstallDialog.vue +122 -0
- package/pages/c/_cluster/uiplugins/index.vue +808 -0
- package/pages/diagnostic.vue +185 -101
- package/pages/docs/_doc.vue +3 -1
- package/pages/home.vue +21 -56
- package/pages/prefs.vue +108 -88
- package/pages/safeMode.vue +17 -0
- package/pages/support/index.vue +34 -137
- package/pkg/dynamic-importer.lib.js +4 -0
- package/plugins/dashboard-store/actions.js +19 -0
- package/plugins/dashboard-store/getters.js +20 -3
- package/plugins/dashboard-store/mutations.js +13 -7
- package/plugins/dashboard-store/resource-class.js +2 -2
- package/plugins/formatters.js +15 -0
- package/plugins/plugin.js +61 -6
- package/plugins/steve/getters.js +12 -0
- package/plugins/steve/mutations.js +1 -1
- package/plugins/steve/subscribe.js +94 -72
- package/plugins/steve/web-worker.steve-sub-worker.js +24 -15
- package/plugins/version.js +21 -0
- package/promptRemove/management.cattle.io.globalrole.vue +47 -0
- package/promptRemove/management.cattle.io.roletemplate.vue +47 -0
- package/promptRemove/mixin/roleDeletionCheck.js +97 -0
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +6 -7
- package/rancher-components/components/BadgeState/BadgeState.spec.ts +12 -0
- package/rancher-components/components/BadgeState/BadgeState.vue +107 -0
- package/rancher-components/components/BadgeState/index.ts +1 -0
- package/rancher-components/components/Banner/Banner.test.ts +13 -0
- package/rancher-components/components/Banner/Banner.vue +163 -0
- package/rancher-components/components/Banner/index.ts +1 -0
- package/rancher-components/components/Card/Card.vue +150 -0
- package/rancher-components/components/Card/index.ts +1 -0
- package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +77 -0
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +395 -0
- package/rancher-components/components/Form/Checkbox/index.ts +1 -0
- package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +29 -0
- package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +343 -0
- package/rancher-components/components/Form/LabeledInput/index.ts +1 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +270 -0
- package/rancher-components/components/Form/Radio/RadioGroup.vue +235 -0
- package/rancher-components/components/Form/Radio/index.ts +2 -0
- package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +168 -0
- package/rancher-components/components/Form/TextArea/index.ts +1 -0
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +107 -0
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +137 -0
- package/rancher-components/components/Form/ToggleSwitch/index.ts +1 -0
- package/rancher-components/components/Form/index.ts +5 -0
- package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +137 -0
- package/rancher-components/components/LabeledTooltip/index.ts +1 -0
- package/scripts/publish-shell.sh +40 -7
- package/scripts/record-deps.js +37 -0
- package/scripts/sync-shell-deps +37 -0
- package/scripts/test-plugins-build.sh +8 -5
- package/scripts/typegen.sh +84 -0
- package/store/auth.js +3 -0
- package/store/catalog.js +9 -8
- package/store/i18n.js +10 -1
- package/store/index.js +12 -3
- package/store/prefs.js +16 -0
- package/store/type-map.js +32 -5
- package/store/uiplugins.ts +15 -61
- package/types/shell/index.d.ts +3046 -0
- package/utils/__tests__/object.test.ts +0 -24
- package/utils/__tests__/selector.test.ts +1 -1
- package/utils/dynamic-importer.js +4 -0
- package/utils/favicon.js +8 -2
- package/utils/gc/gc-interval.ts +40 -0
- package/utils/gc/gc-root-store.js +76 -0
- package/utils/gc/gc-route-changed.ts +44 -0
- package/utils/gc/gc-types.ts +21 -0
- package/utils/gc/gc.ts +282 -0
- package/utils/grafana.js +2 -6
- package/utils/socket.js +41 -20
- package/utils/string.js +1 -7
- package/utils/validators/formRules/__tests__/index.test.ts +108 -0
- package/utils/validators/formRules/index.ts +9 -1
- package/config/footer.js +0 -19
- package/creators/pkg/nuxt.config.js +0 -6
- package/pages/plugins.vue +0 -387
- package/server/verdaccio-middleware.js +0 -56
|
@@ -43,10 +43,12 @@ generic:
|
|
|
43
43
|
info: Info
|
|
44
44
|
warning: Warning
|
|
45
45
|
error: Error
|
|
46
|
+
ok: OK
|
|
46
47
|
overview: Overview
|
|
47
48
|
plusMore: "+ {n} more"
|
|
48
49
|
readFromFile: Read from File
|
|
49
50
|
readFromFolder: Read from Folder
|
|
51
|
+
reload: Reload
|
|
50
52
|
register: Register
|
|
51
53
|
remove: Remove
|
|
52
54
|
resource: |-
|
|
@@ -184,10 +186,11 @@ product:
|
|
|
184
186
|
settings: Global Settings
|
|
185
187
|
clusterManagement: Cluster Management
|
|
186
188
|
monitoring: Monitoring
|
|
187
|
-
mcapps:
|
|
189
|
+
mcapps: Global Configuration
|
|
188
190
|
neuvector: NeuVector
|
|
189
191
|
harvesterManager: Virtualization Management
|
|
190
192
|
rancher: Rancher
|
|
193
|
+
uiplugins: Extensions
|
|
191
194
|
|
|
192
195
|
suffix:
|
|
193
196
|
percent: "%"
|
|
@@ -242,19 +245,26 @@ about:
|
|
|
242
245
|
checkboxLabel: Make additional requests
|
|
243
246
|
systemInformation:
|
|
244
247
|
subtitle: System Information
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
deviceMemory: Device Memory
|
|
250
|
-
hardwareConcurrency: Hardware Concurrency
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
248
|
+
browser: Browser
|
|
249
|
+
browserInfo: "User Agent: {userAgent}, Language: {language}, Cookies Enabled: {cookieEnabled}"
|
|
250
|
+
system: System
|
|
251
|
+
jsMemory: Javascript Memory
|
|
252
|
+
deviceMemory: "Device Memory: {deviceMemory}"
|
|
253
|
+
hardwareConcurrency: "Hardware Concurrency: {hardwareConcurrency}"
|
|
254
|
+
os: "OS: {platform}"
|
|
255
|
+
memJsHeapLimit: "Heap Size limit: {jsHeapSizeLimit}"
|
|
256
|
+
memTotalJsHeapSize: "Total Heap Size: {totalJSHeapSize}"
|
|
257
|
+
memUsedJsHeapSize: "Used Heap Size: {usedJSHeapSize}"
|
|
254
258
|
logs:
|
|
255
259
|
subtitle: Latest Logs
|
|
256
|
-
resourceCounts:
|
|
257
|
-
|
|
260
|
+
resourceCounts: |-
|
|
261
|
+
{count, plural,
|
|
262
|
+
one { Resource Counts by Cluster ({count} cluster)}
|
|
263
|
+
other { Resource Counts by Cluster ({count} clusters)}
|
|
264
|
+
}
|
|
265
|
+
modal:
|
|
266
|
+
title: Response times have not yet been generated.
|
|
267
|
+
body: Generate response times to offer more specific information.
|
|
258
268
|
|
|
259
269
|
accountAndKeys:
|
|
260
270
|
title: Account and API Keys
|
|
@@ -564,7 +574,7 @@ asyncButton:
|
|
|
564
574
|
waiting: Deactivating…
|
|
565
575
|
success: Deactivated
|
|
566
576
|
diagnostic:
|
|
567
|
-
action: Download
|
|
577
|
+
action: Download Diagnostic Package
|
|
568
578
|
success: Saving
|
|
569
579
|
waiting: Downloading…
|
|
570
580
|
done:
|
|
@@ -598,7 +608,11 @@ asyncButton:
|
|
|
598
608
|
install:
|
|
599
609
|
action: Install
|
|
600
610
|
success: Installing
|
|
601
|
-
waiting:
|
|
611
|
+
waiting: Installing…
|
|
612
|
+
load:
|
|
613
|
+
action: Load
|
|
614
|
+
success: Loaded
|
|
615
|
+
waiting: Loadingg…
|
|
602
616
|
pause:
|
|
603
617
|
action: Pause Orchestration
|
|
604
618
|
success: Paused Orchestration
|
|
@@ -641,6 +655,10 @@ asyncButton:
|
|
|
641
655
|
action: Snapshot Now
|
|
642
656
|
waiting: Snapshot Initiated…
|
|
643
657
|
success: Snapshot Creating
|
|
658
|
+
timing:
|
|
659
|
+
action: Generate Response Times
|
|
660
|
+
waiting: Generating…
|
|
661
|
+
success: Response Times Generated
|
|
644
662
|
uninstall:
|
|
645
663
|
action: Uninstall
|
|
646
664
|
success: Uninstalled
|
|
@@ -800,7 +818,8 @@ catalog:
|
|
|
800
818
|
enableLegacy:
|
|
801
819
|
prompt: You will need to enable Legacy Features to edit this App
|
|
802
820
|
goto: Go to Feature Flag settings
|
|
803
|
-
navigate: Navigate to
|
|
821
|
+
navigate: Navigate to Legacy Apps
|
|
822
|
+
mcmNotSupported: Legacy Multi-cluster Apps can not be managed through this UI
|
|
804
823
|
category:
|
|
805
824
|
legacy: Legacy
|
|
806
825
|
mcm: Multi-cluster
|
|
@@ -902,6 +921,8 @@ catalog:
|
|
|
902
921
|
rancher-charts: '{vendor}'
|
|
903
922
|
rancher-partner-charts: Partners
|
|
904
923
|
rancher-rke2-charts: RKE2
|
|
924
|
+
rancher-ui-plugins: Rancher Extensions
|
|
925
|
+
|
|
905
926
|
target:
|
|
906
927
|
git: Git repository containing Helm chart or cluster template definitions
|
|
907
928
|
http: http(s) URL to an index generated by Helm
|
|
@@ -1084,7 +1105,7 @@ cluster:
|
|
|
1084
1105
|
help: The default region to use when creating clusters. Also contacted to verify that this credential works.
|
|
1085
1106
|
label: Default Region
|
|
1086
1107
|
secretKey:
|
|
1087
|
-
label:
|
|
1108
|
+
label: Secret Key
|
|
1088
1109
|
placeholder: Your AWS Secret Key
|
|
1089
1110
|
azure:
|
|
1090
1111
|
clientId:
|
|
@@ -1191,6 +1212,9 @@ cluster:
|
|
|
1191
1212
|
warning:
|
|
1192
1213
|
label: This is a Harvester Cluster - enable the Harvester feature flag to manage it
|
|
1193
1214
|
state: Warning
|
|
1215
|
+
cloudProvider:
|
|
1216
|
+
incompatible:
|
|
1217
|
+
You cannot select the Harvester cloud provider as the current Harvester version is not compatible with the selected RKE2 Kubernetes version, click <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.suse.com/suse-harvester/support-matrix/all-supported-versions">here</a> to see which Kubernetes versions are supported.
|
|
1194
1218
|
clusterWarning: |-
|
|
1195
1219
|
There {count, plural,
|
|
1196
1220
|
=1 {is 1 Harvester cluster that is not shown}
|
|
@@ -1525,7 +1549,7 @@ cluster:
|
|
|
1525
1549
|
=5 {}
|
|
1526
1550
|
=6 { Clusters should have an odd number of nodes. }
|
|
1527
1551
|
=7 {}
|
|
1528
|
-
other { More than 7 etcd
|
|
1552
|
+
other { More than 7 etcd nodes is not recommended. }
|
|
1529
1553
|
}
|
|
1530
1554
|
worker: |-
|
|
1531
1555
|
{count, plural,
|
|
@@ -1557,10 +1581,10 @@ cluster:
|
|
|
1557
1581
|
noResults: No results found
|
|
1558
1582
|
privateRegistry:
|
|
1559
1583
|
systemDefaultRegistry:
|
|
1560
|
-
label: Registry hostname for {vendor}
|
|
1584
|
+
label: Registry hostname for {vendor} System Container Images
|
|
1561
1585
|
mode:
|
|
1562
|
-
public:
|
|
1563
|
-
private:
|
|
1586
|
+
public: Use default global registry for {vendor} System Container Images
|
|
1587
|
+
private: Use specified private registry for {vendor} System Container Images
|
|
1564
1588
|
advanced: Configure advanced containerd mirroring and registry authentication options
|
|
1565
1589
|
provider:
|
|
1566
1590
|
aliyunecs: Aliyun ECS
|
|
@@ -1611,7 +1635,7 @@ cluster:
|
|
|
1611
1635
|
rancherkubernetesengine: RKE
|
|
1612
1636
|
rke2: RKE2
|
|
1613
1637
|
rke: RKE1
|
|
1614
|
-
rkeWindows: Windows
|
|
1638
|
+
rkeWindows: Windows (RKE1 only)
|
|
1615
1639
|
s3: S3-Compatible
|
|
1616
1640
|
softlayer: IBM Cloud
|
|
1617
1641
|
tencenttke: Tencent TKE
|
|
@@ -1650,6 +1674,7 @@ cluster:
|
|
|
1650
1674
|
label: Default Pod Security Policy
|
|
1651
1675
|
enableNetworkPolicy:
|
|
1652
1676
|
label: Project Network Isolation
|
|
1677
|
+
warning: Per default, the ingress controller will not be able to route requests to pods on other nodes.
|
|
1653
1678
|
workNode:
|
|
1654
1679
|
label: Worker Nodes
|
|
1655
1680
|
controlPlaneConcurrency:
|
|
@@ -2067,6 +2092,7 @@ glance:
|
|
|
2067
2092
|
installMonitoring: Install Monitoring
|
|
2068
2093
|
v1MonitoringInstalled: V1 Monitoring Installed
|
|
2069
2094
|
clusterInfo: Cluster Information
|
|
2095
|
+
eventsTable: Full events list
|
|
2070
2096
|
|
|
2071
2097
|
clusterBadge:
|
|
2072
2098
|
addLabel: Add Cluster Badge
|
|
@@ -2096,9 +2122,15 @@ graphOptions:
|
|
|
2096
2122
|
|
|
2097
2123
|
growl:
|
|
2098
2124
|
clearAll: Clear All Notifications
|
|
2099
|
-
|
|
2100
|
-
message: "The connection to {url} closed unexpectedly {time}.
|
|
2125
|
+
disconnectError:
|
|
2126
|
+
message: "The connection to {url} closed unexpectedly at {time}. Disconnected after {tries} reconnect attempts. Check your network connection and reload the page"
|
|
2101
2127
|
title: Websocket Disconnected
|
|
2128
|
+
connectError:
|
|
2129
|
+
message: "The connection to {url} closed unexpectedly at {time}. Reconnect attempt #{tries}."
|
|
2130
|
+
title: Websocket Reconnecting
|
|
2131
|
+
reconnected:
|
|
2132
|
+
message: "The connection to {url} was restored on attempt #{tries}."
|
|
2133
|
+
title: Websocket Reconnected
|
|
2102
2134
|
|
|
2103
2135
|
hpa:
|
|
2104
2136
|
detail:
|
|
@@ -2442,10 +2474,9 @@ landing:
|
|
|
2442
2474
|
seeWhatsNew: Learn more about the improvements and new capabilities in this version.
|
|
2443
2475
|
whatsNewLink: "What's new in 2.6"
|
|
2444
2476
|
learnMore: Learn More
|
|
2445
|
-
gettingStarted:
|
|
2446
|
-
title: Getting Started
|
|
2447
|
-
body: Take a look at the the quick getting started guide. For Cluster Manager users, learn more about where you can find your favorite features in the Dashboard UI.
|
|
2448
2477
|
support: Support
|
|
2478
|
+
psps: PSPs
|
|
2479
|
+
deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25. You have one or more PodSecurityPolicy resource(s) in this cluster.
|
|
2449
2480
|
community:
|
|
2450
2481
|
title: Community Support
|
|
2451
2482
|
docs: Docs
|
|
@@ -3634,6 +3665,96 @@ persistentVolumeClaim:
|
|
|
3634
3665
|
readWriteMany: Many Nodes Read-Write
|
|
3635
3666
|
status:
|
|
3636
3667
|
label: Status
|
|
3668
|
+
|
|
3669
|
+
# Rancher Extensions
|
|
3670
|
+
plugins:
|
|
3671
|
+
labels:
|
|
3672
|
+
builtin: Built-in
|
|
3673
|
+
experimental: Experimental
|
|
3674
|
+
third-party: Third-Party
|
|
3675
|
+
installing: Installing ...
|
|
3676
|
+
uninstalling: Uninstalling ...
|
|
3677
|
+
descriptions:
|
|
3678
|
+
experimental: This Extension is marked as experimental
|
|
3679
|
+
third-party: This Extension is provided by a Third-Party
|
|
3680
|
+
error:
|
|
3681
|
+
title: Error loading extension
|
|
3682
|
+
message: Could not load extension code
|
|
3683
|
+
generic: Extension error
|
|
3684
|
+
api: This Extension is not compatible with the Extensions API
|
|
3685
|
+
host: This Extension is not compatible with this application
|
|
3686
|
+
version: This Extension is not compatible with this version of Rancher
|
|
3687
|
+
load: An error occurred loading the code for this Extension
|
|
3688
|
+
success:
|
|
3689
|
+
title: Loaded extension {name}
|
|
3690
|
+
message: Extension was loaded successfully
|
|
3691
|
+
developer:
|
|
3692
|
+
label: Developer Load
|
|
3693
|
+
title: Developer Load Extension
|
|
3694
|
+
prompt: Load an extension from a URL
|
|
3695
|
+
fields:
|
|
3696
|
+
url: Extension URL
|
|
3697
|
+
name: Extension module name
|
|
3698
|
+
persist: Persist extension by creating custom resource
|
|
3699
|
+
info:
|
|
3700
|
+
detail: Detail
|
|
3701
|
+
versions: Versions
|
|
3702
|
+
versionError: Could not load version information
|
|
3703
|
+
empty:
|
|
3704
|
+
all: Extensions are neither installed or available
|
|
3705
|
+
available: No Extensions available
|
|
3706
|
+
installed: No Extensions installed
|
|
3707
|
+
updates: No updates available for installed Extensions
|
|
3708
|
+
loadError: An error occurred loading the code for this extension
|
|
3709
|
+
helmError: "An error occurred installing the extension via Helm"
|
|
3710
|
+
tabs:
|
|
3711
|
+
all: All
|
|
3712
|
+
available: Available
|
|
3713
|
+
installed: Installed
|
|
3714
|
+
updates: Updates
|
|
3715
|
+
title: Extensions
|
|
3716
|
+
version: "Version: {version}"
|
|
3717
|
+
install:
|
|
3718
|
+
label: Install
|
|
3719
|
+
title: Install Extension {name}
|
|
3720
|
+
prompt: "Are you sure that you want to install this Extension?"
|
|
3721
|
+
version: Version
|
|
3722
|
+
warnNotCertified: Please ensure that you are aware of the risks of installing Extensions from untrusted authors
|
|
3723
|
+
update:
|
|
3724
|
+
label: Update
|
|
3725
|
+
title: Update Extension {name}
|
|
3726
|
+
prompt: "Are you sure that you want to update this Extension?"
|
|
3727
|
+
rollback:
|
|
3728
|
+
label: Rollback
|
|
3729
|
+
title: Rollback Extension {name}
|
|
3730
|
+
prompt: "Are you sure that you want to rollback this Extension?"
|
|
3731
|
+
uninstall:
|
|
3732
|
+
label: Uninstall
|
|
3733
|
+
title: "Uninstall Extension: {name}"
|
|
3734
|
+
prompt: "Are you sure that you want to uninstall this Extension?"
|
|
3735
|
+
upgradeAvailable: A newer version of this Extension is available
|
|
3736
|
+
reload: Extensions changed - reload required
|
|
3737
|
+
safeMode:
|
|
3738
|
+
title: Extensions Safe Mode
|
|
3739
|
+
message: Extensions were not loaded
|
|
3740
|
+
setup:
|
|
3741
|
+
title: Extension support is not enabled
|
|
3742
|
+
prompt:
|
|
3743
|
+
cant: Automatic installation is not available - required Helm Charts could not be found
|
|
3744
|
+
can: You need to install the Extension Operator
|
|
3745
|
+
install:
|
|
3746
|
+
title: Enable Extension Support?
|
|
3747
|
+
prompt: This will install the Helm charts to enable Extension support
|
|
3748
|
+
airgap: The Rancher Extensions Repository provides extensions published by Rancher. Un-check if your Rancher installation is air-gapped
|
|
3749
|
+
addRancherRepo: Add the Rancher Extension Repository
|
|
3750
|
+
remove:
|
|
3751
|
+
label: Disable Extension Support
|
|
3752
|
+
title: Disable Extension Support?
|
|
3753
|
+
prompt: This will un-install the Helm charts that enable Extension support
|
|
3754
|
+
registry:
|
|
3755
|
+
title: Remove the Rancher Extensions Repository
|
|
3756
|
+
prompt: The Rancher Extensions Repository provides extensions published by Rancher
|
|
3757
|
+
|
|
3637
3758
|
prefs:
|
|
3638
3759
|
title: Preferences
|
|
3639
3760
|
theme:
|
|
@@ -3642,11 +3763,12 @@ prefs:
|
|
|
3642
3763
|
auto: Auto
|
|
3643
3764
|
dark: Dark
|
|
3644
3765
|
autoDetail: Auto uses OS preference if available, or dark from {pm} to {am}
|
|
3766
|
+
language: Language
|
|
3645
3767
|
landing:
|
|
3646
3768
|
label: Login Landing Page
|
|
3647
3769
|
vue: Cluster Explorer
|
|
3648
3770
|
ember: Cluster Manager
|
|
3649
|
-
displaySettings:
|
|
3771
|
+
displaySettings:
|
|
3650
3772
|
title: Display Settings
|
|
3651
3773
|
detail: Change the way information is displayed in the UI.
|
|
3652
3774
|
clusterToShow:
|
|
@@ -3666,12 +3788,14 @@ prefs:
|
|
|
3666
3788
|
sublime: 'Normal human'
|
|
3667
3789
|
emacs: 'Emacs'
|
|
3668
3790
|
vim: 'Vim'
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3791
|
+
advFeatures:
|
|
3792
|
+
title: Advanced Features
|
|
3793
|
+
viewInApi: Enable "View in API"
|
|
3794
|
+
allNamespaces: Show system Namespaces managed by Rancher (not intended for editing or deletion)
|
|
3795
|
+
themeShortcut: Enable Dark/Light Theme keyboard shortcut toggle (shift+T)
|
|
3796
|
+
pluginDeveloper: Enable Extension developer features
|
|
3673
3797
|
hideDesc:
|
|
3674
|
-
label: Hide All Type
|
|
3798
|
+
label: Hide All Type Descriptions
|
|
3675
3799
|
helm:
|
|
3676
3800
|
'true': Include Prerelease Versions
|
|
3677
3801
|
'false': Show Releases Only
|
|
@@ -3960,6 +4084,18 @@ rbac:
|
|
|
3960
4084
|
noContext:
|
|
3961
4085
|
label: No Context
|
|
3962
4086
|
globalRoles:
|
|
4087
|
+
notBound: 'No users bound <i class="icon icon-checkmark" style="margin-left: 5px"></i>'
|
|
4088
|
+
unableToCheck: Unable to check if any user is bound to the role(s). Please try again.
|
|
4089
|
+
waiting: |-
|
|
4090
|
+
{count, plural,
|
|
4091
|
+
=1 { Checking if there are any users bound to this role <i class="icon-spin icon icon-spinner" style="margin-left: 5px"></i> }
|
|
4092
|
+
other { Checking if there are any users bound to these roles <i class="icon-spin icon icon-spinner" style="margin-left: 5px"></i> }
|
|
4093
|
+
}
|
|
4094
|
+
usersBound: |-
|
|
4095
|
+
{count, plural,
|
|
4096
|
+
=1 { Caution: There is 1 user bound to the role(s) about to be deleted. Do you want to proceed? }
|
|
4097
|
+
other { Caution: There are {count} users bound to the role(s) about to be deleted. Do you want to proceed? }
|
|
4098
|
+
}
|
|
3963
4099
|
types:
|
|
3964
4100
|
global:
|
|
3965
4101
|
label: Global Permissions
|
|
@@ -4366,7 +4502,7 @@ setup:
|
|
|
4366
4502
|
dockerSuffix: ""
|
|
4367
4503
|
helmPrefix: 'For a Helm installation, run:'
|
|
4368
4504
|
helmSuffix: ""
|
|
4369
|
-
eula:
|
|
4505
|
+
eula: By checking the box, you accept the <a href="https://rancher.com/eula" target="_blank" rel="noopener noreferrer nofollow">End User License Agreement & Terms & Conditions</a>
|
|
4370
4506
|
newPassword: New Password
|
|
4371
4507
|
newUserSetPassword: The first order of business is to set a strong password. We suggest using this random one generated just for you, but enter your own if you like.
|
|
4372
4508
|
serverUrl:
|
|
@@ -4374,7 +4510,7 @@ setup:
|
|
|
4374
4510
|
skip: Skip
|
|
4375
4511
|
tip: What URL should be used for this {vendor} installation? All the nodes in your clusters will need to be able to reach this.
|
|
4376
4512
|
setPassword: The first order of business is to set a strong password for the default <code>{username}</code> user. We suggest using this random one generated just for you, but enter your own if you like.
|
|
4377
|
-
telemetry: Allow collection of <a href="{docsBase}/faq/telemetry/" target="_blank" rel="noopener noreferrer nofollow">anonymous statistics</a> to help us improve {name}
|
|
4513
|
+
telemetry: Allow collection of <a href="{docsBase}/faq/telemetry/" target="_blank" rel="noopener noreferrer nofollow">anonymous statistics</a> to help us improve {name}
|
|
4378
4514
|
useManual: Set a specific password to use
|
|
4379
4515
|
useRandom: Use a randomly generated password
|
|
4380
4516
|
welcome: Welcome to {vendor}!
|
|
@@ -5452,6 +5588,8 @@ workload:
|
|
|
5452
5588
|
addClaim: Add Claim
|
|
5453
5589
|
addMount: Add Mount
|
|
5454
5590
|
addVolume: Add Volume
|
|
5591
|
+
selectVolume: Select Volume
|
|
5592
|
+
noVolumes: Volumes will appear here after they are added in the Pod tab
|
|
5455
5593
|
certificate: Certificate
|
|
5456
5594
|
csi:
|
|
5457
5595
|
diskName: Disk Name
|
|
@@ -5512,6 +5650,7 @@ workload:
|
|
|
5512
5650
|
apps.statefulset: StatefulSets manage stateful applications and provide guarantees about the ordering and uniqueness of the pods created. Recommended for workloads with persistent storage or strict identity, quorum, or upgrade order requirements.
|
|
5513
5651
|
batch.cronjob: CronJobs create Jobs, which then run Pods, on a repeating schedule. The schedule is expressed in standard Unix cron format, and uses the timezone of the Kubernetes control plane (typically UTC).
|
|
5514
5652
|
batch.job: Jobs create one or more pods to reliably perform a one-time task by running a pod until it exits successfully. Failed pods are automatically replaced until the specified number of completed runs has been reached. Jobs can also run multiple pods in parallel or function as a batch work queue.
|
|
5653
|
+
pod: Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.
|
|
5515
5654
|
upgrading:
|
|
5516
5655
|
activeDeadlineSeconds:
|
|
5517
5656
|
label: Pod Active Deadline
|
|
@@ -5978,12 +6117,11 @@ advancedSettings:
|
|
|
5978
6117
|
'engine-supported-range': 'Semver range for supported Docker engine versions. Versions which do not satisfy this range will be marked unsupported in the UI.'
|
|
5979
6118
|
'ingress-ip-domain': 'Wildcard DNS domain to use for automatically generated Ingress hostnames. <ingress-name>.<namespace-name>.<ip address of ingress controller> will be added to the domain.'
|
|
5980
6119
|
'server-url': 'Default {appName} install url. Must be HTTPS. All nodes in your cluster must be able to reach this.'
|
|
5981
|
-
'system-default-registry': 'Private registry to be used for all
|
|
6120
|
+
'system-default-registry': 'Private registry to be used for all Rancher System Container Images. If no value is specified, the default registry for the container runtime is used. For Docker and containerd, the default is `docker.io`.'
|
|
5982
6121
|
'ui-index': 'HTML index location for the Cluster Manager UI.'
|
|
5983
6122
|
'ui-dashboard-index': 'HTML index location for the {appName} UI.'
|
|
5984
6123
|
'ui-offline-preferred': 'Controls whether UI assets are served locally by the server container or from the remote URL defined in the ui-index and ui-dashboard-index settings. The `Dynamic` option will use local assets in production builds of {appName}.'
|
|
5985
6124
|
'ui-pl': 'Private-Label company name.'
|
|
5986
|
-
'ui-issues': "Use a url address to send new 'File an Issue' reports instead of sending users to the Github issues page."
|
|
5987
6125
|
'telemetry-opt': 'Telemetry reporting opt-in.'
|
|
5988
6126
|
'auth-user-info-max-age-seconds': 'The maximum age of a users auth tokens before an auth provider group membership sync will be performed.'
|
|
5989
6127
|
'auth-user-info-resync-cron': 'Default cron schedule for resyncing auth provider group memberships.'
|
|
@@ -6044,7 +6182,7 @@ performance:
|
|
|
6044
6182
|
label: Incremental Loading
|
|
6045
6183
|
setting: You can configure the threshold above which incremental loading will be used.
|
|
6046
6184
|
description: |-
|
|
6047
|
-
When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to
|
|
6185
|
+
When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to resources that come from the Kubernetes API
|
|
6048
6186
|
checkboxLabel: Enable incremental loading
|
|
6049
6187
|
inputLabel: Resource Threshold
|
|
6050
6188
|
manualRefresh:
|
|
@@ -6053,7 +6191,7 @@ performance:
|
|
|
6053
6191
|
setting: You can configure a threshold above which manual refresh will be enabled.
|
|
6054
6192
|
buttonTooltip: Refresh list
|
|
6055
6193
|
description: |-
|
|
6056
|
-
When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to
|
|
6194
|
+
When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to resources that come from the Kubernetes API
|
|
6057
6195
|
checkboxLabel: Enable manual refresh of data for lists
|
|
6058
6196
|
inputLabel: Resource Threshold
|
|
6059
6197
|
websocketNotification:
|
|
@@ -6061,6 +6199,29 @@ performance:
|
|
|
6061
6199
|
description: |-
|
|
6062
6200
|
When checked, websocket notifications will not appear when the UI detects a disconnection.
|
|
6063
6201
|
checkboxLabel: Disable websocket notifications
|
|
6202
|
+
gc:
|
|
6203
|
+
label: Resource Garbage Collection
|
|
6204
|
+
description: The UI will cache kuberentes resources locally to avoid having to re-fetch them. In some cases this can lead to a large amount of data stored in the browser. Enable this setting to periodically remove them.
|
|
6205
|
+
banner: This setting is experimental and may be removed or updated in future versions.
|
|
6206
|
+
checkboxLabel: Enable Garbage Collection
|
|
6207
|
+
whenRun:
|
|
6208
|
+
description: Update when garbage collection runs
|
|
6209
|
+
intervalCheckBox:
|
|
6210
|
+
label: Run garbage collection periodically
|
|
6211
|
+
interval:
|
|
6212
|
+
inputLabel: Run every
|
|
6213
|
+
route:
|
|
6214
|
+
description: Run garbage collection on page change
|
|
6215
|
+
inputLabel: Page Change
|
|
6216
|
+
howRun:
|
|
6217
|
+
description: Update how garbage collection runs
|
|
6218
|
+
age:
|
|
6219
|
+
description: "Resource types musn't have been accessed within this period to be considered for garbage collection."
|
|
6220
|
+
inputLabel: Resource Age
|
|
6221
|
+
count:
|
|
6222
|
+
description: Resource types must exceed this amount to be considered for garbage collection.
|
|
6223
|
+
inputLabel: Resource Count
|
|
6224
|
+
|
|
6064
6225
|
|
|
6065
6226
|
banner:
|
|
6066
6227
|
label: Fixed Banners
|
|
@@ -6117,11 +6278,6 @@ branding:
|
|
|
6117
6278
|
custom: Define a Custom Theme
|
|
6118
6279
|
uiPL:
|
|
6119
6280
|
label: Private Label
|
|
6120
|
-
uiIssues:
|
|
6121
|
-
label: Support Links
|
|
6122
|
-
issuesUrl: Issue Reporting URL
|
|
6123
|
-
invalidUrl: The issue reporting value must be a complete URL, including protocol.
|
|
6124
|
-
communityLinks: Show Rancher community support links
|
|
6125
6281
|
color:
|
|
6126
6282
|
label: Primary Color
|
|
6127
6283
|
tip: You can override the primary color used throughout the UI with a custom color of your choice.
|
|
@@ -6182,6 +6338,26 @@ resourceQuota:
|
|
|
6182
6338
|
namespace: 'This Namespace:'
|
|
6183
6339
|
available: 'Available:'
|
|
6184
6340
|
max: 'Total:'
|
|
6341
|
+
customLinks:
|
|
6342
|
+
displayTitle: Links
|
|
6343
|
+
label: Home Links
|
|
6344
|
+
description: 'Configure the links to display on the home page. You can define your own custom links as well as show or hide default links.'
|
|
6345
|
+
restoreDefaults: 'Restore Defaults'
|
|
6346
|
+
addLink: Add Link
|
|
6347
|
+
restoreSuccess: Default URLs have been restored.
|
|
6348
|
+
settings:
|
|
6349
|
+
default: Default Links
|
|
6350
|
+
custom: Custom Links
|
|
6351
|
+
keyLabel: Display Text
|
|
6352
|
+
valueLabel: URL
|
|
6353
|
+
showLabel: Show
|
|
6354
|
+
defaults:
|
|
6355
|
+
docs: Docs
|
|
6356
|
+
forums: Forums
|
|
6357
|
+
slack: Slack
|
|
6358
|
+
issues: File an Issue
|
|
6359
|
+
getStarted: Get Started
|
|
6360
|
+
commercialSupport: Commercial Support
|
|
6185
6361
|
|
|
6186
6362
|
|
|
6187
6363
|
|
|
@@ -6247,16 +6423,12 @@ legacy:
|
|
|
6247
6423
|
alerts: Alerts
|
|
6248
6424
|
apps: Apps
|
|
6249
6425
|
catalogs: Catalogs
|
|
6250
|
-
cis-scans: CIS Scans
|
|
6251
6426
|
configMaps: Config Maps
|
|
6252
6427
|
configuration: Configuration
|
|
6253
6428
|
globalDnsEntries: Global DNS Entries
|
|
6254
6429
|
globalDnsProviders: Global DNS Providers
|
|
6255
|
-
istio: Istio
|
|
6256
|
-
logging: Logging
|
|
6257
6430
|
notifiers: Notifiers
|
|
6258
6431
|
monitoring: Monitoring
|
|
6259
|
-
pipelines: Pipelines
|
|
6260
6432
|
psps: Pod Security Policies
|
|
6261
6433
|
secrets: Secrets
|
|
6262
6434
|
|
|
@@ -191,7 +191,6 @@ product:
|
|
|
191
191
|
mcapps: 多集群应用
|
|
192
192
|
neuvector: NeuVector
|
|
193
193
|
harvesterManager: 虚拟化管理
|
|
194
|
-
harvester: Harvester
|
|
195
194
|
rancher: Rancher
|
|
196
195
|
|
|
197
196
|
suffix:
|
|
@@ -1500,6 +1499,7 @@ cluster:
|
|
|
1500
1499
|
warning: '此集群包含此表单不完全支持的 machineSelectorConfig。使用 YAML 编辑器管理完整配置。'
|
|
1501
1500
|
os: '你正在将 {newOS} worker 节点添加到具有一个或多个 {existingOS} worker 节点的集群。你可能需要升级或删除某些已安装的应用。'
|
|
1502
1501
|
rke2-k3-reprovisioning: '更改集群配置可能导致节点重新配置。详情请参见 <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">文档</a>。'
|
|
1502
|
+
desiredNodeGroupWarning: 没有可用于运行 Cluster Agent 的节点。要让集群变为 Active 状态,至少需要有 1 个可用的节点。
|
|
1503
1503
|
|
|
1504
1504
|
rkeTemplateUpgrade: 模板修订版 {name} 可用于升级
|
|
1505
1505
|
|
|
@@ -1557,7 +1557,7 @@ cluster:
|
|
|
1557
1557
|
autoReplace:
|
|
1558
1558
|
label: 自动替换
|
|
1559
1559
|
toolTip: 如果大于 0,则在此期间无法访问的节点将被自动删除和替换。
|
|
1560
|
-
unit: "
|
|
1560
|
+
unit: "秒"
|
|
1561
1561
|
managementTimeout: 集群变成可用。可能已创建了集群。建议在创建另一个集群之前检查集群页面。
|
|
1562
1562
|
memberRoles:
|
|
1563
1563
|
removeMessage: '注意:删除用户不会删除其项目权限。'
|
|
@@ -2457,10 +2457,6 @@ landing:
|
|
|
2457
2457
|
seeWhatsNew: 点击右侧链接,了解此版本的新功能和优化。
|
|
2458
2458
|
whatsNewLink: "2.6 的新功能"
|
|
2459
2459
|
learnMore: 了解更多
|
|
2460
|
-
gettingStarted:
|
|
2461
|
-
title: 快速入门
|
|
2462
|
-
body: 查看快速入门指南。Cluster Manager 用户可以了解 Dashboard UI 的更多新功能。
|
|
2463
|
-
support: 支持
|
|
2464
2460
|
community:
|
|
2465
2461
|
title: 社区支持
|
|
2466
2462
|
docs: Rancher 官方文档
|
|
@@ -3661,7 +3657,9 @@ prefs:
|
|
|
3661
3657
|
label: 登录页面
|
|
3662
3658
|
vue: 集群浏览器
|
|
3663
3659
|
ember: Cluster Manager
|
|
3664
|
-
|
|
3660
|
+
displaySettings:
|
|
3661
|
+
title: 显示设置
|
|
3662
|
+
detail: 更改在 UI 中显示信息的方式。
|
|
3665
3663
|
clusterToShow:
|
|
3666
3664
|
label: 在侧边栏显示的集群数量
|
|
3667
3665
|
value: |-
|
|
@@ -3871,7 +3869,7 @@ promptRemove:
|
|
|
3871
3869
|
confirmName: "在下方输入 <b>{nameToMatch}</b> 以确认:"
|
|
3872
3870
|
deleteAssociatedNamespaces: "同时删除此项目中的命名空间:"
|
|
3873
3871
|
willDeleteAssociatedNamespaces: "项目中的所有命名空间也都会被删除:"
|
|
3874
|
-
confirmRelatedResource: "删除 {type}
|
|
3872
|
+
confirmRelatedResource: "删除 {type} 将删除这个 {type} 上的所有资源,此过程不可逆。你确定要继续删除 {names} 吗?"
|
|
3875
3873
|
|
|
3876
3874
|
promptRemoveApp:
|
|
3877
3875
|
removeCrd: "删除与此应用关联的 CRD"
|
|
@@ -4393,6 +4391,9 @@ setup:
|
|
|
4393
4391
|
welcome: 欢迎使用 {vendor}!
|
|
4394
4392
|
|
|
4395
4393
|
sortableTable:
|
|
4394
|
+
bulkActions:
|
|
4395
|
+
collapsed:
|
|
4396
|
+
label: 操作
|
|
4396
4397
|
actionAvailability:
|
|
4397
4398
|
selected: "已选择 {actionable} 项"
|
|
4398
4399
|
some: "影响 {total} 项中的 {actionable} 项"
|
|
@@ -5600,6 +5601,8 @@ harvesterManager:
|
|
|
5600
5601
|
none: 不存在 Harvester 集群
|
|
5601
5602
|
learnMore: 访问 <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 网站</a> 或阅读 <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester 官方文档</a>,以了解更多关于 Harvester 的信息。
|
|
5602
5603
|
description: Harvester 是一个采用企业级开源技术,包括Kubernetes、Kubevirt和Longhorn,为裸金属服务器打造的现代超融合基础设施(HCI)解决方案。
|
|
5604
|
+
plugins:
|
|
5605
|
+
loadError: 加载 Harvester 插件时出错
|
|
5603
5606
|
|
|
5604
5607
|
##############################
|
|
5605
5608
|
# Model Properties
|
|
@@ -6087,6 +6090,7 @@ advancedSettings:
|
|
|
6087
6090
|
invalidJSON: 无效的 JSON - 请先检查并修改你输入的值,然后再保存。
|
|
6088
6091
|
descriptions:
|
|
6089
6092
|
'cacerts': "验证服务器证书所需的 CA 证书。"
|
|
6093
|
+
'password-min-length': '定义用户密码所需的最少字符数。'
|
|
6090
6094
|
'cluster-defaults': '创建新集群时覆盖 RKE 默认值。'
|
|
6091
6095
|
'engine-install-url': '默认的 Docker 引擎安装 URL(用于大多数主机驱动)。'
|
|
6092
6096
|
'engine-iso-url': '默认操作系统安装 URL(用于 vSphere 驱动)。'
|
|
@@ -6099,7 +6103,6 @@ advancedSettings:
|
|
|
6099
6103
|
'ui-dashboard-index': '{appName} UI 的 HTML 索引位置。'
|
|
6100
6104
|
'ui-offline-preferred': '控制 UI 资产是由服务器容器在本地提供,还是从 ui-index 和 ui-dashboard-index 设置中定义的远程 URL 提供。`动态` 选项将在 {appName} 的生产版本中使用本地资产。'
|
|
6101
6105
|
'ui-pl': '自有品牌公司名称。'
|
|
6102
|
-
'ui-issues': "使用 URL 地址发送新的\"提交问题\"报告,而不是让用户发送到 GitHub Issue 页面。"
|
|
6103
6106
|
'telemetry-opt': '遥测报告加入。'
|
|
6104
6107
|
'auth-user-info-max-age-seconds': '在同步验证提供程序组成员之前,用户验证 Token 的最长存活时间。'
|
|
6105
6108
|
'auth-user-info-resync-cron': '重新同步验证提供程序组成员的默认 cron 调度。'
|
|
@@ -6166,24 +6169,27 @@ featureFlags:
|
|
|
6166
6169
|
performance:
|
|
6167
6170
|
label: UI 性能设置
|
|
6168
6171
|
settingName: 性能
|
|
6169
|
-
description: |-
|
|
6170
|
-
性能设置允许你在需要处理大量集群资源时配置 UI 的行为。设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6171
|
-
banner: 这些设置是实验性的,可能会在后续版本中删除或更新。
|
|
6172
6172
|
incrementalLoad:
|
|
6173
6173
|
label: 增量加载
|
|
6174
6174
|
setting: 你可以配置一个阈值,高于该阈值时则使用增量加载。
|
|
6175
6175
|
description: |-
|
|
6176
|
-
|
|
6176
|
+
启用后,资源会更快出现,但可能需要更长的时间来加载整个资源集。此设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6177
6177
|
checkboxLabel: 启用增量加载
|
|
6178
6178
|
inputLabel: 资源阈值
|
|
6179
6179
|
manualRefresh:
|
|
6180
|
+
banner: 此设置是实验性的,可能会在后续版本中删除或更新。
|
|
6180
6181
|
label: 手动刷新
|
|
6181
6182
|
setting: 你可以配置一个阈值,高于该阈值时则启用手动刷新。
|
|
6182
6183
|
buttonTooltip: 刷新列表
|
|
6183
6184
|
description: |-
|
|
6184
|
-
|
|
6185
|
+
启用后,列表数据不会自动更新,用户必须手动刷新列表视图。此设置仅适用于以下资源:Pod、Deployment、CronJob、DaemonSet、Job、StatefulSet、ReplicaSet、Replication Controller、Workload 和 Secret。
|
|
6185
6186
|
checkboxLabel: 启用列表数据的手动刷新
|
|
6186
6187
|
inputLabel: 资源阈值
|
|
6188
|
+
websocketNotification:
|
|
6189
|
+
label: WebSocket 通知
|
|
6190
|
+
description: |-
|
|
6191
|
+
启用后,UI 检测到断开连接时不会出现 WebSocket 通知。
|
|
6192
|
+
checkboxLabel: 禁用 WebSocket 通知
|
|
6187
6193
|
|
|
6188
6194
|
banner:
|
|
6189
6195
|
label: 固定横幅
|
|
@@ -6240,11 +6246,6 @@ branding:
|
|
|
6240
6246
|
custom: 自定义主题
|
|
6241
6247
|
uiPL:
|
|
6242
6248
|
label: 自有品牌
|
|
6243
|
-
uiIssues:
|
|
6244
|
-
label: 支持链接
|
|
6245
|
-
issuesUrl: 问题报告 URL
|
|
6246
|
-
invalidUrl: 必须是包括协议头的完整 URL。
|
|
6247
|
-
communityLinks: 显示 Rancher 社区支持链接
|
|
6248
6249
|
color:
|
|
6249
6250
|
label: 主颜色
|
|
6250
6251
|
tip: 使用自定义颜色替换整个 UI 中使用的主颜色。
|
|
@@ -6349,7 +6350,7 @@ support:
|
|
|
6349
6350
|
text: 无论你使用的 Rancher Labs 产品、Kubernetes、Docker 还是底层基础架构出现问题,我们都会努力找到问题的根本原因。
|
|
6350
6351
|
four:
|
|
6351
6352
|
title: 自由创新
|
|
6352
|
-
text:
|
|
6353
|
+
text: 基于我们与众多 Kubernetes 供应商、操作系统和开源软件认证的兼容性,实现自主创新。
|
|
6353
6354
|
|
|
6354
6355
|
embedding:
|
|
6355
6356
|
retry: 重试
|
|
@@ -6370,16 +6371,12 @@ legacy:
|
|
|
6370
6371
|
alerts: 告警
|
|
6371
6372
|
apps: 应用
|
|
6372
6373
|
catalogs: 应用商店
|
|
6373
|
-
cis-scans: CIS 扫描
|
|
6374
6374
|
configMaps: ConfigMaps
|
|
6375
6375
|
configuration: 配置
|
|
6376
6376
|
globalDnsEntries: 全局 DNS 条目
|
|
6377
6377
|
globalDnsProviders: 全局 DNS 提供商
|
|
6378
|
-
istio: Istio
|
|
6379
|
-
logging: Logging
|
|
6380
6378
|
notifiers: Notifiers
|
|
6381
6379
|
monitoring: 监控
|
|
6382
|
-
pipelines: 流水线
|
|
6383
6380
|
psps: Pod 安全策略
|
|
6384
6381
|
secrets: 密文
|
|
6385
6382
|
|