dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/brand/harvester/favicon.png +0 -0
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/icons/demo.css +539 -0
- package/assets/icons/demo.css:Zone.Identifier +0 -0
- package/assets/icons/demo_index.html +1131 -0
- package/assets/icons/demo_index.html:Zone.Identifier +0 -0
- package/assets/icons/iconfont.css +216 -0
- package/assets/icons/iconfont.css:Zone.Identifier +0 -0
- package/assets/icons/iconfont.js +1 -0
- package/assets/icons/iconfont.js:Zone.Identifier +0 -0
- package/assets/icons/iconfont.json +324 -0
- package/assets/icons/iconfont.json:Zone.Identifier +0 -0
- package/assets/icons/iconfont.ttf +0 -0
- package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff +0 -0
- package/assets/icons/iconfont.woff2 +0 -0
- package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
- package/assets/images/API.svg +3 -0
- package/assets/images/action.svg +6 -0
- package/assets/images/login/password.svg +20 -0
- package/assets/images/login/user.svg +6 -0
- package/assets/images/login-bg.png +0 -0
- package/assets/images/login-left.png +0 -0
- package/assets/images/login-logo.svg +19 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/pl/half-logo.svg +2 -23
- package/assets/images/pl/harvester.png +0 -0
- package/assets/images/pl/logo.png +0 -0
- package/assets/images/promp-yellow.svg +5 -0
- package/assets/images/user.png +0 -0
- package/assets/styles/all.scss +63 -0
- package/assets/styles/app.scss +4 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +2 -1
- package/assets/styles/base/_variables.scss +14 -7
- package/assets/styles/global/_button.scss +43 -25
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +45 -13
- package/assets/styles/global/_labeled-input.scss +54 -26
- package/assets/styles/global/_layout.scss +8 -3
- package/assets/styles/global/_select.scss +25 -17
- package/assets/styles/global/_table.scss +7 -1
- package/assets/styles/global/_tooltip.scss +56 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +66 -43
- package/assets/styles/vendor/vue-select.scss +22 -9
- package/assets/translations/en-us.yaml +28 -4
- package/assets/translations/zh-hans.yaml +452 -189
- package/components/ActionDropdown.vue +2 -1
- package/components/ActionMenu.vue +2 -2
- package/components/ActionMenuShell.vue +2 -0
- package/components/AppModal.vue +46 -5
- package/components/BrandImage.vue +1 -0
- package/components/ButtonDropdown.vue +26 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +1 -1
- package/components/CodeMirror.vue +20 -6
- package/components/ConsumptionGauge.vue +24 -5
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +9 -8
- package/components/CruResourceFooter.vue +2 -2
- package/components/DashboardOptions.vue +29 -17
- package/components/DotState.vue +84 -0
- package/components/Drawer/Chrome.vue +2 -2
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +22 -22
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +2 -1
- package/components/ExplorerMembers.vue +18 -3
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +112 -48
- package/components/GrafanaDashboard.vue +4 -4
- package/components/GrowlManager.vue +3 -1
- package/components/HardwareResourceGauge.vue +39 -3
- package/components/IndentedPanel.vue +4 -10
- package/components/InfoBox.vue +3 -3
- package/components/InputOrDisplay.vue +28 -2
- package/components/LabelValue.vue +20 -1
- package/components/ModalWithCard.vue +12 -3
- package/components/PodSecurityAdmission.vue +1 -1
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +30 -11
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +1 -3
- package/components/Resource/Detail/Metadata/KeyValue.vue +8 -4
- package/components/Resource/Detail/Metadata/index.vue +3 -1
- package/components/Resource/Detail/TitleBar/Title.vue +4 -3
- package/components/Resource/Detail/TitleBar/Top.vue +2 -0
- package/components/Resource/Detail/TitleBar/index.vue +109 -24
- package/components/ResourceDetail/Masthead/legacy.vue +181 -38
- package/components/ResourceDetail/legacy.vue +32 -14
- package/components/ResourceList/Masthead.vue +226 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +24 -2
- package/components/SideNav.vue +74 -20
- package/components/SortableTable/THead.vue +33 -3
- package/components/SortableTable/index.vue +1016 -463
- package/components/SortableTable/paging.js +26 -16
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/Tab.vue +3 -3
- package/components/Tabbed/index.vue +47 -29
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +37 -13
- package/components/auth/RoleDetailEdit.vue +58 -7
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +316 -0
- package/components/form/ArrayList.vue +41 -33
- package/components/form/ArrayListGrouped.vue +10 -2
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +4 -4
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Footer.vue +11 -8
- package/components/form/InputWithSelect.vue +8 -5
- package/components/form/KeyValue.vue +47 -7
- package/components/form/LabeledSelect.vue +214 -242
- package/components/form/Labels.vue +3 -3
- package/components/form/MatchExpressions.vue +24 -7
- package/components/form/Members/ClusterPermissionsEditor.vue +1 -2
- package/components/form/Members/MembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +59 -20
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +4 -5
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +18 -17
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +3 -6
- package/components/form/Select.vue +5 -2
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/UnitInput.vue +8 -3
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +132 -99
- package/components/nav/Header.vue +124 -27
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +20 -17
- package/components/nav/TopLevelMenu.vue +182 -119
- package/components/nav/Type.vue +63 -41
- package/composables/useClickOutside.ts +1 -1
- package/config/private-label.js +15 -11
- package/config/product/auth.js +17 -7
- package/config/product/settings.js +19 -9
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/management.cattle.io.user.vue +17 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +19 -19
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +31 -31
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.receiver/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +5 -5
- package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -4
- package/edit/namespace.vue +1 -2
- package/edit/token.vue +31 -12
- package/edit/workload/index.vue +4 -4
- package/list/management.cattle.io.setting.vue +22 -13
- package/list/management.cattle.io.user.vue +7 -3
- package/list/namespace.vue +3 -0
- package/list/provisioning.cattle.io.cluster.vue +6 -7
- package/mixins/brand.js +17 -0
- package/package.json +1 -1
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +220 -52
- package/pages/auth/setup.vue +142 -19
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +56 -5
- package/pages/c/_cluster/monitoring/monitor/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +174 -102
- package/pages/c/_cluster/settings/brand.vue +350 -302
- package/pages/c/_cluster/settings/performance.vue +61 -38
- package/pages/home.vue +70 -30
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/resource-class.js +28 -27
- package/promptRemove/mixin/roleDeletionCheck.js +2 -2
- package/public/index.html +4 -4
- package/rancher-components/BadgeState/BadgeState.vue +38 -55
- package/rancher-components/Banner/Banner.vue +12 -8
- package/rancher-components/Card/Card.vue +7 -8
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -0
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +42 -3
- package/rancher-components/Form/Radio/RadioButton.vue +35 -11
- package/rancher-components/Form/Radio/RadioGroup.vue +13 -5
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +12 -4
- package/rancher-components/RcDropdown/RcDropdown.vue +35 -7
- package/rancher-components/RcDropdown/RcDropdownItem.vue +2 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +12 -6
- package/rancher-components/RcDropdown/types.ts +1 -0
- package/rancher-components/StringList/StringList.vue +1 -1
- package/scripts/publish-shell.sh +1 -1
- package/static/favicon.ico +0 -0
- package/static/favicon.png +0 -0
- package/static/loading-indicator.html +3 -3
- package/store/i18n.js +5 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +32 -2
- package/types/shell/index.d.ts +78 -97
- package/utils/error.js +89 -8
- package/utils/errorTranslate.json +1351 -0
- package/utils/router.js +21 -0
- package/utils/select.js +26 -3
- package/utils/string.js +8 -5
- package/utils/title.ts +1 -1
- package/vue.config.js +1 -1
|
@@ -4,16 +4,32 @@
|
|
|
4
4
|
$center: calc(50% - #{$triangle-size});
|
|
5
5
|
|
|
6
6
|
display: block !important;
|
|
7
|
-
z-index: z-index('tooltip');
|
|
7
|
+
// z-index: z-index('tooltip');
|
|
8
8
|
max-width: 50vw;
|
|
9
9
|
|
|
10
10
|
.v-popper__inner {
|
|
11
11
|
background: var(--tooltip-bg);
|
|
12
|
+
box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
12
13
|
color: var(--tooltip-text);
|
|
13
|
-
border-radius:
|
|
14
|
+
border-radius: 2px;
|
|
14
15
|
padding: 8px;
|
|
15
16
|
}
|
|
16
17
|
|
|
18
|
+
|
|
19
|
+
// .tooltip-arrow {
|
|
20
|
+
// width: 0;
|
|
21
|
+
// height: 0;
|
|
22
|
+
// border: 0 solid transparent;
|
|
23
|
+
// position: absolute;
|
|
24
|
+
// z-index: 1;
|
|
25
|
+
|
|
26
|
+
// &:after {
|
|
27
|
+
// position: absolute;
|
|
28
|
+
// border: $triangle-inner-size solid transparent;
|
|
29
|
+
// content: '';
|
|
30
|
+
// }
|
|
31
|
+
// }
|
|
32
|
+
|
|
17
33
|
.v-popper__arrow-container {
|
|
18
34
|
border: 0 solid transparent;
|
|
19
35
|
z-index: 1;
|
|
@@ -27,7 +43,9 @@
|
|
|
27
43
|
.v-popper__arrow-container {
|
|
28
44
|
|
|
29
45
|
.v-popper__arrow-outer {
|
|
30
|
-
border-top-color: var(--tooltip-bg);
|
|
46
|
+
// border-top-color: var(--tooltip-bg);
|
|
47
|
+
// border-top-color: var(--tooltip-bg);
|
|
48
|
+
border-top-color:var(--border);
|
|
31
49
|
}
|
|
32
50
|
}
|
|
33
51
|
}
|
|
@@ -37,7 +55,7 @@
|
|
|
37
55
|
.v-popper__arrow-container {
|
|
38
56
|
|
|
39
57
|
.v-popper__arrow-outer {
|
|
40
|
-
border-bottom-color: var(--
|
|
58
|
+
border-bottom-color: var(--border);
|
|
41
59
|
background: transparent;
|
|
42
60
|
}
|
|
43
61
|
}
|
|
@@ -47,7 +65,7 @@
|
|
|
47
65
|
.v-popper__arrow-container {
|
|
48
66
|
|
|
49
67
|
.v-popper__arrow-outer {
|
|
50
|
-
border-right-color: var(--
|
|
68
|
+
border-right-color: var(--border);
|
|
51
69
|
}
|
|
52
70
|
}
|
|
53
71
|
}
|
|
@@ -56,7 +74,7 @@
|
|
|
56
74
|
.v-popper__arrow-container {
|
|
57
75
|
|
|
58
76
|
.v-popper__arrow-outer {
|
|
59
|
-
border-left-color: var(--
|
|
77
|
+
border-left-color: var(--border);
|
|
60
78
|
}
|
|
61
79
|
}
|
|
62
80
|
}
|
|
@@ -105,13 +123,14 @@
|
|
|
105
123
|
.v-popper__popper {
|
|
106
124
|
$color: var(--popover-bg);
|
|
107
125
|
border: 1px solid var(--border);
|
|
108
|
-
border-radius:
|
|
126
|
+
border-radius: 2px;
|
|
109
127
|
|
|
110
128
|
.v-popper__inner {
|
|
129
|
+
border-radius: 2px;
|
|
111
130
|
background: $color;
|
|
112
131
|
color: var(--popover-text);
|
|
113
132
|
padding: 10px;
|
|
114
|
-
border-radius:
|
|
133
|
+
border-radius: 0px;
|
|
115
134
|
border: none;
|
|
116
135
|
|
|
117
136
|
a {
|
|
@@ -128,7 +147,9 @@
|
|
|
128
147
|
}
|
|
129
148
|
|
|
130
149
|
.v-popper__popper.v-popper--theme-dropdown {
|
|
150
|
+
border-radius: 4px;
|
|
131
151
|
z-index: z-index('tooltip');
|
|
152
|
+
border: 1px solid #d9d9d9 !important;
|
|
132
153
|
|
|
133
154
|
&.containerLogsDropdown, &.fleet-summary-tooltip{
|
|
134
155
|
.v-popper__arrow-container {
|
|
@@ -162,4 +183,31 @@
|
|
|
162
183
|
//icon tooltip
|
|
163
184
|
.icon-info.v-popper--has-tooltip {
|
|
164
185
|
font-size: 14px;
|
|
186
|
+
color: var(--primary);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// .v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner, .v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{
|
|
190
|
+
// left: -3px;
|
|
191
|
+
// }
|
|
192
|
+
.v-popper__popper.v-popper--theme-tooltip .v-popper__arrow-container .v-popper__arrow-inner{
|
|
193
|
+
border: 7px solid #fff;
|
|
194
|
+
}
|
|
195
|
+
.v-popper__arrow-inner{
|
|
196
|
+
visibility: visible
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.v-popper__popper{
|
|
200
|
+
|
|
201
|
+
border: 0px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
.custom-dropdown{
|
|
206
|
+
.v-popper__inner {
|
|
207
|
+
padding: 0px;
|
|
208
|
+
}
|
|
165
209
|
}
|
|
210
|
+
|
|
211
|
+
// .v-popper__arrow-container {
|
|
212
|
+
// display: none;
|
|
213
|
+
// }
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
|
|
39
39
|
--slate: #{$slate};
|
|
40
40
|
|
|
41
|
+
--lightest : #{rgba($lightest, 1)};
|
|
42
|
+
|
|
41
43
|
--default : #{$dark};
|
|
42
44
|
--default-text : #{$light};
|
|
43
45
|
--default-hover-bg : #{darken($dark, 10%)};
|
|
@@ -97,6 +99,7 @@
|
|
|
97
99
|
--modal-border : #{$medium};
|
|
98
100
|
--subtle-overlay-bg : #{rgba($darkest, 0.75)};
|
|
99
101
|
--overlay-bg : #{rgba($darkest, 0.75)};
|
|
102
|
+
--overlay-model-bg : rgba($darkest, 0.45);
|
|
100
103
|
--shadow : #{rgba($darkest, 0.9)};
|
|
101
104
|
|
|
102
105
|
--checkbox-tick : #{$lightest};
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
// Local variables for reused colors
|
|
2
2
|
//light main text
|
|
3
|
-
$darkest : #
|
|
3
|
+
$darkest : #333;
|
|
4
4
|
|
|
5
5
|
//light secondary
|
|
6
|
-
$darker : #
|
|
6
|
+
$darker : #333;
|
|
7
7
|
|
|
8
8
|
//light disabled
|
|
9
|
-
$dark : #
|
|
9
|
+
$dark : #ffffff;
|
|
10
|
+
|
|
11
|
+
$scroll_dark: #8b8b8b;
|
|
10
12
|
|
|
11
13
|
//light border and buttons
|
|
12
|
-
$medium : #
|
|
14
|
+
$medium : #d7d7d7;
|
|
13
15
|
|
|
14
|
-
//light inputs
|
|
15
|
-
$light : #
|
|
16
|
+
//light inputs
|
|
17
|
+
$light : #E8F4FF;
|
|
16
18
|
|
|
17
19
|
//light sidebar and box
|
|
18
20
|
$lighter : #F4F5FA;
|
|
@@ -21,17 +23,20 @@ $lighter : #F4F5FA;
|
|
|
21
23
|
$lightest : #FFFFFF;
|
|
22
24
|
|
|
23
25
|
//color for items that are not enabled
|
|
24
|
-
$disabled : $medium;
|
|
26
|
+
// $disabled : $medium;
|
|
27
|
+
$disabled : #f5f5f5;
|
|
25
28
|
|
|
26
|
-
$primary : #
|
|
29
|
+
$primary : #1890FF;
|
|
27
30
|
$secondary : $darker;
|
|
28
|
-
$link : #3D98D3;
|
|
31
|
+
// $link : #3D98D3;
|
|
32
|
+
$link : #1890FF;
|
|
29
33
|
|
|
30
34
|
// Status colors
|
|
31
|
-
$success : #
|
|
35
|
+
$success : #1890FF;
|
|
32
36
|
$warning : #DAC342;
|
|
33
37
|
$error : #F64747;
|
|
34
|
-
$
|
|
38
|
+
// $error : #A30014;
|
|
39
|
+
$info : #1890FF;
|
|
35
40
|
|
|
36
41
|
$contrasted-dark: $darkest !default;
|
|
37
42
|
$contrasted-light: $lightest !default;
|
|
@@ -40,20 +45,20 @@ $contrasted-light: $lightest !default;
|
|
|
40
45
|
// The terminal alway uses a light background, so okay to use a fixed color
|
|
41
46
|
$selected: rgba(#3D98D3, .5);
|
|
42
47
|
|
|
43
|
-
$drag-over: #
|
|
48
|
+
$drag-over: #E8F4FF;
|
|
44
49
|
|
|
45
50
|
BODY, .theme-light {
|
|
46
51
|
|
|
47
52
|
--primary : #{$primary};
|
|
48
53
|
--primary-text : #{contrast-color($primary)};
|
|
49
|
-
--primary-hover-bg : #{darken($primary, 10%)};
|
|
54
|
+
// --primary-hover-bg : #{darken($primary, 10%)};
|
|
55
|
+
--primary-hover-bg : #{$primary};
|
|
50
56
|
--primary-hover-text : #{saturate($lightest, 20%)};
|
|
51
57
|
--primary-active-bg : #{darken($primary, 25%)};
|
|
52
58
|
--primary-active-text : #{contrast-color(darken($primary, 25%))};
|
|
53
59
|
--primary-border : #{$primary};
|
|
54
60
|
--primary-banner-bg : #{rgba($primary, 0.15)};
|
|
55
61
|
--primary-light-bg : #{rgba($primary, 0.05)};
|
|
56
|
-
--primary-keyboard-focus : hsl(from var(--primary) h s calc(l - 10));
|
|
57
62
|
|
|
58
63
|
|
|
59
64
|
.text-primary {
|
|
@@ -66,7 +71,8 @@ BODY, .theme-light {
|
|
|
66
71
|
|
|
67
72
|
&.btn:hover {
|
|
68
73
|
color: var(--primary-hover-text);
|
|
69
|
-
background: var(--primary-hover-bg);
|
|
74
|
+
// background: var(--primary-hover-bg);
|
|
75
|
+
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2) !important;
|
|
70
76
|
transition: all 0.3s ease;
|
|
71
77
|
}
|
|
72
78
|
|
|
@@ -86,15 +92,12 @@ BODY, .theme-light {
|
|
|
86
92
|
--link-border : #{$link};
|
|
87
93
|
--link-banner-bg : #{rgba($link, 0.15)};
|
|
88
94
|
--link-light-bg : #{rgba($link, 0.05)};
|
|
95
|
+
|
|
89
96
|
|
|
90
|
-
|
|
91
|
-
|
|
97
|
+
|
|
92
98
|
.text-link {
|
|
93
99
|
color: var(--link) !important;
|
|
94
100
|
|
|
95
|
-
&.disabled {
|
|
96
|
-
color: var(--disabled-text) !important;
|
|
97
|
-
}
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
.secondary-text-link {
|
|
@@ -122,6 +125,8 @@ BODY, .theme-light {
|
|
|
122
125
|
}
|
|
123
126
|
}
|
|
124
127
|
|
|
128
|
+
--lightest : #{rgba($lightest, 1)};
|
|
129
|
+
|
|
125
130
|
--default : #{$light};
|
|
126
131
|
--default-text : #{contrast-color($light)};
|
|
127
132
|
--default-hover-bg : #{darken($light, 10%)};
|
|
@@ -155,7 +160,7 @@ BODY, .theme-light {
|
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
162
|
|
|
158
|
-
--muted : #
|
|
163
|
+
--muted : #A8ABB2;
|
|
159
164
|
--deemphasized : #717179;
|
|
160
165
|
|
|
161
166
|
.text-muted {
|
|
@@ -181,7 +186,8 @@ BODY, .theme-light {
|
|
|
181
186
|
}
|
|
182
187
|
|
|
183
188
|
.bg-darker {
|
|
184
|
-
background-color: var(--darker);
|
|
189
|
+
// background-color: var(--darker);
|
|
190
|
+
background-color: #dd0c17;
|
|
185
191
|
color: var(--darker-text);
|
|
186
192
|
|
|
187
193
|
&.btn:hover {
|
|
@@ -199,6 +205,7 @@ BODY, .theme-light {
|
|
|
199
205
|
|
|
200
206
|
|
|
201
207
|
--success : #{$success};
|
|
208
|
+
--success-new : #{$info};
|
|
202
209
|
--success-text : #{contrast-color($success)};
|
|
203
210
|
--success-hover-bg : #{darken($success, 10%)};
|
|
204
211
|
--success-hover-text : #{saturate($lightest, 20%)};
|
|
@@ -271,7 +278,9 @@ BODY, .theme-light {
|
|
|
271
278
|
--warning-light-bg : #{rgba($warning, 0.05)};
|
|
272
279
|
|
|
273
280
|
.text-warning {
|
|
274
|
-
color: var(--
|
|
281
|
+
// color: var(--error) !important;
|
|
282
|
+
color: #A30014 !important;
|
|
283
|
+
line-height: 20px;
|
|
275
284
|
}
|
|
276
285
|
|
|
277
286
|
.bg-warning {
|
|
@@ -304,6 +313,7 @@ BODY, .theme-light {
|
|
|
304
313
|
|
|
305
314
|
.text-error {
|
|
306
315
|
color: var(--error) !important;
|
|
316
|
+
line-height: 16px;
|
|
307
317
|
}
|
|
308
318
|
|
|
309
319
|
.bg-error {
|
|
@@ -352,11 +362,11 @@ BODY, .theme-light {
|
|
|
352
362
|
background: var(--disabled-active-bg);
|
|
353
363
|
}
|
|
354
364
|
}
|
|
355
|
-
|
|
365
|
+
|
|
356
366
|
|
|
357
367
|
--body-bg : #{$lightest};
|
|
358
368
|
--body-text : #{$darkest};
|
|
359
|
-
--scrollbar-thumb : #{$
|
|
369
|
+
--scrollbar-thumb : #{$scroll_dark};
|
|
360
370
|
--scrollbar-thumb-dropdown : #{$lighter};
|
|
361
371
|
--scrollbar-track : transparent;
|
|
362
372
|
|
|
@@ -368,17 +378,18 @@ BODY, .theme-light {
|
|
|
368
378
|
--header-btn-text : #{$darkest};
|
|
369
379
|
--header-btn-text-hover : #{$lightest};
|
|
370
380
|
--header-input-text : #{$darkest};
|
|
371
|
-
--header-height :
|
|
381
|
+
--header-height : 50px;
|
|
372
382
|
--header-border : #{$medium};
|
|
373
383
|
--header-border-size : 1px;
|
|
374
|
-
--nav-width :
|
|
384
|
+
--nav-width : 205px;
|
|
375
385
|
--nav-bg : #{$lightest};
|
|
376
386
|
--nav-active : #{$light};
|
|
377
387
|
--nav-hover : #{$medium};
|
|
388
|
+
--nav-hover-color :#1890FF;
|
|
378
389
|
--nav-expander-hover : #{darken($medium, 10%)};
|
|
390
|
+
--nav-icon-badge-bg : #{$dark};
|
|
379
391
|
--nav-border : #{$medium};
|
|
380
392
|
--nav-border-size : 1px;
|
|
381
|
-
--nav-icon-badge-bg : #{$lightest};
|
|
382
393
|
|
|
383
394
|
--footer-bg : transparent;
|
|
384
395
|
--footer-height : 0px;
|
|
@@ -390,15 +401,17 @@ BODY, .theme-light {
|
|
|
390
401
|
--topmost-light-hover : #{$light};
|
|
391
402
|
|
|
392
403
|
--disabled-bg : #{$disabled};
|
|
393
|
-
--disabled-text : #{$secondary};
|
|
404
|
+
// --disabled-text : #{$secondary};
|
|
405
|
+
--disabled-text : #b8b8b8;;
|
|
394
406
|
--box-bg : #{$lighter};
|
|
395
407
|
--subtle-border : #{$medium};
|
|
396
408
|
--border : #{$medium};
|
|
397
409
|
--border-width : 1px;
|
|
398
|
-
--border-radius :
|
|
410
|
+
--border-radius : 2px;
|
|
399
411
|
--border-radius-md : 6px;
|
|
400
412
|
--border-radius-lg : 8px;
|
|
401
|
-
--outline : var(--primary);
|
|
413
|
+
// --outline : var(--primary);
|
|
414
|
+
--outline : #d9d9d9;
|
|
402
415
|
--outline-width : 1px;
|
|
403
416
|
|
|
404
417
|
--accent-btn : var(--primary-banner-bg);
|
|
@@ -409,6 +422,8 @@ BODY, .theme-light {
|
|
|
409
422
|
--modal-border : #{$dark};
|
|
410
423
|
--subtle-overlay-bg : #{rgba($lighter, 0.75)};
|
|
411
424
|
--overlay-bg : rgba(38, 42, 64, 0.35);
|
|
425
|
+
--overlay-model-bg : rgba(0, 0, 0, 0.45);
|
|
426
|
+
--overlay-model-bg : rgba(0, 0, 0, 0.45);
|
|
412
427
|
--shadow : #{rgba($medium, 0.85)};
|
|
413
428
|
|
|
414
429
|
--checkbox-tick : #{$lightest};
|
|
@@ -424,13 +439,16 @@ BODY, .theme-light {
|
|
|
424
439
|
--dropdown-border : #{$medium};
|
|
425
440
|
--dropdown-divider : #{$medium};
|
|
426
441
|
--dropdown-text : #{$darkest};
|
|
427
|
-
--dropdown-active-text : #{$lightest};
|
|
428
|
-
--dropdown-active-
|
|
429
|
-
--dropdown-
|
|
430
|
-
--dropdown-
|
|
442
|
+
// --dropdown-active-text : #{$lightest};
|
|
443
|
+
--dropdown-active-text : #333;
|
|
444
|
+
// --dropdown-active-bg : #{$dark};
|
|
445
|
+
--dropdown-active-bg : #f7f9fa;
|
|
446
|
+
// --dropdown-hover-text : #{$lightest};
|
|
447
|
+
--dropdown-hover-text : #333;
|
|
448
|
+
// --dropdown-hover-bg : var(--link);
|
|
449
|
+
--dropdown-hover-bg : #f7f9fa;
|
|
431
450
|
--dropdown-disabled-text : var(--muted);
|
|
432
451
|
--dropdown-disabled-bg : #{$disabled};
|
|
433
|
-
--dropdown-group-text : #{$darker};
|
|
434
452
|
--dropdown-highlight-text : var(--link);
|
|
435
453
|
|
|
436
454
|
--notification-unread-bg : var(--primary-banner-bg);
|
|
@@ -444,17 +462,18 @@ BODY, .theme-light {
|
|
|
444
462
|
--input-label : #{$secondary};
|
|
445
463
|
--input-placeholder : #{darken($disabled, 10%)};
|
|
446
464
|
--input-border : var(--border);
|
|
465
|
+
--input-border-box-shadow : rgba(0,0,0,.2);
|
|
447
466
|
--input-bg : var(--body-bg);
|
|
448
467
|
--input-bg-accent : #{darken($light, 2%)};
|
|
449
468
|
--input-hover-bg : var(--box-bg);
|
|
450
469
|
--input-focus-bg : var(--box-bg);
|
|
451
470
|
--input-disabled-text : #{darken($disabled, 60%)};
|
|
452
471
|
--input-disabled-label : #{darken($disabled, 40%)};
|
|
453
|
-
--input-disabled-bg : #
|
|
472
|
+
--input-disabled-bg : #f5f5f5;
|
|
454
473
|
--input-disabled-border : #{darken($medium, 10%)};
|
|
455
474
|
--input-disabled-placeholder : #{darken($medium, 15%)};
|
|
456
475
|
--input-addon-bg : #{$darker};
|
|
457
|
-
--input-hover-border : #
|
|
476
|
+
--input-hover-border : #d7d7d7;
|
|
458
477
|
|
|
459
478
|
--label-secondary : #{$darker};
|
|
460
479
|
|
|
@@ -463,24 +482,28 @@ BODY, .theme-light {
|
|
|
463
482
|
|
|
464
483
|
--sortable-table-bg : #{darken($lightest, 5%)};
|
|
465
484
|
--sortable-table-row-bg : #{$lightest};
|
|
466
|
-
--sortable-table-header-bg : #{$lighter};
|
|
485
|
+
// --sortable-table-header-bg : #{$lighter};
|
|
486
|
+
--sortable-table-header-bg : #f8f9fa;
|
|
467
487
|
--sortable-table-top-divider : var(--border);
|
|
468
488
|
--sortable-table-body-divider : #{$medium};
|
|
469
489
|
|
|
470
|
-
--sortable-table-hover-bg : #{$lighter};
|
|
490
|
+
// --sortable-table-hover-bg : #{$lighter};
|
|
491
|
+
--sortable-table-hover-bg :#ebf4fa;
|
|
471
492
|
//--sortable-table-selected-bg : #{rgba($primary, 0.02)};
|
|
472
493
|
|
|
473
|
-
--sortable-table-selected-bg : var(--primary-light-bg);
|
|
494
|
+
// --sortable-table-selected-bg : var(--primary-light-bg);
|
|
495
|
+
--sortable-table-selected-bg : #ebf4fa;
|
|
474
496
|
--sortable-table-group-label : #{$secondary};
|
|
475
497
|
|
|
476
498
|
--tag-primary : #{$darkest};
|
|
477
|
-
--tag-bg : #
|
|
499
|
+
--tag-bg : #{$medium};
|
|
478
500
|
|
|
479
501
|
--popover-bg : var(--body-bg);
|
|
480
502
|
--popover-border : var(--border);
|
|
481
503
|
--popover-text : var(--body-text);
|
|
482
504
|
--popover-border-radius : var(--border-radius);
|
|
483
|
-
--tooltip-bg : #{$medium};
|
|
505
|
+
// --tooltip-bg : #{$medium};
|
|
506
|
+
--tooltip-bg : #fff;
|
|
484
507
|
--tooltip-border : var(--tag-primary);
|
|
485
508
|
--tooltip-text : var(--tag-primary);
|
|
486
509
|
--tooltip-bg-warning : #{rgba($warning, 0.8)};
|
|
@@ -29,11 +29,13 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.vs__dropdown-menu {
|
|
32
|
+
padding-inline-start: 0px;
|
|
32
33
|
display: block;
|
|
33
34
|
position: absolute;
|
|
34
35
|
left: -2px;
|
|
35
|
-
z-index: z-index('dropdownContent');
|
|
36
|
-
|
|
36
|
+
// z-index: z-index('dropdownContent');
|
|
37
|
+
z-index: 50;
|
|
38
|
+
// padding: $input-padding-sm 0;
|
|
37
39
|
margin: 0;
|
|
38
40
|
width: calc(100% + 4px);
|
|
39
41
|
max-height: 350px;
|
|
@@ -67,14 +69,15 @@
|
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
.vs__dropdown-option {
|
|
70
|
-
line-height:
|
|
72
|
+
line-height: 32px; /* Normalize line height */
|
|
71
73
|
display: block;
|
|
72
|
-
padding: 0 calc(#{$input-padding-sm}/2);
|
|
74
|
+
// padding: 0 calc(#{$input-padding-sm}/2);
|
|
75
|
+
padding: 0 12px;
|
|
73
76
|
clear: both;
|
|
74
77
|
color: var(--dropdown-text);
|
|
75
78
|
white-space: nowrap;
|
|
76
79
|
z-index: 1000;
|
|
77
|
-
overflow-y: auto;
|
|
80
|
+
// overflow-y: auto;
|
|
78
81
|
// needs overflow-x hidden so that select for type of charts in cluster chart page
|
|
79
82
|
// doesn't show a horizontal scroll https://github.com/rancher/dashboard/pull/13139/files/9e6a8e64181de4525ad378d4d1b93c8efc2ed6d5#r1929296126
|
|
80
83
|
overflow-x: hidden;
|
|
@@ -158,7 +161,7 @@
|
|
|
158
161
|
height: 32px;
|
|
159
162
|
padding-top: 8px;
|
|
160
163
|
color: var(--secondary);
|
|
161
|
-
margin-right:
|
|
164
|
+
margin-right: 9px;
|
|
162
165
|
}
|
|
163
166
|
}
|
|
164
167
|
|
|
@@ -262,6 +265,13 @@ $transition-duration: 150ms;
|
|
|
262
265
|
&:not(:last-of-type) {
|
|
263
266
|
margin-right: 2px;
|
|
264
267
|
}
|
|
268
|
+
button:hover{
|
|
269
|
+
background-color: unset !important;
|
|
270
|
+
&::after{
|
|
271
|
+
color: var(--link) !important;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
}
|
|
265
275
|
|
|
266
276
|
button.vs__deselect {
|
|
267
277
|
line-height: unset;
|
|
@@ -273,12 +283,13 @@ $transition-duration: 150ms;
|
|
|
273
283
|
.vs__deselect {
|
|
274
284
|
display: inline-flex;
|
|
275
285
|
appearance: none;
|
|
276
|
-
margin-left:
|
|
286
|
+
margin-left: 3px;
|
|
277
287
|
padding: 0;
|
|
278
288
|
border: 0;
|
|
279
289
|
cursor: pointer;
|
|
280
290
|
background: none;
|
|
281
291
|
fill: var(--primary);
|
|
292
|
+
min-width: 32px;
|
|
282
293
|
|
|
283
294
|
svg {
|
|
284
295
|
display: none;
|
|
@@ -310,6 +321,7 @@ $transition-duration: 150ms;
|
|
|
310
321
|
}
|
|
311
322
|
.vs__selected {
|
|
312
323
|
color: var(--input-text);
|
|
324
|
+
background-color: rgba(0, 0, 0, 0);
|
|
313
325
|
}
|
|
314
326
|
}
|
|
315
327
|
|
|
@@ -319,7 +331,7 @@ $transition-duration: 150ms;
|
|
|
319
331
|
}
|
|
320
332
|
.vs__dropdown-toggle {
|
|
321
333
|
background-color: var(--input-bg);
|
|
322
|
-
border: none;
|
|
334
|
+
border: none !important;
|
|
323
335
|
padding: none;
|
|
324
336
|
border-radius: var(--border-radius);
|
|
325
337
|
border: 1px solid var(--dropdown-border);
|
|
@@ -377,7 +389,8 @@ header .vs-select .vs__dropdown-toggle {
|
|
|
377
389
|
|
|
378
390
|
.vs__no-options {
|
|
379
391
|
color: var(--dropdown-text);
|
|
380
|
-
padding:
|
|
392
|
+
padding: 0px 20px;
|
|
393
|
+
line-height: 32px;
|
|
381
394
|
}
|
|
382
395
|
|
|
383
396
|
header {
|
|
@@ -7563,7 +7563,31 @@ typeDescription:
|
|
|
7563
7563
|
logging.banzaicloud.io.output: An output defines which logging providers that logs can be sent to. The output needs to be in the same namespace as the flow that is using it.
|
|
7564
7564
|
group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
|
|
7565
7565
|
management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
|
|
7566
|
-
|
|
7566
|
+
kubevirt.io.virtualmachine: 云虚拟机是一种安全可靠、弹性可伸缩的云计算服务器,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。
|
|
7567
|
+
harvesterhci.io.volume: 虚拟磁盘具有高性能和低时延的特点,支持随机读写,可以像使用物理硬盘一样,在虚拟机上进行格式化并建立文件系统来使用块存储。
|
|
7568
|
+
harvesterhci.io.volumesnapshot: 虚拟磁盘快照功能通过捕获虚拟磁盘在特定时间点的状态,生成增量副本,支持快速回滚磁盘状态,为测试验证、容灾恢复提供高效解决方案
|
|
7569
|
+
harvesterhci.io.virtualmachinebackup: 虚拟机备份功能通过创建包含磁盘数据、配置信息的完整副本,支持跨环境恢复及长期数据保护,为系统故障或灾难提供可靠容灾方案。
|
|
7570
|
+
harvesterhci.io.schedulevmbackup: 虚拟机备份策略功能通过创建定时任务,对虚拟机进行完整备份或增量快照,为用户提供自动化的数据备份和容灾方案。
|
|
7571
|
+
harvesterhci.io.vmsnapshot: 虚拟机快照功能通过捕获特定时间点的系统状态,支持快速恢复虚拟机状态,为数据备份与系统调试提供灵活解决方案。
|
|
7572
|
+
harvesterhci.io.keypair: SSH密钥对是一种安全便捷的登录认证方式,您可以实现免密码远程登录,并在无需人工干预的情况下进行安全的自动化操作,实现服务器配置和应用程序部署的自动化。
|
|
7573
|
+
harvesterhci.io.networkattachmentdefinition: 快速构建云上数据中心网络,二层,三层网络为扁平网络,虚拟专有网络为...VPN等网络类型,可以通过专线/VPN等连接方式与传统数据中心组成一个按需定制的网络环境,实现应用的平滑迁移上云。
|
|
7574
|
+
loadbalancer.harvesterhci.io.ippool: 地址池是负载均衡器专用的内置 IP 地址管理解决方案。
|
|
7575
|
+
loadbalancer.harvesterhci.io.loadbalancer: 负载均衡器(Load Balancer)是用于在多个计算资源之间分配网络或应用流量的设备或软件。其主要目的是优化资源利用、最大化吞吐量、减少延迟,并确保容错配置。
|
|
7576
|
+
harvesterhci.io.virtualmachineimage: 镜像是创建虚拟机实例的基础模板,规格能够设定创建虚拟机的CPU、内存、磁盘等资源数量,在创建虚拟机实例时必须选择一个镜像以及规格。
|
|
7577
|
+
harvesterhci.io.virtualmachinetemplateversion: 虚拟机模版是用于快速部署具有相同配置的多个虚拟机的一个基础镜像。它包含了操作系统、预安装的应用程序以及一系列预先设定的配置参数。
|
|
7578
|
+
harvesterhci.io.host: 物理机管理通过资源整合、动态调整、统一管理和自动化运维,提高了资源利用率、业务灵活性、系统可靠性和安全性,同时降低了成本和能耗,是资源管理重要的实现手段。
|
|
7579
|
+
harvesterhci.io.storage: 存储管理简化了复杂架构,提升了存储性能与效率,确保了高可用性和数据安全性,支持虚拟化环境,降低了成本,并优化了数据保护策略,是数据中心存储管理的关键解决方案。
|
|
7580
|
+
network.harvesterhci.io.clusternetwork: 集群网络功能通过将集群内物理服务器和网卡组成多个逻辑网络,实现服务器之间的灵活网络互联,提供高可用、高性能、高灵活度的网络服务。
|
|
7581
|
+
devices.harvesterhci.io.sriovnetworkdevice: SR-IOV网卡功能通过 SR-IOV 技术实现物理网卡的虚拟划分,支持虚拟机直接访问独立虚拟网卡,提升网卡利用率同时,不降低网络性能,优化资源利用率。
|
|
7582
|
+
devices.harvesterhci.io.sriovgpudevice: GPU管理主要对图形处理单元(Graphics Processing Unit,GPU)的有效监控、配置和优化,以确保其高效、稳定地运行。GPU管理也可以在超算场景中的使用,其强大的并行处理能力和高内存带宽使其成为高性能计算的重要工具和实现方式。
|
|
7583
|
+
devices.harvesterhci.io.usbdevice: USB管理功能,通过设备直通技术,将物理 USB 设备直接映射至虚拟机,实现跨平台数据交互与外设资源共享。
|
|
7584
|
+
harvesterhci.io.monitoring.alertmanagerconfig: 支持对云资源(包括物理机、虚拟机、存储、网络等)的运行状态、性能指标以及安全事件进行持续监控,能够及时发现潜在问题并触发告警,确保运维团队能够迅速响应并解决问题,从而保障云服务的稳定性和安全性。
|
|
7585
|
+
harvesterhci.io.setting: 集群配置主要用于管理系统中的一些功能及配置参数。
|
|
7586
|
+
harvesterhci.io.secret: 密钥管理功能集成密钥生成、存储、访问控制等功能,能够为镜像和虚拟磁盘点加密存储提供安全密钥。
|
|
7587
|
+
devices.harvesterhci.io.pcidevice: PCI是Peripheral Component Interconnect(外围设备互连)的缩写,它是一种计算机总线标准,主要用于连接计算机内部的各种外部设备。
|
|
7588
|
+
management.cattle.io.setting: 统一配置平台基础选项与全局设置,支持CA证书、密码规则、域名、Token时效等核心配置。
|
|
7589
|
+
management.cattle.io.user: 用于管理用户账号,支持创建、维护用户信息,可设置用户权限、管理密码等,保障系统资源仅由授权用户访问,提升系统安全性。
|
|
7590
|
+
harvesterhci.io.management.cluster: 提供虚拟化集群的实时健康状态监控、版本号管理及资源负载管理,支持批量导入/删除集群、配置调优与权限分级功能,实现高效运维管控。
|
|
7567
7591
|
typeLabel:
|
|
7568
7592
|
management.cattle.io.oidcclient: |-
|
|
7569
7593
|
{count, plural,
|
|
@@ -8327,10 +8351,10 @@ advancedSettings:
|
|
|
8327
8351
|
'ui-default-landing': 'The default page users land on after login.'
|
|
8328
8352
|
'brand': Folder name for an alternative theme defined in '/assets/brand'
|
|
8329
8353
|
'hide-local-cluster': Hide the local cluster
|
|
8330
|
-
'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
|
|
8331
|
-
'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported or node-driver K3s or RKE2 clusters.
|
|
8354
|
+
# '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."
|
|
8355
|
+
# 'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported or node-driver K3s or RKE2 clusters.
|
|
8332
8356
|
'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
|
|
8333
|
-
'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
8357
|
+
# 'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
8334
8358
|
warnings:
|
|
8335
8359
|
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
8336
8360
|
editHelp:
|