@rancher/shell 3.0.2-rc.5 → 3.0.2
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/images/providers/nutanix.svg +12 -1
- package/assets/styles/base/_basic.scss +2 -1
- package/assets/styles/base/_helpers.scss +4 -0
- package/assets/styles/base/_variables.scss +2 -0
- package/assets/styles/global/_labeled-input.scss +5 -13
- package/assets/styles/global/_layout.scss +4 -1
- package/assets/styles/global/_select.scss +5 -0
- package/assets/styles/themes/_dark.scss +1 -3
- package/assets/styles/themes/_light.scss +5 -1
- package/assets/translations/en-us.yaml +130 -23
- package/assets/translations/zh-hans.yaml +0 -3
- package/cloud-credential/azure.vue +1 -1
- package/components/ActionMenuShell.vue +105 -0
- package/components/AppModal.vue +2 -2
- package/components/AsyncButton.vue +2 -0
- package/components/ButtonGroup.vue +9 -2
- package/components/ClusterBadge.vue +1 -0
- package/components/ClusterIconMenu.vue +3 -0
- package/components/ClusterProviderIcon.vue +14 -1
- package/components/CodeMirror.vue +96 -5
- package/components/Collapse.vue +16 -3
- package/components/CruResource.vue +9 -0
- package/components/CruResourceFooter.vue +1 -1
- package/components/ExplorerMembers.vue +2 -1
- package/components/FixedBanner.vue +19 -12
- package/components/Import.vue +14 -1
- package/components/LandingPagePreference.vue +4 -2
- package/components/PodSecurityAdmission.vue +8 -6
- package/components/PromptChangePassword.vue +1 -0
- package/components/PromptRemove.vue +23 -21
- package/components/ResourceDetail/Masthead.vue +30 -11
- package/components/ResourceDetail/__tests__/Masthead.test.ts +61 -0
- package/components/ResourceDetail/index.vue +6 -0
- package/components/ResourceTable.vue +6 -1
- package/components/ResourceYaml.vue +1 -0
- package/components/Setting.vue +115 -0
- package/components/SortableTable/THead.vue +2 -0
- package/components/SortableTable/index.vue +7 -12
- package/components/StatusBadge.vue +71 -0
- package/components/Tabbed/index.vue +16 -15
- package/components/Wizard.vue +108 -104
- package/components/YamlEditor.vue +12 -2
- package/components/__tests__/Collapse.test.ts +2 -2
- package/components/__tests__/FixedBanner.test.ts +3 -3
- package/components/auth/Principal.vue +29 -17
- package/components/auth/__tests__/Principal.test.ts +40 -0
- package/components/auth/login/ldap.vue +7 -0
- package/components/fleet/FleetBundles.vue +1 -1
- package/components/fleet/FleetRepos.vue +1 -1
- package/components/fleet/FleetResources.vue +0 -2
- package/components/fleet/FleetSummary.vue +60 -65
- package/components/fleet/ForceDirectedTreeChart/index.vue +5 -1
- package/components/fleet/__tests__/FleetSummary.test.ts +49 -9
- package/components/form/ArrayList.vue +6 -2
- package/components/form/ColorInput.vue +1 -0
- package/components/form/KeyValue.vue +11 -12
- package/components/form/LabeledSelect.vue +15 -3
- package/components/form/Labels.vue +8 -1
- package/components/form/Members/MembershipEditor.vue +230 -222
- package/components/form/Members/__tests__/MembershipEditor.test.ts +62 -0
- package/components/form/Password.vue +3 -0
- package/components/form/ProjectMemberEditor.vue +6 -3
- package/components/form/ResourceTabs/index.vue +15 -13
- package/components/form/SSHKnownHosts/KnownHostsEditDialog.vue +5 -4
- package/components/form/SchedulingCustomization.vue +85 -0
- package/components/form/Select.vue +3 -2
- package/components/form/SelectOrCreateAuthSecret.vue +2 -1
- package/components/form/UnitInput.vue +3 -4
- package/components/form/__tests__/ArrayList.test.ts +9 -6
- package/components/form/__tests__/LabeledSelect.test.ts +37 -0
- package/components/form/__tests__/SelectOrCreateAuthSecret.test.ts +34 -0
- package/components/form/__tests__/UnitInput.test.ts +4 -5
- package/components/formatter/LiveDate.vue +3 -1
- package/components/formatter/ServiceType.vue +12 -4
- package/components/formatter/WorkloadHealthScale.vue +2 -1
- package/components/nav/Header.vue +35 -2
- package/components/nav/HeaderPageActionMenu.vue +11 -40
- package/components/nav/Jump.vue +8 -2
- package/components/nav/NamespaceFilter.vue +5 -4
- package/components/nav/Pinned.vue +1 -1
- package/components/nav/TopLevelMenu.helper.ts +5 -5
- package/components/nav/TopLevelMenu.vue +1 -12
- package/components/nav/WindowManager/ContainerLogs.vue +96 -58
- package/components/nav/WindowManager/ContainerShell.vue +99 -18
- package/components/nav/WindowManager/index.vue +74 -6
- package/components/nav/__tests__/TopLevelMenu.test.ts +0 -40
- package/components/templates/default.vue +2 -47
- package/config/features.js +1 -0
- package/config/labels-annotations.js +11 -1
- package/config/router/navigation-guards/index.js +2 -1
- package/config/router/navigation-guards/record-last-route.js +24 -0
- package/config/settings.ts +66 -98
- package/config/version.js +1 -1
- package/core/types-provisioning.ts +7 -0
- package/detail/fleet.cattle.io.bundle.vue +7 -0
- package/detail/fleet.cattle.io.cluster.vue +0 -3
- package/detail/fleet.cattle.io.gitrepo.vue +8 -15
- package/detail/provisioning.cattle.io.cluster.vue +8 -2
- package/dialog/DeactivateDriverDialog.vue +5 -5
- package/dialog/GitRepoForceUpdateDialog.vue +132 -0
- package/directives/strip-html-aria-label.js +19 -0
- package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +87 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +217 -37
- package/edit/auth/__tests__/oidc.test.ts +60 -12
- package/edit/auth/ldap/__tests__/config.test.ts +40 -0
- package/edit/auth/ldap/config.vue +67 -89
- package/edit/auth/oidc.vue +16 -2
- package/edit/catalog.cattle.io.clusterrepo.vue +12 -8
- package/edit/cis.cattle.io.clusterscan.vue +13 -1
- package/edit/fleet.cattle.io.gitrepo.vue +198 -72
- package/edit/logging-flow/Match.vue +0 -21
- package/edit/management.cattle.io.project.vue +1 -1
- package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +10 -3
- package/edit/monitoring.coreos.com.prometheusrule/RecordingRule.vue +5 -1
- package/edit/monitoring.coreos.com.prometheusrule/index.vue +5 -2
- package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +8 -1
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +2 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +0 -2
- package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.test.ts +55 -15
- package/edit/provisioning.cattle.io.cluster/index.vue +28 -30
- package/edit/provisioning.cattle.io.cluster/rke2.vue +64 -13
- package/edit/provisioning.cattle.io.cluster/tabs/AgentConfiguration.vue +37 -2
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +3 -2
- package/edit/resources.cattle.io.backup.vue +150 -15
- package/edit/secret/__tests__/ssh.test.ts +79 -0
- package/edit/secret/ssh.vue +7 -1
- package/edit/service.vue +0 -3
- package/edit/workload/Job.vue +8 -8
- package/edit/workload/__tests__/Job.test.ts +0 -1
- package/edit/workload/index.vue +3 -1
- package/initialize/install-directives.js +2 -0
- package/initialize/install-plugins.js +6 -1
- package/list/catalog.cattle.io.app.vue +21 -4
- package/list/fleet.cattle.io.bundle.vue +1 -1
- package/list/management.cattle.io.setting.vue +34 -132
- package/list/provisioning.cattle.io.cluster.vue +11 -3
- package/machine-config/vmwarevsphere.vue +15 -8
- package/mixins/__tests__/auth-config.test.ts +74 -0
- package/mixins/__tests__/chart.test.ts +5 -4
- package/mixins/__tests__/create-edit-view.test.ts +38 -0
- package/mixins/auth-config.js +8 -0
- package/mixins/chart.js +2 -2
- package/mixins/create-edit-view/impl.js +4 -1
- package/mixins/vue-select-overrides.js +10 -0
- package/models/__tests__/catalog.cattle.io.app.test.ts +148 -0
- package/models/__tests__/fleet.cattle.io.gitrepo.test.ts +157 -0
- package/models/__tests__/secret.test.ts +56 -13
- package/models/catalog.cattle.io.app.js +112 -37
- package/models/cluster.js +11 -0
- package/models/fleet.cattle.io.bundle.js +40 -2
- package/models/fleet.cattle.io.gitrepo.js +169 -109
- package/models/management.cattle.io.fleetworkspace.js +4 -0
- package/models/management.cattle.io.kontainerdriver.js +7 -0
- package/models/nodedriver.js +4 -1
- package/models/provisioning.cattle.io.cluster.js +24 -0
- package/models/secret.js +1 -1
- package/package.json +5 -5
- package/pages/auth/login.vue +5 -11
- package/pages/auth/verify.vue +11 -1
- package/pages/c/_cluster/apps/charts/index.vue +6 -4
- package/pages/c/_cluster/apps/charts/install.vue +1 -1
- package/pages/c/_cluster/explorer/ConfigBadge.vue +3 -5
- package/pages/c/_cluster/explorer/EventsTable.vue +3 -2
- package/pages/c/_cluster/explorer/__tests__/index.test.ts +9 -9
- package/pages/c/_cluster/explorer/index.vue +33 -35
- package/pages/c/_cluster/explorer/tools/index.vue +3 -3
- package/pages/c/_cluster/fleet/index.vue +0 -5
- package/pages/c/_cluster/legacy/project/index.vue +1 -1
- package/pages/c/_cluster/settings/performance.vue +52 -53
- package/pages/c/_cluster/uiplugins/index.vue +19 -22
- package/pages/home.vue +17 -12
- package/pages/prefs.vue +5 -1
- package/plugins/shortkey.js +10 -1
- package/plugins/steve/steve-pagination-utils.ts +58 -8
- package/promptRemove/management.cattle.io.fleetworkspace.vue +98 -0
- package/promptRemove/management.cattle.io.globalrole.vue +1 -1
- package/promptRemove/management.cattle.io.project.vue +2 -8
- package/promptRemove/management.cattle.io.roletemplate.vue +1 -1
- package/promptRemove/mixin/roleDeletionCheck.js +1 -7
- package/promptRemove/pod.vue +7 -28
- package/rancher-components/Card/Card.vue +9 -1
- package/rancher-components/Form/Checkbox/Checkbox.vue +42 -6
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +30 -3
- package/rancher-components/Form/Radio/RadioButton.vue +18 -3
- package/rancher-components/Form/Radio/RadioGroup.vue +39 -5
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +13 -1
- package/rancher-components/RcButton/RcButton.test.ts +97 -0
- package/rancher-components/RcButton/RcButton.vue +14 -9
- package/rancher-components/RcDropdown/RcDropdown.vue +3 -1
- package/rancher-components/RcDropdown/RcDropdownItem.vue +8 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +66 -0
- package/rancher-components/RcDropdown/index.ts +1 -0
- package/rancher-components/RcDropdown/types.ts +27 -0
- package/rancher-components/RcDropdown/useDropdownContext.ts +5 -2
- package/scripts/extension/helm/charts/ui-plugin-server/templates/_helpers.tpl +2 -2
- package/scripts/typegen.sh +1 -0
- package/store/__tests__/auth.test.ts +120 -0
- package/store/action-menu.js +13 -3
- package/store/auth.js +14 -9
- package/store/aws.js +9 -2
- package/store/catalog.js +14 -7
- package/store/features.js +1 -0
- package/store/prefs.js +9 -28
- package/store/type-map.utils.ts +4 -0
- package/types/resources/settings.d.ts +27 -20
- package/types/shell/index.d.ts +18 -12
- package/utils/__tests__/array.test.ts +13 -1
- package/utils/__tests__/string.test.ts +80 -1
- package/utils/array.ts +13 -0
- package/utils/auth.js +4 -0
- package/utils/banners.js +0 -45
- package/utils/cluster.js +1 -1
- package/{edit/monitoring.coreos.com.prometheusrule → utils}/duration.js +5 -3
- package/utils/object.js +0 -3
- package/utils/pagination-utils.ts +15 -2
- package/utils/string.js +31 -7
- package/utils/validators/formRules/__tests__/index.test.ts +27 -0
- package/utils/validators/formRules/index.ts +16 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +0 -198
|
@@ -1 +1,12 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 193.3 133.4">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #131313;
|
|
7
|
+
stroke-width: 0px;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<path class="cls-1" d="M192.6,130.1c.6.5.8,1.3.5,2-.3.7-1,1.2-1.7,1.2h-39.8c-.4,0-.9-.2-1.2-.4l-43.7-37.8c-.4-.4-.6-.9-.6-1.4s.2-1,.6-1.4l19.9-17.2c.7-.6,1.7-.6,2.4,0l63.5,55ZM126.7,58.2c.3.3.8.4,1.2.4s.9-.2,1.2-.4L192.6,3.2c.6-.5.8-1.3.5-2-.3-.7-1-1.2-1.7-1.2h-39.8c-.4,0-.9.2-1.2.4l-43.7,37.8c-.4.4-.6.9-.6,1.4s.2,1,.6,1.4l19.9,17.2ZM118.4,66.7c0-.5-.2-1-.6-1.4L42.8.4c-.3-.3-.8-.4-1.2-.4H1.8C1.1,0,.4.5.1,1.2c-.3.7,0,1.5.5,2l73.3,63.4L.6,130.1c-.6.5-.8,1.3-.5,2,.3.7,1,1.2,1.7,1.2h39.8c.4,0,.9-.2,1.2-.4l74.9-64.8c.4-.4.6-.9.6-1.4Z"/>
|
|
12
|
+
</svg>
|
|
@@ -58,7 +58,6 @@ BODY {
|
|
|
58
58
|
box-sizing: inherit;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
INPUT,
|
|
62
61
|
SELECT,
|
|
63
62
|
TEXTAREA,
|
|
64
63
|
.checkbox-custom {
|
|
@@ -67,12 +66,14 @@ TEXTAREA,
|
|
|
67
66
|
}
|
|
68
67
|
}
|
|
69
68
|
|
|
69
|
+
INPUT,
|
|
70
70
|
.labeled-input,
|
|
71
71
|
.radio-custom,
|
|
72
72
|
.labeled-select,
|
|
73
73
|
.unlabeled-select {
|
|
74
74
|
&:focus-visible, &.focused {
|
|
75
75
|
@include focus-outline;
|
|
76
|
+
outline-offset: -1px;
|
|
76
77
|
}
|
|
77
78
|
}
|
|
78
79
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.labeled-input {
|
|
2
2
|
position: relative;
|
|
3
|
-
display:
|
|
3
|
+
display: flex;
|
|
4
4
|
border-collapse: separate;
|
|
5
5
|
min-height: $input-height;
|
|
6
6
|
z-index: 0; // Prevent label from cover other elements outside of the input
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
|
|
98
98
|
.addon,
|
|
99
99
|
.addon.btn {
|
|
100
|
-
display:
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
justify-content: center;
|
|
103
103
|
white-space: nowrap;
|
|
104
104
|
vertical-align: middle;
|
|
105
105
|
color: #{$secondary};
|
|
@@ -119,14 +119,6 @@
|
|
|
119
119
|
padding-right: 8px;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
&.suffix.v-popper--has-tooltip INPUT {
|
|
123
|
-
width: calc(100% - 30px);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
&.suffix.v-popper--has-tooltip INPUT {
|
|
127
|
-
width: calc(100% - 30px);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
122
|
.cron-label,
|
|
131
123
|
.sub-label {
|
|
132
124
|
position: absolute;
|
|
@@ -145,4 +137,4 @@
|
|
|
145
137
|
|
|
146
138
|
|
|
147
139
|
|
|
148
|
-
}
|
|
140
|
+
}
|
|
@@ -61,6 +61,8 @@ HEADER {
|
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: column;
|
|
63
63
|
height: 100vh;
|
|
64
|
+
width: 100vw;
|
|
65
|
+
position: absolute;
|
|
64
66
|
}
|
|
65
67
|
|
|
66
68
|
.dashboard-content {
|
|
@@ -116,6 +118,7 @@ HEADER {
|
|
|
116
118
|
grid-area: wm;
|
|
117
119
|
overflow-y: hidden;
|
|
118
120
|
z-index: z-index('windowsManager');
|
|
121
|
+
position: relative;
|
|
119
122
|
}
|
|
120
123
|
|
|
121
124
|
.localeSelector {
|
|
@@ -161,4 +164,4 @@ HEADER {
|
|
|
161
164
|
opacity: 1;
|
|
162
165
|
}
|
|
163
166
|
|
|
164
|
-
// !END
|
|
167
|
+
// !END
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
|
|
22
22
|
// dark main text
|
|
23
23
|
$lightest: #ffffff;
|
|
24
|
-
$keyboard-focus: #00ddff;
|
|
25
24
|
|
|
26
25
|
// menu cluster description active+hover
|
|
27
26
|
$desc-light: #EEEFF4;
|
|
@@ -50,7 +49,6 @@
|
|
|
50
49
|
--default-light-bg : #{rgba($dark, 0.05)};
|
|
51
50
|
--slider-light-bg : #{rgba($darker, 1)};
|
|
52
51
|
--slider-light-bg-right : #{rgba($darker, 0)};
|
|
53
|
-
--primary-keyboard-focus : #{$keyboard-focus};
|
|
54
52
|
|
|
55
53
|
--muted : #{$disabled};
|
|
56
54
|
|
|
@@ -118,7 +116,7 @@
|
|
|
118
116
|
--dropdown-hover-bg : #{$slate};
|
|
119
117
|
--dropdown-disabled-bg : #{$disabled};
|
|
120
118
|
--dropdown-disabled-text : #{$disabled};
|
|
121
|
-
--dropdown-group-text : #{$
|
|
119
|
+
--dropdown-group-text : #{$lighter};
|
|
122
120
|
--dropdown-highlight-text : var(--link);
|
|
123
121
|
|
|
124
122
|
--input-text : #{$lightest};
|
|
@@ -26,7 +26,7 @@ $disabled : $medium;
|
|
|
26
26
|
$primary : #3D98D3;
|
|
27
27
|
$secondary : $darker;
|
|
28
28
|
$link : #3D98D3;
|
|
29
|
-
$keyboard-focus : #
|
|
29
|
+
$keyboard-focus : #{darken($primary, 10%)};
|
|
30
30
|
|
|
31
31
|
// Status colors
|
|
32
32
|
$success : #5D995D;
|
|
@@ -91,6 +91,10 @@ BODY, .theme-light {
|
|
|
91
91
|
|
|
92
92
|
.text-link {
|
|
93
93
|
color: var(--link) !important;
|
|
94
|
+
|
|
95
|
+
&.disabled {
|
|
96
|
+
color: var(--disabled-text) !important;
|
|
97
|
+
}
|
|
94
98
|
}
|
|
95
99
|
|
|
96
100
|
.bg-link {
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# Special stuff
|
|
3
3
|
##############################
|
|
4
4
|
generic:
|
|
5
|
+
unified: Unified
|
|
6
|
+
split: Split
|
|
7
|
+
userMenu: user menu
|
|
8
|
+
actionMenu: action menu
|
|
9
|
+
namespaceFilter: namespace filter menu
|
|
10
|
+
filterNamespaces: filter namespaces
|
|
11
|
+
clearSearch: clear search
|
|
12
|
+
clearFilters: clear filters
|
|
13
|
+
userAvatar: user avatar
|
|
5
14
|
add: Add
|
|
6
15
|
all: All
|
|
7
16
|
ascending: ascending
|
|
@@ -58,6 +67,7 @@ generic:
|
|
|
58
67
|
overview: Overview
|
|
59
68
|
plusMore: "+ {n} more"
|
|
60
69
|
readFromFile: Read from File
|
|
70
|
+
readFromFileArea: Read from File - {area}
|
|
61
71
|
readFromFolder: Read from Folder
|
|
62
72
|
reload: Reload
|
|
63
73
|
register: Register
|
|
@@ -118,7 +128,6 @@ generic:
|
|
|
118
128
|
other {Matches {matched, number} of {total, number}, including "{sample}"}
|
|
119
129
|
}
|
|
120
130
|
basic: Basic
|
|
121
|
-
|
|
122
131
|
ariaLabel:
|
|
123
132
|
key: Key {index}
|
|
124
133
|
value: Value {index}
|
|
@@ -131,6 +140,9 @@ locale:
|
|
|
131
140
|
|
|
132
141
|
nav:
|
|
133
142
|
ariaLabel:
|
|
143
|
+
clusterIconKeyCombo: Cluster keyboard shortcut combination icon
|
|
144
|
+
localClusterIcon: Local Cluster icon
|
|
145
|
+
clusterProvIcon: Cluster {cluster} provider icon
|
|
134
146
|
topLevelMenu: Main menu
|
|
135
147
|
homePage: Home page navigation menu
|
|
136
148
|
cluster: Cluster menu item
|
|
@@ -140,7 +152,7 @@ nav:
|
|
|
140
152
|
configurationApps: Main menu configuration app menu item
|
|
141
153
|
support: Support page link
|
|
142
154
|
about: About page link
|
|
143
|
-
pinCluster: Pin/Unpin cluster
|
|
155
|
+
pinCluster: Pin/Unpin {cluster} cluster
|
|
144
156
|
collapseExpand: Collapse/Expand menu group
|
|
145
157
|
productAboutPage: Product about page link
|
|
146
158
|
alt:
|
|
@@ -306,6 +318,8 @@ suffix:
|
|
|
306
318
|
##############################
|
|
307
319
|
# Components & Pages
|
|
308
320
|
##############################
|
|
321
|
+
windowmanager:
|
|
322
|
+
closeTab: Close tab {tabId}
|
|
309
323
|
about:
|
|
310
324
|
title: About
|
|
311
325
|
versions:
|
|
@@ -537,6 +551,7 @@ authConfig:
|
|
|
537
551
|
tls: TLS
|
|
538
552
|
userEnabledAttribute: User Enabled Attribute
|
|
539
553
|
userMemberAttribute: User Member Attribute
|
|
554
|
+
userLoginFilter: User Login Filter
|
|
540
555
|
userSearchBase:
|
|
541
556
|
label: User Search Base
|
|
542
557
|
placeholder: 'e.g. ou=users,dc=mycompany,dc=com'
|
|
@@ -650,6 +665,9 @@ authConfig:
|
|
|
650
665
|
key:
|
|
651
666
|
label: Private Key
|
|
652
667
|
placeholder: Paste in the private key, typically starting with -----BEGIN RSA PRIVATE KEY-----
|
|
668
|
+
groupSearch:
|
|
669
|
+
label: Enable group search
|
|
670
|
+
tooltip: Allows users with appropriate permissions to search and view all groups within the OIDC provider's realm. This can be useful for administrators who need to assign global roles to groups that they are not currently a member of.
|
|
653
671
|
stateBanner:
|
|
654
672
|
disabled: 'The {provider} authentication provider is currently disabled.'
|
|
655
673
|
enabled: 'The {provider} authentication provider is currently enabled.'
|
|
@@ -835,7 +853,17 @@ asyncButton:
|
|
|
835
853
|
success: Generated
|
|
836
854
|
waiting: Generating…
|
|
837
855
|
|
|
838
|
-
backupRestoreOperator:
|
|
856
|
+
backupRestoreOperator:
|
|
857
|
+
backup:
|
|
858
|
+
label: Resource Set
|
|
859
|
+
description: The Resource Set determines which resources the backup-restore-operator collects in a backup
|
|
860
|
+
enableEncryptionWarning: 'Enabling encryption is highly recommended when using <b><i>Full Rancher backup resource set</i></b>, otherwise sensitive information will be backed up as plain-text. <a target="_blank" rel="noopener noreferrer nofollow" href="https://ranchermanager.docs.rancher.com/reference-guides/backup-restore-configuration/backup-configuration#resourcesets">Read more</a>.'
|
|
861
|
+
missingResourceSetWarning: The <b><i>{resourceSet}</i></b> resource set doesn't exist, it's possible it has been deleted. Please select a different option.
|
|
862
|
+
resourceSetOptions:
|
|
863
|
+
'rancher-resource-set-basic': 'Basic Rancher backup resource set'
|
|
864
|
+
'rancher-resource-set-full': 'Full Rancher backup resource set'
|
|
865
|
+
custom: Custom
|
|
866
|
+
customResourceSetLabel: Custom Resource Set
|
|
839
867
|
backupFilename: Backup Filename
|
|
840
868
|
deleteTimeout:
|
|
841
869
|
label: Delete Timeout
|
|
@@ -923,6 +951,8 @@ catalog:
|
|
|
923
951
|
label: Resources
|
|
924
952
|
busy: The related resources will appear when {app} is fully installed.
|
|
925
953
|
values: Values YAML
|
|
954
|
+
upgrade:
|
|
955
|
+
uncertainUpgradeWarningTooltip: Unable to determine if an upgrade is available (can not identify the repository and chart used to deploy this application)
|
|
926
956
|
chart:
|
|
927
957
|
registry:
|
|
928
958
|
label: Container Registry
|
|
@@ -951,6 +981,10 @@ catalog:
|
|
|
951
981
|
experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
|
|
952
982
|
deprecatedAndExperimentalWarning: '{chartName} has been marked as deprecated and experimental. Use caution when installing this helm chart as it might be removed in the future and might not function as expected.'
|
|
953
983
|
charts:
|
|
984
|
+
browseBtn: Browse
|
|
985
|
+
featuredBtn: Featured
|
|
986
|
+
featuredAriaLabel: Show Featured Charts Carousel and charts grid
|
|
987
|
+
browseAriaLabel: Show only charts grid
|
|
954
988
|
iconAlt: Icon for {app} card/grid item
|
|
955
989
|
refresh: refresh charts
|
|
956
990
|
all: All
|
|
@@ -1117,7 +1151,8 @@ catalog:
|
|
|
1117
1151
|
oci:
|
|
1118
1152
|
urlLabel: OCI Repository Host URL
|
|
1119
1153
|
placeholder: 'e.g. oci://<registry-host>/<namespace>/<chart-name>:<tag>'
|
|
1120
|
-
|
|
1154
|
+
warning: OCI URLs must ONLY target helm chart/s.
|
|
1155
|
+
info: For large repositories containing many charts consider targeting a specific namespace or chart to improve performance, for example with oci://<registry-host>/<namespace> or oci://<registry-host>/<namespace>/<chart-name>.
|
|
1121
1156
|
skipTlsVerifications: Skip TLS Verifications
|
|
1122
1157
|
insecurePlainHttp: Insecure Plain Http
|
|
1123
1158
|
exponentialBackOff:
|
|
@@ -1312,8 +1347,9 @@ cluster:
|
|
|
1312
1347
|
registrationCommand:
|
|
1313
1348
|
label: Registration Command
|
|
1314
1349
|
linuxDetail: Run this command on each of the existing Linux machines you want to register.
|
|
1315
|
-
windowsDetail: Run this command in PowerShell on each of the existing Windows machines you want to register.
|
|
1316
|
-
|
|
1350
|
+
windowsDetail: Run this command in PowerShell on each of the existing Windows machines you want to register.
|
|
1351
|
+
windowsWorkersOnly: <b>Windows nodes can only be workers.</b>
|
|
1352
|
+
windowsNotReady: The cluster must be up and running with Linux etcd, control plane, and worker nodes before the registration command for adding Windows workers will display.<br /> <br /><b>Windows nodes can only be workers.</b>
|
|
1317
1353
|
windowsWarning: Workload pods, including some deployed by Rancher charts, will be scheduled on both Linux and Windows nodes by default. Edit NodeSelector in the chart to direct them to be placed onto a compatible node.
|
|
1318
1354
|
windowsDeprecatedForRKE1: Windows support is being deprecated for RKE1. We suggest migrating to RKE2.
|
|
1319
1355
|
insecure: "Insecure: Select this to skip TLS verification if your server has a self-signed certificate."
|
|
@@ -1825,9 +1861,15 @@ cluster:
|
|
|
1825
1861
|
podAffinity: Affinity
|
|
1826
1862
|
podTolerations: Tolerations
|
|
1827
1863
|
podRequestsAndLimits: Requests and Limits
|
|
1864
|
+
schedulingCustomization: Scheduling Customization
|
|
1828
1865
|
subGroups:
|
|
1829
1866
|
podAffinityAnti: Pod Affinity/Anti-Affinity
|
|
1830
1867
|
nodeAffinity: Node Affinity
|
|
1868
|
+
schedulingCustomization:
|
|
1869
|
+
label: Prevent Rancher cluster agent pod eviction
|
|
1870
|
+
description: This ensures that the cluster agent pod is not evicted due to node pressure, resource constraints or scheduler policies.
|
|
1871
|
+
banner: This feature has been enabled with settings that are different from the global default settings.
|
|
1872
|
+
innerCheckbox: Apply global settings for Priority Class and Pod Disruption Budget
|
|
1831
1873
|
banners:
|
|
1832
1874
|
advanced: These are advanced configuration options. Generally, they should be left as-is.
|
|
1833
1875
|
tolerations: Additional Pod Tolerations will be added to the default Tolerations applied by Rancher.
|
|
@@ -1874,6 +1916,8 @@ cluster:
|
|
|
1874
1916
|
=1 { {pool_name}: The provided value for {fields} was not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
|
|
1875
1917
|
other { {pool_name}: The provided values for {fields} were not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
|
|
1876
1918
|
}
|
|
1919
|
+
rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters. We recommend replatforming RKE1 clusters to RKE2 to ensure continued support and security updates. Learn more about the transition <a href="https://www.suse.com/support/kb/doc/?id=000021518" target="_blank" rel="noopener noreferrer nofollow">here</a>.'
|
|
1920
|
+
rke1DeprecationShortMessage: Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters.
|
|
1877
1921
|
rkeTemplateUpgrade: Template revision {name} available for upgrade
|
|
1878
1922
|
cloudCredentials:
|
|
1879
1923
|
renew: Renew Cloud Credentials
|
|
@@ -1969,19 +2013,22 @@ cluster:
|
|
|
1969
2013
|
header: Registry for Rancher System Container Images
|
|
1970
2014
|
label: Enable cluster scoped container registry for Rancher system container images
|
|
1971
2015
|
description: "If enabled, Rancher will pull container images from this registry during cluster provisioning. By default, Rancher will also use this registry when installing Rancher's official Helm chart apps. If the cluster scoped registry is disabled, system images are pulled from the System Default Registry in the global settings."
|
|
2016
|
+
importedDescription: "By default, Rancher will also use this registry when installing Rancher's official Helm chart apps. If the cluster scoped registry is disabled, system images are pulled from the System Default Registry in the global settings."
|
|
1972
2017
|
docsLinkRke2: "For help configuring private registry mirrors, see the RKE2 <a href=\"https://docs.rke2.io/install/private_registry\" target=\"_blank\">documentation.</a>"
|
|
1973
2018
|
docsLinkK3s: "For help configuring private registry mirrors, see the K3s <a href=\"https://docs.k3s.io/installation/private-registry\" target=\"_blank\">documentation.</a>"
|
|
2019
|
+
privateRegistryUrlError: A registry must be a valid url. Scheme is optional.
|
|
1974
2020
|
provider:
|
|
1975
2021
|
aliyunecs: Aliyun ECS
|
|
1976
2022
|
aliyunkubernetescontainerservice: Alibaba ACK
|
|
1977
2023
|
aliyun: Alibaba ACK
|
|
1978
2024
|
amazonec2: Amazon EC2
|
|
1979
2025
|
amazoneks: Amazon EKS
|
|
2026
|
+
amazonelasticcontainerservice: Amazon EKS (Unsupported Kev1)
|
|
1980
2027
|
aws: Amazon
|
|
1981
2028
|
azure: Azure
|
|
1982
2029
|
azureaks: Azure AKS
|
|
1983
2030
|
aks: Azure AKS
|
|
1984
|
-
azurekubernetesservice: Azure AKS
|
|
2031
|
+
azurekubernetesservice: Azure AKS (Unsupported Kev1)
|
|
1985
2032
|
baiducloudcontainerengine: Baidu CCE
|
|
1986
2033
|
baidu: Baidu CCE
|
|
1987
2034
|
cloudca: Cloud.ca
|
|
@@ -1995,6 +2042,7 @@ cluster:
|
|
|
1995
2042
|
google: Google GCE
|
|
1996
2043
|
googlegke: Google GKE
|
|
1997
2044
|
gke: Google GKE
|
|
2045
|
+
googlekubernetesengine: Google GKE (Unsupported Kev1)
|
|
1998
2046
|
harvester: Harvester
|
|
1999
2047
|
huaweicce: Huawei CCE
|
|
2000
2048
|
import: Generic
|
|
@@ -2051,7 +2099,7 @@ cluster:
|
|
|
2051
2099
|
title: Save Machine Configurations
|
|
2052
2100
|
body: Machine Configurations define how machines in Pools are deployed.<br><br> They will be saved upfront to ensure valid Cluster YAML can be saved.
|
|
2053
2101
|
snapshots:
|
|
2054
|
-
suffix: Snapshots
|
|
2102
|
+
suffix: Snapshots
|
|
2055
2103
|
systemService:
|
|
2056
2104
|
rke2-coredns: 'CoreDNS'
|
|
2057
2105
|
rke2-ingress-nginx: 'NGINX Ingress'
|
|
@@ -2143,15 +2191,18 @@ cluster:
|
|
|
2143
2191
|
enable: Enable IPv6 support
|
|
2144
2192
|
etcd:
|
|
2145
2193
|
disableSnapshots:
|
|
2146
|
-
label: Automatic
|
|
2194
|
+
label: Automatic Backups
|
|
2147
2195
|
snapshotScheduleCron:
|
|
2148
2196
|
label: Cron Schedule
|
|
2149
2197
|
snapshotRetention:
|
|
2150
|
-
label:
|
|
2198
|
+
label: Snapshot retention count
|
|
2199
|
+
tooltip: Each backup records 1 snapshot per etcd node. If you specify 3 snapshots and you have 3 etcd nodes you will only retain 1 full backup.
|
|
2151
2200
|
exportMetric:
|
|
2152
2201
|
label: Metrics
|
|
2153
2202
|
false: Only available inside the cluster
|
|
2154
2203
|
true: Exposed to the public interface
|
|
2204
|
+
s3backups:
|
|
2205
|
+
label: Save Backups to S3
|
|
2155
2206
|
k3s:
|
|
2156
2207
|
systemService:
|
|
2157
2208
|
coredns: 'CoreDNS'
|
|
@@ -2292,6 +2343,7 @@ resource:
|
|
|
2292
2343
|
update: "Error updating {name}"
|
|
2293
2344
|
|
|
2294
2345
|
codeMirror:
|
|
2346
|
+
escapeText: Press Shift+Escape to blur from editor
|
|
2295
2347
|
keymap:
|
|
2296
2348
|
tooltip: Key mapping preference.
|
|
2297
2349
|
indicatorToolip: "Key mapping: {name}"
|
|
@@ -2439,7 +2491,25 @@ fleet:
|
|
|
2439
2491
|
notReady: Not Ready
|
|
2440
2492
|
waitApplied: Wait Applied
|
|
2441
2493
|
gitRepo:
|
|
2442
|
-
|
|
2494
|
+
actions:
|
|
2495
|
+
forceUpdate:
|
|
2496
|
+
label: Force Update
|
|
2497
|
+
promptTitle: Force Update
|
|
2498
|
+
promptNames: 'You are attempting to update: '
|
|
2499
|
+
promptWarning: |-
|
|
2500
|
+
{
|
|
2501
|
+
count, plural,
|
|
2502
|
+
=1 {Force update could be a long running process, the repository will be cloned again.}
|
|
2503
|
+
other {Force update could be a long running process, the repositories will be cloned again.}
|
|
2504
|
+
}
|
|
2505
|
+
enablePolling:
|
|
2506
|
+
label: Enable Polling
|
|
2507
|
+
disablePolling:
|
|
2508
|
+
label: Disable Polling
|
|
2509
|
+
unpause:
|
|
2510
|
+
label: Unpause
|
|
2511
|
+
pause:
|
|
2512
|
+
label: Pause
|
|
2443
2513
|
tabs:
|
|
2444
2514
|
resources: Resources
|
|
2445
2515
|
unready: Non-Ready
|
|
@@ -2465,19 +2535,38 @@ fleet:
|
|
|
2465
2535
|
noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
|
|
2466
2536
|
resources:
|
|
2467
2537
|
label: 'Resource Handling'
|
|
2468
|
-
keepResources: Always
|
|
2538
|
+
keepResources: Always keep resources
|
|
2469
2539
|
keepResourcesTooltip: When enabled, resources will be kept when deleting a GitRepo or Bundle - only Helm release secrets will be deleted.
|
|
2470
|
-
correctDrift: Enable
|
|
2540
|
+
correctDrift: Enable self-healing
|
|
2471
2541
|
correctDriftTooltip: When enabled, Fleet will ensure that the cluster resources are kept in sync with the git repository. All resource changes made on the cluster will be lost.
|
|
2542
|
+
polling:
|
|
2543
|
+
label: Polling
|
|
2544
|
+
enable: Enable Polling
|
|
2545
|
+
pollingInterval:
|
|
2546
|
+
label: Polling Interval
|
|
2547
|
+
tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
|
|
2548
|
+
webhookWarning: A webhook is configured in Rancher to reconcile Git updates and GitRepo resources. The Polling Interval will automatically be adjusted to 1 hour.
|
|
2549
|
+
minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with GitRepos that contain a large amount of resources please consider increasing this value.
|
|
2472
2550
|
add:
|
|
2473
2551
|
steps:
|
|
2474
|
-
|
|
2475
|
-
label:
|
|
2552
|
+
metadata:
|
|
2553
|
+
label: Metadata
|
|
2554
|
+
title: Specify the Git Repository name and labels/annotations
|
|
2555
|
+
subtext: 'Define metadata details'
|
|
2556
|
+
description: Git repository basic info
|
|
2557
|
+
repo:
|
|
2558
|
+
label: Repository details
|
|
2476
2559
|
title: Specify the Git Repository to add to fleet
|
|
2477
2560
|
subtext: 'Define repository details'
|
|
2478
2561
|
description: Fleet will continuously monitor the Git Repository you configure below and synchronise the resources contained in it to the configured targets.
|
|
2562
|
+
advanced:
|
|
2563
|
+
label: Advanced
|
|
2564
|
+
title: Specify advanced settings like authenticaion credentials and polling
|
|
2565
|
+
subtext: 'Define advanced settings'
|
|
2566
|
+
description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
|
|
2567
|
+
info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
|
|
2479
2568
|
targetInfo:
|
|
2480
|
-
label: Target
|
|
2569
|
+
label: Target details
|
|
2481
2570
|
title: Specify which target to synchronise this repository to
|
|
2482
2571
|
subtext: 'Define target details'
|
|
2483
2572
|
description: You can configure which clusters will be used as the target of synchronisation with the resources in the repository.
|
|
@@ -2545,6 +2634,8 @@ fleet:
|
|
|
2545
2634
|
tabs:
|
|
2546
2635
|
restrictions: Allowed Target Namespaces
|
|
2547
2636
|
timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
|
|
2637
|
+
remove:
|
|
2638
|
+
warning: "Deleting a Workspace also deletes all resources in the Workspace. This includes GitRepos but also Clusters.<br><br>Deleted Clusters will be removed from {vendor}, and if {vendor} manages the life-cycle of the Cluster it's underlying infrastructure will also be deleted."
|
|
2548
2639
|
restrictions:
|
|
2549
2640
|
addTitle: 'allowedTargetNamespaces'
|
|
2550
2641
|
addLabel: Add
|
|
@@ -2627,6 +2718,8 @@ glance:
|
|
|
2627
2718
|
secretsTable: Full secrets list
|
|
2628
2719
|
|
|
2629
2720
|
clusterBadge:
|
|
2721
|
+
badgeAppearance: Cluster Badge Appearance
|
|
2722
|
+
clusterComment: "Cluster comment - {text}"
|
|
2630
2723
|
customizeAppearance: Customize Appearance
|
|
2631
2724
|
addLabel: Add Cluster Badge
|
|
2632
2725
|
setClusterAppearance: Cluster Appearance
|
|
@@ -3071,8 +3164,8 @@ landing:
|
|
|
3071
3164
|
other {cores}}
|
|
3072
3165
|
cpuUsed: CPU Used
|
|
3073
3166
|
memoryUsed: Memory Used
|
|
3074
|
-
seeWhatsNew: Learn more about the improvements and new capabilities in
|
|
3075
|
-
whatsNewLink: "What's new in
|
|
3167
|
+
seeWhatsNew: Learn more about the improvements and new capabilities in {version}
|
|
3168
|
+
whatsNewLink: "What's new in {version}"
|
|
3076
3169
|
learnMore: Learn More
|
|
3077
3170
|
support: Support
|
|
3078
3171
|
community:
|
|
@@ -3086,6 +3179,7 @@ landing:
|
|
|
3086
3179
|
title: You can change what you see when you login via preferences
|
|
3087
3180
|
userPrefs: Preferences
|
|
3088
3181
|
body: "You can change where you land when you login"
|
|
3182
|
+
ariaLabelTakeMeToCluster: Select which cluster to take me to after login
|
|
3089
3183
|
options:
|
|
3090
3184
|
homePage: Take me to the home page
|
|
3091
3185
|
lastVisited: Take me to the area I last visited
|
|
@@ -3392,7 +3486,9 @@ login:
|
|
|
3392
3486
|
invalidSamlAttrs: "Invalid saml attributes"
|
|
3393
3487
|
noResponse: "No response received"
|
|
3394
3488
|
error: An error occurred logging in. Please try again.
|
|
3489
|
+
invalidResponseError: Invalid response received to login request. Please try again.
|
|
3395
3490
|
clientError: Invalid username or password. Please try again.
|
|
3491
|
+
userUnauthorized: You are not authorized to use this system.
|
|
3396
3492
|
specificError: 'An error occurred logging in: {msg}'
|
|
3397
3493
|
useLocal: Use a local user
|
|
3398
3494
|
loginWithProvider: Log in with {provider}
|
|
@@ -3418,6 +3514,7 @@ managementNode:
|
|
|
3418
3514
|
|
|
3419
3515
|
members:
|
|
3420
3516
|
clusterMembers: Cluster Members
|
|
3517
|
+
memberRoles: Member Roles
|
|
3421
3518
|
clusterAndProject: Cluster and Project Members
|
|
3422
3519
|
createActionLabel: Add
|
|
3423
3520
|
clusterMembership: Cluster Membership
|
|
@@ -4488,6 +4585,7 @@ plugins:
|
|
|
4488
4585
|
tabs:
|
|
4489
4586
|
all: All
|
|
4490
4587
|
available: Available
|
|
4588
|
+
builtin: Built-in
|
|
4491
4589
|
images: Images
|
|
4492
4590
|
installed: Installed
|
|
4493
4591
|
updates: Updates
|
|
@@ -5041,6 +5139,7 @@ resourceDetail:
|
|
|
5041
5139
|
view: "{subtype} {name}"
|
|
5042
5140
|
masthead:
|
|
5043
5141
|
age: Age
|
|
5142
|
+
createdBy: Created by
|
|
5044
5143
|
restartCount: Pod Restarts
|
|
5045
5144
|
defaultBannerMessage:
|
|
5046
5145
|
error: This resource is currently in an error state, but there isn't a detailed message available.
|
|
@@ -5391,6 +5490,8 @@ setup:
|
|
|
5391
5490
|
welcome: Welcome to {vendor}!
|
|
5392
5491
|
|
|
5393
5492
|
sortableTable:
|
|
5493
|
+
genericGroupCheckbox: Table group selection checkbox
|
|
5494
|
+
genericRowCheckbox: Table row selection checkbox for item {item}
|
|
5394
5495
|
tableActionsLabel: More actions - { resource }
|
|
5395
5496
|
tableActionsImgAlt: More actions icon
|
|
5396
5497
|
bulkActions:
|
|
@@ -6209,6 +6310,8 @@ wm:
|
|
|
6209
6310
|
containerLogs:
|
|
6210
6311
|
options: Additional container logs options
|
|
6211
6312
|
expand: Expand additional container logs options
|
|
6313
|
+
searchLogs: Search/filter logs
|
|
6314
|
+
logActionMenu: Logs action menu
|
|
6212
6315
|
clear: Clear
|
|
6213
6316
|
containerName: "Container: {label}"
|
|
6214
6317
|
download: Download
|
|
@@ -6235,9 +6338,10 @@ wm:
|
|
|
6235
6338
|
timestamps: Show Timestamps
|
|
6236
6339
|
wrap: Wrap Lines
|
|
6237
6340
|
containerShell:
|
|
6238
|
-
resizeShellWindow: Resize Shell window
|
|
6341
|
+
resizeShellWindow: Resize Shell window - use arrow keys {arrow1} and {arrow2} to resize with keyboard
|
|
6239
6342
|
tabIcon: Shell tab icon
|
|
6240
6343
|
closeShellTab: Close Shell tab - {tab}
|
|
6344
|
+
escapeText: Press Shift+Escape to blur from terminal
|
|
6241
6345
|
clear: Clear
|
|
6242
6346
|
containerName: "Container: {label}"
|
|
6243
6347
|
failed: "Unable to open a shell to the container (none of the shell commands succeeded)\n\r"
|
|
@@ -7549,6 +7653,7 @@ advancedSettings:
|
|
|
7549
7653
|
'hide-local-cluster': Hide the local cluster
|
|
7550
7654
|
'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
|
|
7551
7655
|
'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported K3s or RKE2 clusters.
|
|
7656
|
+
'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
7552
7657
|
warnings:
|
|
7553
7658
|
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
7554
7659
|
editHelp:
|
|
@@ -7572,6 +7677,8 @@ advancedSettings:
|
|
|
7572
7677
|
'agent-tls-mode':
|
|
7573
7678
|
strict: 'Strict'
|
|
7574
7679
|
system-store: 'System Store'
|
|
7680
|
+
provisioning:
|
|
7681
|
+
header: Cluster provisioning
|
|
7575
7682
|
|
|
7576
7683
|
featureFlags:
|
|
7577
7684
|
label: Feature Flags
|
|
@@ -7591,8 +7698,7 @@ featureFlags:
|
|
|
7591
7698
|
performance:
|
|
7592
7699
|
label: UI Performance Settings
|
|
7593
7700
|
settingName: Performance
|
|
7594
|
-
|
|
7595
|
-
deprecatedForSSP: The <i class="mr-5">"{setting}"</i> setting is now deprecated and will be removed in a future release. Please use the <a href="#ssp-setting" class="ml-5 mr-5">Server-side Pagination</a> setting instead.
|
|
7701
|
+
deprecatedForSSP: The <i class="mr-5">"{setting}"</i> setting is now deprecated and will be removed in a future release.
|
|
7596
7702
|
incrementalLoad:
|
|
7597
7703
|
label: Incremental Loading
|
|
7598
7704
|
setting: You can configure the threshold above which incremental loading will be used.
|
|
@@ -7656,13 +7762,13 @@ performance:
|
|
|
7656
7762
|
label: Server-side Pagination
|
|
7657
7763
|
description: By default Lists will fetch all resources and paginate in the browser (create the page given sorting and filtering settings). Change this setting to enable pagination server-side. This should help the responsiveness of the UI in systems with a lot of resources.
|
|
7658
7764
|
checkboxLabel: Enable Server-side Pagination
|
|
7659
|
-
applicable: "
|
|
7765
|
+
applicable: "Server-side pagination applies to Resource Types"
|
|
7660
7766
|
incompatibleDescription: "Server-side Pagination is incompatible with Manual Refresh and Incremental Loading. Enabling this will disable them."
|
|
7661
7767
|
featureFlag: The <a href="{ffUrl}">Feature Flag</a> `ui-sql-cache` must be enabled to use this feature
|
|
7662
7768
|
resources:
|
|
7663
7769
|
generic: most resources in the cluster's 'More Resources' section
|
|
7664
7770
|
all: All Resources
|
|
7665
|
-
|
|
7771
|
+
experimental: This setting is experimental and may be removed or updated in future versions. We do not recommend enabling this setting in production environments.
|
|
7666
7772
|
banner:
|
|
7667
7773
|
label: Fixed Banners
|
|
7668
7774
|
settingName: Banners
|
|
@@ -7700,6 +7806,7 @@ branding:
|
|
|
7700
7806
|
label: Branding
|
|
7701
7807
|
directoryName: Brand Asset Directory Name
|
|
7702
7808
|
logos:
|
|
7809
|
+
home: Product main page
|
|
7703
7810
|
label: Logo
|
|
7704
7811
|
tip: 'Upload a logo to replace the Rancher logo in the top-level navigation header. Image height should be 21 pixels with a max width of 200 pixels. Max file size is 20KB. Accepted formats: JPEG, PNG, SVG.'
|
|
7705
7812
|
lightPreview: Light Theme Preview
|
|
@@ -2131,7 +2131,6 @@ fleet:
|
|
|
2131
2131
|
notReady: 未就绪
|
|
2132
2132
|
waitApplied: 等待应用
|
|
2133
2133
|
gitRepo:
|
|
2134
|
-
createLocalBanner: 将 Git 仓库部署到本地工作区时,你无法定位任何集群或集群组
|
|
2135
2134
|
tabs:
|
|
2136
2135
|
resources: 资源
|
|
2137
2136
|
unready: 未就绪
|
|
@@ -2721,8 +2720,6 @@ landing:
|
|
|
2721
2720
|
other {核}}
|
|
2722
2721
|
cpuUsed: 已用 CPU
|
|
2723
2722
|
memoryUsed: 已用内存
|
|
2724
|
-
seeWhatsNew: 点击右侧链接,了解此版本的新功能和优化。
|
|
2725
|
-
whatsNewLink: "2.8 的新功能"
|
|
2726
2723
|
learnMore: 了解更多
|
|
2727
2724
|
support: 支持
|
|
2728
2725
|
community:
|