@rancher/shell 0.3.23 → 0.3.25

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.
Files changed (149) hide show
  1. package/assets/styles/base/_variables.scss +1 -0
  2. package/assets/styles/themes/_dark.scss +1 -0
  3. package/assets/styles/themes/_light.scss +6 -5
  4. package/assets/translations/en-us.yaml +44 -17
  5. package/assets/translations/zh-hans.yaml +2 -2
  6. package/components/ClusterIconMenu.vue +143 -0
  7. package/components/CruResource.vue +7 -1
  8. package/components/ExplorerProjectsNamespaces.vue +11 -1
  9. package/components/FixedBanner.vue +17 -1
  10. package/components/Loading.vue +1 -1
  11. package/components/Markdown.vue +1 -1
  12. package/components/Questions/__tests__/Yaml.test.ts +3 -2
  13. package/components/SideNav.vue +1 -1
  14. package/components/SortableTable/index.vue +3 -2
  15. package/components/auth/RoleDetailEdit.vue +15 -2
  16. package/components/auth/login/saml.vue +12 -1
  17. package/components/form/LabeledSelect.vue +12 -5
  18. package/components/form/Members/ClusterPermissionsEditor.vue +1 -1
  19. package/components/form/Members/MembershipEditor.vue +6 -1
  20. package/components/form/SelectOrCreateAuthSecret.vue +7 -0
  21. package/components/form/__tests__/KeyValue.test.ts +6 -3
  22. package/components/form/__tests__/LabeledSelect.test.ts +18 -0
  23. package/components/formatter/PodsUsage.vue +11 -36
  24. package/components/formatter/PrincipalGroupBindings.vue +8 -5
  25. package/components/formatter/__tests__/PodsUsage.test.ts +36 -19
  26. package/components/nav/Group.vue +62 -34
  27. package/components/nav/Header.vue +13 -6
  28. package/components/nav/Pinned.vue +47 -0
  29. package/components/nav/TopLevelMenu.vue +673 -325
  30. package/components/nav/Type.vue +88 -8
  31. package/config/home-links.js +1 -1
  32. package/config/product/istio.js +15 -5
  33. package/config/router.js +3 -9
  34. package/config/table-headers.js +5 -6
  35. package/config/uiplugins.js +1 -0
  36. package/core/plugin-helpers.js +3 -0
  37. package/core/types.ts +6 -1
  38. package/creators/app/files/.vscode/settings.json +0 -1
  39. package/creators/pkg/init +2 -2
  40. package/detail/__tests__/autoscaling.horizontalpodautoscaler.test.ts +118 -0
  41. package/detail/autoscaling.horizontalpodautoscaler/index.vue +4 -4
  42. package/detail/provisioning.cattle.io.cluster.vue +7 -5
  43. package/edit/__tests__/management.cattle.io.clusterroletemplatebinding.test.ts +58 -0
  44. package/edit/__tests__/namespace.test.ts +5 -3
  45. package/edit/fleet.cattle.io.gitrepo.vue +43 -15
  46. package/edit/logging.banzaicloud.io.output/index.vue +7 -0
  47. package/edit/management.cattle.io.clusterroletemplatebinding.vue +3 -11
  48. package/edit/namespace.vue +8 -4
  49. package/edit/provisioning.cattle.io.cluster/Basics.vue +662 -0
  50. package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +9 -8
  51. package/edit/provisioning.cattle.io.cluster/DrainOptions.vue +13 -8
  52. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +11 -2
  53. package/edit/provisioning.cattle.io.cluster/MemberRoles.vue +40 -0
  54. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +237 -0
  55. package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.tests.ts +71 -23
  56. package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +52 -0
  57. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +65 -142
  58. package/edit/provisioning.cattle.io.cluster/rke2.vue +253 -582
  59. package/edit/workload/storage/ContainerMountPaths.vue +7 -5
  60. package/edit/workload/storage/__tests__/Storage.test.ts +2 -2
  61. package/edit/workload/storage/persistentVolumeClaim/__tests__/persistentvolumeclaim.test.ts +36 -0
  62. package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +15 -7
  63. package/initialize/App.js +2 -0
  64. package/initialize/client.js +63 -51
  65. package/initialize/index.js +7 -5
  66. package/layouts/default.vue +10 -2
  67. package/layouts/home.vue +6 -2
  68. package/layouts/plain.vue +9 -2
  69. package/list/fleet.cattle.io.cluster.vue +2 -2
  70. package/list/management.cattle.io.feature.vue +1 -1
  71. package/machine-config/amazonec2.vue +1 -0
  72. package/machine-config/vmwarevsphere.vue +48 -7
  73. package/mixins/brand.js +0 -8
  74. package/mixins/child-hook.js +2 -2
  75. package/mixins/create-edit-view/impl.js +3 -3
  76. package/mixins/fetch.client.js +3 -3
  77. package/models/__tests__/management.cattle.io.node.ts +96 -0
  78. package/models/__tests__/node.ts +74 -0
  79. package/models/cluster/node.js +6 -5
  80. package/models/cluster.x-k8s.io.machinedeployment.js +2 -2
  81. package/models/management.cattle.io.cluster.js +22 -1
  82. package/models/management.cattle.io.clusterroletemplatebinding.js +3 -3
  83. package/models/management.cattle.io.globalrole.js +17 -2
  84. package/models/management.cattle.io.node.js +6 -4
  85. package/models/management.cattle.io.projectroletemplatebinding.js +3 -3
  86. package/models/management.cattle.io.roletemplate.js +17 -2
  87. package/package.json +2 -6
  88. package/pages/__tests__/prefs.test.ts +1 -1
  89. package/pages/about.vue +2 -0
  90. package/pages/auth/setup.vue +5 -4
  91. package/pages/c/_cluster/explorer/ConfigBadge.vue +1 -0
  92. package/pages/c/_cluster/monitoring/index.vue +8 -3
  93. package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +9 -66
  94. package/pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue +182 -0
  95. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +15 -32
  96. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +8 -46
  97. package/pages/c/_cluster/uiplugins/index.vue +64 -64
  98. package/pages/diagnostic.vue +0 -39
  99. package/pages/home.vue +1 -1
  100. package/pages/prefs.vue +3 -13
  101. package/plugins/dashboard-store/normalize.js +4 -4
  102. package/plugins/dashboard-store/resource-class.js +1 -1
  103. package/plugins/int-number.js +5 -2
  104. package/plugins/positive-int-number.js +19 -0
  105. package/plugins/steve/__tests__/getters.spec.ts +15 -0
  106. package/plugins/steve/getters.js +22 -10
  107. package/public/index.html +4 -2
  108. package/rancher-components/BadgeState/BadgeState.vue +5 -1
  109. package/rancher-components/Banner/Banner.test.ts +51 -1
  110. package/rancher-components/Banner/Banner.vue +134 -53
  111. package/rancher-components/Card/Card.test.ts +37 -0
  112. package/rancher-components/Card/Card.vue +24 -7
  113. package/rancher-components/Form/Checkbox/Checkbox.test.ts +20 -29
  114. package/rancher-components/Form/Checkbox/Checkbox.vue +45 -20
  115. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +2 -8
  116. package/rancher-components/Form/LabeledInput/LabeledInput.vue +22 -10
  117. package/rancher-components/Form/Radio/RadioButton.test.ts +31 -0
  118. package/rancher-components/Form/Radio/RadioButton.vue +30 -13
  119. package/rancher-components/Form/Radio/RadioGroup.vue +26 -7
  120. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +7 -6
  121. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.test.ts +25 -38
  122. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +23 -11
  123. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +19 -5
  124. package/rancher-components/StringList/StringList.test.ts +453 -49
  125. package/rancher-components/StringList/StringList.vue +92 -58
  126. package/scripts/extension/parse-tag-name +0 -0
  127. package/store/index.js +4 -0
  128. package/store/prefs.js +4 -4
  129. package/store/type-map.js +2 -16
  130. package/types/shell/index.d.ts +26 -14
  131. package/utils/__tests__/cluster.test.ts +55 -0
  132. package/utils/__tests__/object.test.ts +21 -2
  133. package/utils/__tests__/sort.test.ts +61 -0
  134. package/utils/cluster.js +47 -1
  135. package/utils/object.js +12 -5
  136. package/utils/string.js +12 -0
  137. package/utils/validators/formRules/__tests__/index.test.ts +13 -1
  138. package/utils/validators/formRules/index.ts +4 -0
  139. package/utils/validators/role-template.js +9 -1
  140. package/utils/version.js +1 -1
  141. package/vue.config.js +1 -4
  142. package/yarn-error.log +200 -0
  143. package/content/docs/en-us/getting-started.md +0 -224
  144. package/content/docs/en-us/whats-new.md +0 -29
  145. package/content/docs/zh-hans/getting-started.md +0 -224
  146. package/content/docs/zh-hans/whats-new.md +0 -28
  147. package/pages/docs/_doc.vue +0 -345
  148. package/pages/docs/toc.js +0 -27
  149. package/plugins/console.js +0 -34
@@ -1,224 +0,0 @@
1
- ---
2
- title: Getting Started
3
- sideToc: false
4
- ---
5
-
6
- # Getting Started
7
-
8
- This short guide provides a basic introduction to the UI.
9
-
10
- If you have previously been using the Cluster Manager UI, check out the guide below to learn where you can access the equivalent functionality in the new UI.
11
-
12
- ## Home
13
-
14
- When you first login to Rancher you'll be taken to the new Home page. There are a number of information cards presented. You can close these using the <i class="icon icon-close doc-icon"></i> icon. If you wish to bring back the hidden cards, open the page menu using the <i class="icon icon-actions doc-icon"></i> icon in the top-right and choose 'Restore hidden cards'.
15
-
16
- You can change where you land when you login from the Home page and also from the Preferences page. To access User Preferences, click on the user avatar icon in the top right and choose 'Preferences' from the menu.
17
- ### Top-level Menu
18
-
19
- The new slide-in menu provides quick access to your clusters and apps. It is accessible by clicking on the <svg class="doc-icon" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none" /><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" /></svg> icon in the top-left.
20
-
21
-
22
-
23
- ## Migrating from Cluster Manager
24
-
25
- As of version 2.6, Cluster Manager is no longer provided as a separate UI. The dashboard UI has been enhanced to provide the functionality from Cluster Manager. As a result, functionality you might be familiar with from Cluster Manager can be found in slightly different locations within the new UI - this guide helps you find what you're looking for.
26
-
27
- > Note that the legacy feature flag needs to be enabled for legacy functionality to be available. You can enable this from the slide-in menu → Global Settings → Feature Flags.
28
-
29
- <table>
30
- <thead>
31
- <tr>
32
- <th>Feature</th>
33
- <th>Cluster Manager Location</th>
34
- <th>New Location</th>
35
- </tr>
36
- </thead>
37
- <tbody>
38
- <tr class="table-group">
39
- <td colspan="3">Cluster Provisioning</td>
40
- </tr>
41
- <tr>
42
- <td>Clusters List</td>
43
- <td>Global → Clusters</td>
44
- <td>Menu → Cluster Management → Clusters</td>
45
- </tr>
46
- <tr>
47
- <td>Drivers</td>
48
- <td>Global → Tools → Drivers</td>
49
- <td>Menu → Cluster Management → Drivers</td>
50
- </tr>
51
- <tr>
52
- <td>RKE1 Templates</td>
53
- <td>Global → Tools → RKE Templates</td>
54
- <td>Menu → Cluster Management → RKE1 Configuration → RKE Templates</td>
55
- </tr>
56
- <tr>
57
- <td>RKE1 Cloud Credentials</td>
58
- <td>User Icon → Cloud Credentials</td>
59
- <td>Menu → Cluster Management → RKE1 Configuration → Cloud Credentials</td>
60
- </tr>
61
- <tr>
62
- <td>RKE1 Node Templates</td>
63
- <td>User Icon → Node Templates</td>
64
- <td>Menu → Cluster Management → RKE1 Configuration → Node Templates</td>
65
- </tr>
66
- <tr>
67
- <td>RKE1 Snapshots</td>
68
- <td>Global → Clusters → Snapshots</td>
69
- <td>Menu → Cluster Management → (Cluster) → Snapshots</td></td>
70
- </tr>
71
- <!-- -->
72
- <tr class="table-group">
73
- <td colspan="3">Global</td>
74
- </tr>
75
- <tr>
76
- <td>Settings</td>
77
- <td>Global → Settings</td>
78
- <td>Menu → Global Settings</td>
79
- </tr>
80
- <tr>
81
- <td>Catalogs</td>
82
- <td>Global → Tools → Catalogs</td>
83
- <td>Menu → Global Configuration → Catalogs</td>
84
- </tr>
85
- <tr>
86
- <td>Global DNS Entries</td>
87
- <td>Global → Tools → Global DNS Entries</td>
88
- <td>Menu → Global Configuration → Global DNS Entries</td>
89
- </tr>
90
- <tr>
91
- <td>Global DNS Providers</td>
92
- <td>Global → Tools → Global DNS Providers</td>
93
- <td>Menu → Global Configuration → Global DNS Providers</td>
94
- </tr>
95
- <tr>
96
- <td>Pod Security Policies</td>
97
- <td>Global → Security → Pod Security Policies</td>
98
- <td>Menu → Cluster Management → Pod Security Policies</td>
99
- </tr>
100
- <!-- -->
101
- <tr class="table-group">
102
- <td colspan="3">Cluster Functionality (for a specific cluster)</td>
103
- </tr>
104
- <tr>
105
- <td>Cluster</td>
106
- <td>(Cluster) → Cluster</td>
107
- <td>Menu → (Cluster) → Cluster</td>
108
- </tr>
109
- <tr>
110
- <td>Nodes</td>
111
- <td>(Cluster) → Nodes</td>
112
- <td>Menu -> (Cluster) → Cluster → Kube Nodes</td>
113
- </tr>
114
- <tr>
115
- <td>Projects/Namespaces</td>
116
- <td>(Cluster) → Projects/Namespaces</td>
117
- <td>Menu -> (Cluster) → Cluster → Projects/Namespaces</td>
118
- </tr>
119
- <tr>
120
- <td>Alerts (V1)</td>
121
- <td>(Cluster) → Tools → Alerts</td>
122
- <td>Menu → (Cluster) → Legacy -> Alerts</td>
123
- </tr>
124
- <tr>
125
- <td>Catalogs</td>
126
- <td>(Cluster) → Tools → Catalogs</td>
127
- <td>Menu → (Cluster) → Legacy -> Catalogs</td>
128
- </tr>
129
- <tr>
130
- <td>Notifiers (V1)</td>
131
- <td>(Cluster) → Tools → Notifiers</td>
132
- <td>Menu → (Cluster) → Legacy -> Notifiers</td>
133
- </tr>
134
- <tr>
135
- <td>Monitoring (V1)</td>
136
- <td>(Cluster) → Tools → Monitoring</td>
137
- <td>Menu → (Cluster) → Cluster Tools -> Monitoring (Legacy)</td>
138
- </tr>
139
- <tr class="table-group">
140
- <td colspan="3">V1 Monitoring</td>
141
- <tr>
142
- <td>Cluster Metrics</td>
143
- <td>(Cluster) → Cluster</td>
144
- <td>Menu → (Cluster) → Cluster</td>
145
- </tr>
146
- <tr>
147
- <td>Node Metrics</td>
148
- <td>(Cluster) → Nodes → (Node)</td>
149
- <td>Menu → (Cluster) → Cluster → Nodes → (Node)</td>
150
- </tr>
151
- <tr>
152
- <td>Workload Metrics</td>
153
- <td>(Cluster) → (Project) → Resources → Workloads → (Workload) → Workload Metrics</td>
154
- <td>Menu → (Cluster) → Deployments → (Deployment) → Metrics</td>
155
- </tr>
156
- <tr>
157
- <td>Pod Metrics</td>
158
- <td>(Cluster) → (Project) → Resources → Workloads → (Workload) → Pods → (Pod) → Pod Metrics</td>
159
- <td>Menu → (Cluster) → Deployments → (Deployment) → Pods → (Pod) → Metrics</td>
160
- </tr>
161
- </tr>
162
- <tr class="table-group">
163
- <td colspan="3">Project</td>
164
- </tr>
165
- <tr>
166
- <td>Namespaces</td>
167
- <td>(Cluster) → (Project) → Namespaces</td>
168
- <td>Menu → (Cluster) → Cluster → Projects/Namespaces</td>
169
- </tr>
170
- <tr>
171
- <td>Apps</td>
172
- <td>(Cluster) → (Project) → Apps</td>
173
- <td>Menu → (Cluster) → Legacy → Project → Apps</td>
174
- </tr>
175
- <tr>
176
- <td>Alerts</td>
177
- <td>(Cluster) → (Project) → Tools → Alerts</td>
178
- <td>Menu → (Cluster) → Legacy → Project → (Project) → Alerts</td>
179
- </tr>
180
- <tr>
181
- <td>Catalogs</td>
182
- <td>(Cluster) → (Project) → Tools → Catalogs</td>
183
- <td>Menu → (Cluster) → Legacy → Project → (Project) → Catalogs</td>
184
- </tr>
185
- <tr>
186
- <td>Logging</td>
187
- <td>(Cluster) → (Project) → Tools → Logging</td>
188
- <td>Menu → (Cluster) → Legacy → Project → (Project) → Logging</td>
189
- </tr>
190
- <tr>
191
- <td>Monitoring</td>
192
- <td>(Cluster) → (Project) → Tools → Monitoring</td>
193
- <td>Menu → (Cluster) → Legacy → Project → (Project) → Monitoring</td>
194
- </tr>
195
- <tr class="table-group">
196
- <td colspan="3">Other</td>
197
- </tr>
198
- <tr>
199
- <td>Kubeconfig download</td>
200
- <td>(Cluster) → Cluster → Kubeconfig File</td>
201
- <td>Menu → (Cluster) → Cluster → File Icon (top-right)</td>
202
- </tr>
203
- <tr>
204
- <td>CLI download</td>
205
- <td>Bottom Bar</td>
206
- <td>Menu → Version</td>
207
- </tr>
208
- <tr>
209
- <td>Image Lists download</td>
210
- <td>Bottom Bar --> Version</td>
211
- <td>Menu → Version</td>
212
- </tr>
213
- <tr>
214
- <td>API & Keys</td>
215
- <td>User Avatar → API & Keys</td>
216
- <td>User Avatar → Account & API Keys</td>
217
- </tr>
218
- <tr>
219
- <td>Preferences</td>
220
- <td>User Avatar → Preferences</td>
221
- <td>User Avatar → Preferences</td>
222
- </tr>
223
- </tbody>
224
- </table>
@@ -1,29 +0,0 @@
1
- ---
2
- title: What's New in 2.7
3
- ---
4
-
5
- ## New in 2.7.2
6
-
7
- ### Kubernetes 1.25 and PSAs
8
-
9
- - Kubernetes 1.25 GA takes PSAs (Pod Security Admissions) out of beta. PSAs replace the former PSP (Pod Security Policy) setup, which is a major change that impacts upgrades of Kubernetes.
10
-
11
- ## New in 2.7.1
12
-
13
- - This was a security release to address a few CVEs and other bugs. Please see https://github.com/rancher/rancher/releases/tag/v2.7.1 for the full list of what was addressed.
14
-
15
- ## New in 2.7.0
16
-
17
- ### k3s provisioning is GA (x86 Only)
18
-
19
- - Provisioning K3s clusters on x86 clusters has graduated to GA! The fully compliant Kubernetes distribution is simplified, secure and at less than 60mb is perfect for Edge.
20
-
21
- ### Rancher Extensions
22
-
23
- - Rancher Extensions provides a mechanism to extend the functionality of the Rancher Manager UI. Rancher will use this to provide new functionality that can be
24
- installed by administrators. Extensions are provided as Helm charts. A new top-level 'Extensions' UI allows administrators to enable Extensions support and install and manage Extensions themselves.
25
-
26
- ### OCI Support for Helm for Fleet
27
-
28
- - Authentication for OCI-based registries is now supported. Note that the structure of the fleet.yaml is the same and the credentials are provided as a Kubernetes secret, which is described in the Private Helm Repo box in the Repo Structure docs.
29
-
@@ -1,224 +0,0 @@
1
- ---
2
- title: 开始使用
3
- sideToc: false
4
- ---
5
-
6
- # 开始使用
7
-
8
- 本指南提供了 UI 的基本介绍。
9
-
10
- 如果你以前使用的是 Cluster Manager UI,请查看下面的指南,了解在新的 UI 中你可以在哪里访问相应的功能。
11
-
12
- ## 首页
13
-
14
- 首次登录 Rancher 时,你会访问新的主页。这里包括了许多信息卡片。你可以使用 <i class="icon icon-close doc-icon"></i> 图标来关闭这些卡片。如果要恢复隐藏的卡片,请单击右上方的 <i class="icon icon-actions doc-icon"></i> 图标,然后选择 "恢复隐藏的卡片"。
15
-
16
- 你可以从主页和偏好设置页面改变登录时显示的页面。要访问用户偏好设置页面,请单击右上角的用户头像图标,然后从菜单中选择“偏好设置”。
17
- ### 顶层菜单
18
-
19
- 新的滑入式菜单让你能快速访问集群和应用程序。点击 <svg class="doc-icon" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none" /><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" /></svg> 图标(左上角)即可进行访问。
20
-
21
-
22
-
23
- ## 从 Cluster Manager 迁移
24
-
25
- 从 Rancher 2.6 开始,Cluster Manager 不再作为一个单独的 UI。我们已增强 Dashboard UI 以提供 Cluster Manager 的功能。因此,Cluster Manager 的功能在新的 UI 中的位置可能不同,本指南会帮助你找到所需的功能。
26
-
27
- > 请注意,你需要启用旧版功能标志才能使用旧版功能。你可以从滑入式菜单 → 全局设置 → 功能开关中启用该功能。
28
-
29
- <table>
30
- <thead>
31
- <tr>
32
- <th>功能</th>
33
- <th>Cluster Manager 位置</th>
34
- <th>新位置</th>
35
- </tr>
36
- </thead>
37
- <tbody>
38
- <tr class="table-group">
39
- <td colspan="3">集群配置</td>
40
- </tr>
41
- <tr>
42
- <td>集群列表</td>
43
- <td>全局 → 集群</td>
44
- <td>菜单 → 集群管理 → 集群</td>
45
- </tr>
46
- <tr>
47
- <td>驱动</td>
48
- <td>全局 → 工具 → 驱动</td>
49
- <td>菜单 → 集群管理 → 驱动</td>
50
- </tr>
51
- <tr>
52
- <td>RKE1 模板</td>
53
- <td>全局 → 工具 → RKE 模板</td>
54
- <td>菜单 → 集群管理 → RKE1 配置 → RKE 模板</td>
55
- </tr>
56
- <tr>
57
- <td>RKE1 云凭证</td>
58
- <td>用户图标 → 云凭证</td>
59
- <td>菜单 → 集群管理 → RKE1 配置 → 云凭证</td>
60
- </tr>
61
- <tr>
62
- <td>RKE1 节点模板</td>
63
- <td>用户图标 → 节点模板</td>
64
- <td>菜单 → 集群管理 → RKE1 配置 → 节点模板</td>
65
- </tr>
66
- <tr>
67
- <td>RKE1 快照</td>
68
- <td>全局 → 集群 → 快照</td>
69
- <td>菜单 → 集群管理 →(集群)→ 快照</td></td>
70
- </tr>
71
- <!-- -->
72
- <tr class="table-group">
73
- <td colspan="3">全局</td>
74
- </tr>
75
- <tr>
76
- <td>设置</td>
77
- <td>全局 → 设置</td>
78
- <td>菜单 → 全局设置</td>
79
- </tr>
80
- <tr>
81
- <td>应用商店</td>
82
- <td>全局 → 工具 → 应用商店</td>
83
- <td>菜单 → 全局设置 → 应用商店</td>
84
- </tr>
85
- <tr>
86
- <td>全局 DNS 条目</td>
87
- <td>全局 → 工具 → 全局 DNS 条目</td>
88
- <td>菜单 → 全局设置 → 全局 DNS 条目</td>
89
- </tr>
90
- <tr>
91
- <td>全局 DNS 提供商</td>
92
- <td>全局→ 工具 → 全局 DNS 提供商</td>
93
- <td>菜单 → 全局设置 → 全局 DNS 提供商</td>
94
- </tr>
95
- <tr>
96
- <td>Pod 安全策略</td>
97
- <td>全局 → 安全 → Pod 安全策略</td>
98
- <td>菜单 → 集群管理 → Pod 安全策略</td>
99
- </tr>
100
- <!-- -->
101
- <tr class="table-group">
102
- <td colspan="3">集群功能(针对特定集群)</td>
103
- </tr>
104
- <tr>
105
- <td>集群</td>
106
- <td>(集群)→ 集群</td>
107
- <td>菜单 →(集群)→ 集群</td>
108
- </tr>
109
- <tr>
110
- <td>节点</td>
111
- <td>(集群)→ 节点</td>
112
- <td>菜单 →(集群)→ 集群 → Kube 节点</td>
113
- </tr>
114
- <tr>
115
- <td>项目/命名空间</td>
116
- <td>(集群)→ 项目/命名空间</td>
117
- <td>菜单 →(集群)→ 集群 → 项目/命名空间</td>
118
- </tr>
119
- <tr>
120
- <td>Alerts (V1)</td>
121
- <td>(集群)→ 工具 → Alerts</td>
122
- <td>菜单 →(集群)→ 旧版 → Alerts</td>
123
- </tr>
124
- <tr>
125
- <td>应用商店</td>
126
- <td>(集群)→ 工具 → 应用商店</td>
127
- <td>菜单 →(集群)→ 旧版 -> 应用商店</td>
128
- </tr>
129
- <tr>
130
- <td>Notifiers (V1)</td>
131
- <td>(集群)→ 工具 → Notifiers</td>
132
- <td>菜单 →(集群)→ 旧版 -> Notifiers</td>
133
- </tr>
134
- <tr>
135
- <td>Monitoring (V1)</td>
136
- <td>(集群)→ 工具 → Monitoring</td>
137
- <td>菜单 → (集群)→ 集群工具 → Monitoring(旧版)</td>
138
- </tr>
139
- <tr class="table-group">
140
- <td colspan="3">V1 Monitoring</td>
141
- <tr>
142
- <td>集群指标</td>
143
- <td>(集群)→ 集群</td>
144
- <td>菜单 →(集群)→ 集群</td>
145
- </tr>
146
- <tr>
147
- <td>节点指标</td>
148
- <td>(集群)→ 节点 →(节点)</td>
149
- <td>菜单 →(集群)→ 集群 → 节点 →(节点)</td>
150
- </tr>
151
- <tr>
152
- <td>工作负载指标</td>
153
- <td>(集群)→(项目)→ 资源 → 工作负载 →(工作负载)→ 工作负载指标</td>
154
- <td>菜单 →(集群)→ Deployments →(Deployment)→ 指标</td>
155
- </tr>
156
- <tr>
157
- <td>Pod 指标</td>
158
- <td>(集群)→(项目)→ 资源 → 工作负载 →(工作负载)→ Pod → (Pod) → Pod 指标</td>
159
- <td>菜单 →(集群)→ Deployments →(Deployment)→ Pod → (Pod) → 指标</td>
160
- </tr>
161
- </tr>
162
- <tr class="table-group">
163
- <td colspan="3">项目</td>
164
- </tr>
165
- <tr>
166
- <td>命名空间</td>
167
- <td>(集群)→(项目)→ 命名空间</td>
168
- <td>菜单 →(集群)→ 集群 → 项目/命名空间</td>
169
- </tr>
170
- <tr>
171
- <td>应用</td>
172
- <td>(集群)→(项目)→ 应用</td>
173
- <td>菜单 →(集群)→ 旧版 → 项目 → 应用</td>
174
- </tr>
175
- <tr>
176
- <td>告警</td>
177
- <td>(集群)→(项目)→ 工具 → Alerts</td>
178
- <td>菜单 →(集群)→ 旧版 → 项目 →(项目)→ Alerts</td>
179
- </tr>
180
- <tr>
181
- <td>应用商店</td>
182
- <td>(集群)→(项目)→ 工具 → 应用商店</td>
183
- <td>菜单 →(集群)→ 旧版 → 项目 →(项目)→ 应用商店</td>
184
- </tr>
185
- <tr>
186
- <td>Logging</td>
187
- <td>(集群)→(项目)→ 工具 → Logging</td>
188
- <td>菜单 →(集群)→ 旧版 → 项目 →(项目)→ Logging</td>
189
- </tr>
190
- <tr>
191
- <td>监控</td>
192
- <td>(集群)→(项目)→ 工具 → Monitoring</td>
193
- <td>菜单 →(集群)→ 旧版 → 项目 →(项目)→ Monitoring</td>
194
- </tr>
195
- <tr class="table-group">
196
- <td colspan="3">其他</td>
197
- </tr>
198
- <tr>
199
- <td>Kubeconfig 下载</td>
200
- <td>(集群)→ 集群 → Kubeconfig 文件</td>
201
- <td>菜单 →(集群)→ 集群 → 文件图标(右上角)</td>
202
- </tr>
203
- <tr>
204
- <td>CLI 下载</td>
205
- <td>底栏</td>
206
- <td>菜单 → 版本</td>
207
- </tr>
208
- <tr>
209
- <td>镜像列表下载</td>
210
- <td>底栏 → 版本</td>
211
- <td>菜单 → 版本</td>
212
- </tr>
213
- <tr>
214
- <td>API &amp; 密钥</td>
215
- <td>用户头像 → API 和密钥</td>
216
- <td>用户头像 → 账号 &amp; API 密钥</td>
217
- </tr>
218
- <tr>
219
- <td>偏好设置</td>
220
- <td>用户头像 → 偏好设置</td>
221
- <td>用户头像 → 偏好设置</td>
222
- </tr>
223
- </tbody>
224
- </table>
@@ -1,28 +0,0 @@
1
- ---
2
- title: 2.7 的新功能
3
- ---
4
-
5
- ## 2.7.2 的新功能
6
-
7
- ### Kubernetes 1.25 和 PSA
8
-
9
- - Kubernetes 1.25 GA 让 PSA(Pod Security Admissions)不再只是测试功能。PSA 取代了以前的 PSP(Pod 安全策略),这是 Kubernetes 升级的重大变化。
10
-
11
- ## 2.7.2 的新功能
12
-
13
- - 这是一个安全版本,旨在修复 CVE 和其他错误。如需查看所有已解决的问题,请前往 https://github.com/rancher/rancher/releases/tag/v2.7.1。
14
-
15
- ## 2.7.0 的新功能
16
-
17
- ### K3s 配置已 GA(仅限 x86)
18
-
19
- - 在 x86 集群上配置 K3s 集群已正式 GA!该 Kubernetes 发行版完全兼容、已经过简化、使用安全而且小于 60 MB,非常适合 Edge。
20
-
21
- ### Rancher 扩展
22
-
23
- - Rancher Extensions 可用于扩展 Rancher Manager UI 的功能。Rancher 将使用它来提供新的功能。扩展以 Helm Chart 的形式提供。新的顶层“扩展”UI 允许管理员启用扩展支持并自行安装和管理扩展。
24
-
25
- ### OCI 对 Helm Fleet 的支持
26
-
27
- - 现在支持对基于 OCI 的镜像仓库进行认证。请注意,fleet.yaml 的结构是相同的,并且凭证作为 Kubernetes Secret 提供(Repo Structure 文档的 Private Helm Repo 框中已进行了描述)。
28
-