@rancher/shell 0.5.3 → 1.2.1

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 (356) hide show
  1. package/.DS_Store +0 -0
  2. package/assets/images/providers/aks-black.svg +28 -0
  3. package/assets/images/providers/aks.svg +31 -0
  4. package/assets/styles/global/_labeled-input.scss +1 -0
  5. package/assets/styles/global/_layout.scss +0 -99
  6. package/assets/translations/en-us.yaml +76 -74
  7. package/assets/translations/zh-hans.yaml +25 -23
  8. package/babel.config.js +1 -7
  9. package/chart/gatekeeper.vue +11 -2
  10. package/chart/istio.vue +10 -1
  11. package/chart/logging/index.vue +11 -2
  12. package/chart/monitoring/alerting/index.vue +21 -7
  13. package/chart/monitoring/grafana/index.vue +2 -57
  14. package/chart/monitoring/index.vue +26 -52
  15. package/chart/monitoring/prometheus/index.vue +43 -37
  16. package/chart/rancher-backup/index.vue +10 -3
  17. package/cloud-credential/azure.vue +17 -4
  18. package/components/AsyncButton.vue +0 -9
  19. package/components/Carousel.vue +0 -1
  20. package/components/ChartPsp.vue +76 -0
  21. package/components/ClusterIconMenu.vue +9 -24
  22. package/components/CodeMirror.vue +16 -75
  23. package/components/CopyCode.vue +2 -6
  24. package/components/CopyToClipboard.vue +1 -2
  25. package/components/CopyToClipboardText.vue +9 -14
  26. package/components/CruResource.vue +0 -1
  27. package/components/EtcdInfoBanner.vue +5 -5
  28. package/components/ExplorerProjectsNamespaces.vue +1 -25
  29. package/components/FixedBanner.vue +0 -1
  30. package/components/IconOrSvg.vue +1 -1
  31. package/components/Markdown.vue +12 -16
  32. package/components/Questions/index.vue +1 -1
  33. package/components/ResourceDetail/Masthead.vue +9 -25
  34. package/components/ResourceDetail/index.vue +4 -1
  35. package/components/ResourceList/Masthead.vue +18 -1
  36. package/components/ResourceTable.vue +2 -14
  37. package/components/ResourceYaml.vue +5 -34
  38. package/components/SideNav.vue +65 -43
  39. package/components/SortableTable/THead.vue +9 -7
  40. package/components/SortableTable/index.vue +2 -1
  41. package/components/StatusTable.vue +1 -5
  42. package/components/TabTitle.vue +84 -0
  43. package/components/Tabbed/index.vue +0 -12
  44. package/components/YamlEditor.vue +0 -1
  45. package/components/__tests__/ChartPsp.test.ts +75 -0
  46. package/components/__tests__/CopyCode.test.ts +4 -5
  47. package/components/fleet/FleetBundles.vue +11 -5
  48. package/components/fleet/FleetRepos.vue +27 -62
  49. package/components/fleet/FleetResources.vue +1 -6
  50. package/components/fleet/FleetStatus.vue +3 -3
  51. package/components/fleet/FleetSummary.vue +30 -35
  52. package/components/form/ArrayList.vue +8 -1
  53. package/components/form/ArrayListSelect.vue +9 -9
  54. package/components/form/BannerSettings.vue +0 -3
  55. package/components/form/FileSelector.vue +0 -1
  56. package/components/form/KeyValue.vue +0 -2
  57. package/components/form/LabeledSelect.vue +0 -4
  58. package/components/form/Password.vue +1 -3
  59. package/components/form/Select.vue +1 -1
  60. package/components/form/SelectOrCreateAuthSecret.vue +4 -4
  61. package/components/form/__tests__/KeyValue.test.ts +1 -1
  62. package/components/formatter/Checked.vue +3 -11
  63. package/components/formatter/ClusterProvider.vue +18 -1
  64. package/components/formatter/FleetSummaryGraph.vue +11 -23
  65. package/components/formatter/LiveDate.vue +16 -0
  66. package/components/formatter/LiveDuration.vue +1 -1
  67. package/components/formatter/PercentageBar.vue +1 -1
  68. package/components/formatter/WorkloadDetailEndpoints.vue +22 -12
  69. package/components/formatter/__tests__/ClusterProvider.test.ts +28 -0
  70. package/components/nav/Group.vue +2 -2
  71. package/components/nav/Header.vue +2 -2
  72. package/components/nav/Jump.vue +9 -19
  73. package/components/nav/TopLevelMenu.vue +18 -66
  74. package/components/nav/Type.vue +7 -16
  75. package/components/nav/WindowManager/ContainerLogs.vue +19 -120
  76. package/components/nav/WindowManager/ContainerShell.vue +1 -6
  77. package/components/nav/WindowManager/index.vue +10 -11
  78. package/components/nav/__tests__/TopLevelMenu.test.ts +1 -34
  79. package/components/nav/__tests__/Type.test.ts +1 -31
  80. package/components/nuxt/nuxt-child.js +78 -14
  81. package/components/nuxt/nuxt.js +1 -1
  82. package/components/user.retention/user-retention-header.vue +34 -0
  83. package/composables/useI18n.ts +26 -0
  84. package/composables/useStore.ts +16 -0
  85. package/config/harvester-manager-types.js +0 -2
  86. package/config/home-links.js +32 -2
  87. package/config/private-label.js +0 -22
  88. package/config/product/explorer.js +4 -4
  89. package/config/product/fleet.js +1 -6
  90. package/config/product/legacy.js +1 -84
  91. package/config/product/manager.js +15 -8
  92. package/config/query-params.js +0 -1
  93. package/config/router.js +368 -385
  94. package/config/settings.ts +9 -2
  95. package/config/store.js +1 -1
  96. package/config/system-namespaces.js +0 -3
  97. package/config/table-headers.js +27 -47
  98. package/config/types.js +5 -0
  99. package/config/uiplugins.js +1 -1
  100. package/core/plugin-helpers.js +5 -3
  101. package/core/plugin-routes.ts +114 -56
  102. package/core/plugin.ts +10 -16
  103. package/core/plugins-loader.js +9 -7
  104. package/core/plugins.js +3 -0
  105. package/core/types-provisioning.ts +0 -7
  106. package/creators/app/init +0 -19
  107. package/detail/fleet.cattle.io.bundle.vue +1 -1
  108. package/detail/fleet.cattle.io.cluster.vue +1 -11
  109. package/detail/node.vue +0 -42
  110. package/detail/pod.vue +1 -68
  111. package/detail/provisioning.cattle.io.cluster.vue +8 -25
  112. package/detail/workload/index.vue +1 -15
  113. package/dialog/ScaleMachineDownDialog.vue +17 -34
  114. package/edit/auth/googleoauth.vue +5 -1
  115. package/edit/catalog.cattle.io.clusterrepo.vue +7 -20
  116. package/edit/cloudcredential.vue +0 -2
  117. package/edit/fleet.cattle.io.gitrepo.vue +4 -3
  118. package/edit/management.cattle.io.project.vue +52 -1
  119. package/edit/management.cattle.io.setting.vue +2 -32
  120. package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +1 -1
  121. package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +2 -1
  122. package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +1 -1
  123. package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +3 -12
  124. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +1 -2
  125. package/edit/networking.k8s.io.networkpolicy/__tests__/PolicyRuleTarget.spec.ts +1 -1
  126. package/edit/provisioning.cattle.io.cluster/{tabs/Basics.vue → Basics.vue} +125 -106
  127. package/edit/provisioning.cattle.io.cluster/{tabs/MachinePool.vue → MachinePool.vue} +7 -1
  128. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +7 -15
  129. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +237 -0
  130. package/edit/provisioning.cattle.io.cluster/__tests__/{CustomCommand.test.ts → CustomCommand.tests.ts} +0 -6
  131. package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +1 -1
  132. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +1 -7
  133. package/edit/provisioning.cattle.io.cluster/import.vue +2 -2
  134. package/edit/provisioning.cattle.io.cluster/index.vue +40 -109
  135. package/edit/provisioning.cattle.io.cluster/rke2.vue +689 -152
  136. package/edit/service.vue +0 -12
  137. package/edit/token.vue +0 -1
  138. package/edit/workload/Upgrading.vue +2 -3
  139. package/edit/workload/index.vue +1 -2
  140. package/edit/workload/mixins/workload.js +1 -1
  141. package/initialize/App.js +71 -25
  142. package/initialize/client.js +162 -21
  143. package/initialize/index.js +124 -47
  144. package/initialize/layouts.ts +26 -0
  145. package/{components/templates → layouts}/blank.vue +1 -1
  146. package/{components/templates → layouts}/default.vue +98 -8
  147. package/{components/templates → layouts}/error.vue +19 -10
  148. package/{components/templates → layouts}/home.vue +1 -4
  149. package/{components/templates → layouts}/plain.vue +1 -4
  150. package/{components/templates → layouts}/standalone.vue +1 -1
  151. package/{components/templates → layouts}/unauthenticated.vue +1 -1
  152. package/list/catalog.cattle.io.app.vue +0 -1
  153. package/list/management.cattle.io.feature.vue +7 -1
  154. package/list/management.cattle.io.setting.vue +0 -1
  155. package/list/management.cattle.io.user.vue +25 -1
  156. package/list/node.vue +0 -1
  157. package/machine-config/__tests__/vmwarevsphere.test.ts +161 -56
  158. package/machine-config/azure.vue +37 -21
  159. package/machine-config/vmwarevsphere.vue +47 -42
  160. package/middleware/authenticated.js +19 -14
  161. package/mixins/auth-config.js +7 -2
  162. package/mixins/brand.js +41 -29
  163. package/mixins/fetch.server.js +73 -0
  164. package/mixins/labeled-form-element.ts +1 -6
  165. package/models/__tests__/management.cattle.io.node.ts +0 -85
  166. package/models/__tests__/namespace.test.ts +9 -49
  167. package/models/cluster/node.js +4 -4
  168. package/models/cluster.x-k8s.io.machine.js +1 -1
  169. package/models/cluster.x-k8s.io.machinedeployment.js +0 -14
  170. package/models/fleet.cattle.io.cluster.js +0 -4
  171. package/models/fleet.cattle.io.gitrepo.js +13 -56
  172. package/models/management.cattle.io.cluster.js +3 -11
  173. package/models/management.cattle.io.kontainerdriver.js +0 -1
  174. package/models/management.cattle.io.node.js +14 -18
  175. package/models/management.cattle.io.nodepool.js +0 -17
  176. package/models/management.cattle.io.project.js +36 -0
  177. package/models/management.cattle.io.setting.js +7 -11
  178. package/models/management.cattle.io.user.js +65 -0
  179. package/models/namespace.js +1 -1
  180. package/models/pod.js +0 -20
  181. package/models/provisioning.cattle.io.cluster.js +9 -91
  182. package/models/secret.js +18 -126
  183. package/models/storage.k8s.io.storageclass.js +1 -1
  184. package/models/workload.js +0 -16
  185. package/models/workload.service.js +0 -18
  186. package/package.json +10 -12
  187. package/pages/about.vue +1 -0
  188. package/pages/account/create-key.vue +1 -0
  189. package/pages/account/index.vue +1 -0
  190. package/pages/auth/login.vue +1 -0
  191. package/pages/auth/logout.vue +2 -0
  192. package/pages/auth/setup.vue +4 -37
  193. package/pages/auth/verify.vue +8 -14
  194. package/pages/c/_cluster/apps/charts/__tests__/install.helper.test.ts +17 -2
  195. package/pages/c/_cluster/apps/charts/index.vue +58 -64
  196. package/pages/c/_cluster/apps/charts/install.helpers.js +13 -2
  197. package/pages/c/_cluster/apps/charts/install.vue +5 -5
  198. package/pages/c/_cluster/apps/index.vue +2 -0
  199. package/pages/c/_cluster/auth/index.vue +2 -0
  200. package/pages/c/_cluster/auth/user.retention/index.vue +384 -0
  201. package/pages/c/_cluster/ecm/index.vue +2 -0
  202. package/pages/c/_cluster/explorer/index.vue +53 -56
  203. package/pages/c/_cluster/explorer/tools/index.vue +3 -171
  204. package/pages/c/_cluster/fleet/index.vue +1 -1
  205. package/pages/c/_cluster/index.vue +2 -0
  206. package/pages/c/_cluster/manager/pages/_page.vue +5 -4
  207. package/pages/c/_cluster/monitoring/index.vue +1 -17
  208. package/pages/c/_cluster/settings/DefaultLinksEditor.vue +1 -1
  209. package/pages/c/_cluster/settings/banners.vue +2 -0
  210. package/pages/c/_cluster/settings/brand.vue +2 -3
  211. package/pages/c/_cluster/settings/index.vue +2 -0
  212. package/pages/c/_cluster/settings/links.vue +3 -2
  213. package/pages/c/_cluster/settings/performance.vue +1 -0
  214. package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +1 -2
  215. package/pages/c/_cluster/uiplugins/CatalogList/index.vue +46 -10
  216. package/pages/c/_cluster/uiplugins/index.vue +2 -0
  217. package/pages/c/index.vue +9 -0
  218. package/pages/diagnostic.vue +2 -1
  219. package/pages/fail-whale.vue +1 -0
  220. package/pages/prefs.vue +1 -0
  221. package/pages/rio/mesh.vue +508 -0
  222. package/pages/support/index.vue +8 -2
  223. package/pkg/auto-import.js +1 -1
  224. package/plugins/axios.js +36 -0
  225. package/plugins/back-button.js +5 -3
  226. package/plugins/clean-html-directive.js +19 -1
  227. package/plugins/clean-tooltip-directive.js +1 -1
  228. package/plugins/codemirror-loader.js +1 -1
  229. package/plugins/codemirror.js +0 -41
  230. package/plugins/dashboard-store/__tests__/{mutations.test.ts → mutations.spec.ts} +1 -1
  231. package/plugins/dashboard-store/actions.js +17 -16
  232. package/plugins/dashboard-store/classify.js +18 -1
  233. package/plugins/dashboard-store/getters.js +7 -70
  234. package/plugins/dashboard-store/index.js +12 -0
  235. package/plugins/dashboard-store/mutations.js +4 -0
  236. package/plugins/dashboard-store/resource-class.js +20 -65
  237. package/plugins/i18n.js +1 -1
  238. package/plugins/steve/__tests__/getters.spec.ts +48 -26
  239. package/plugins/steve/__tests__/subscribe.spec.ts +106 -0
  240. package/plugins/steve/actions.js +37 -3
  241. package/plugins/steve/getters.js +24 -7
  242. package/plugins/steve/mutations.js +5 -2
  243. package/plugins/steve/norman-class.js +0 -19
  244. package/plugins/steve/steve-class.js +0 -22
  245. package/plugins/steve/subscribe.js +34 -13
  246. package/plugins/transitions.js +4 -0
  247. package/plugins/vue-clipboard2.js +4 -0
  248. package/rancher-components/Accordion/Accordion.vue +3 -2
  249. package/rancher-components/BadgeState/BadgeState.vue +3 -3
  250. package/rancher-components/Banner/Banner.test.ts +1 -5
  251. package/rancher-components/Banner/Banner.vue +2 -2
  252. package/rancher-components/Card/Card.vue +4 -4
  253. package/rancher-components/Form/Checkbox/Checkbox.vue +4 -3
  254. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +1 -1
  255. package/rancher-components/Form/LabeledInput/LabeledInput.vue +55 -24
  256. package/rancher-components/Form/Radio/RadioButton.test.ts +1 -3
  257. package/rancher-components/Form/Radio/RadioButton.vue +13 -7
  258. package/rancher-components/Form/Radio/RadioGroup.vue +4 -3
  259. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +7 -5
  260. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
  261. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
  262. package/rancher-components/StringList/StringList.vue +8 -8
  263. package/rancher-components/components/Accordion/Accordion.vue +3 -2
  264. package/rancher-components/components/BadgeState/BadgeState.test.ts +12 -0
  265. package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +2 -19
  266. package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +14 -11
  267. package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +1 -1
  268. package/rancher-components/components/StringList/StringList.test.ts +0 -270
  269. package/rancher-components/components/StringList/StringList.vue +18 -57
  270. package/scripts/extension/bundle +7 -19
  271. package/scripts/extension/helm/scripts/package +3 -11
  272. package/scripts/extension/parse-tag-name +4 -4
  273. package/scripts/extension/publish +9 -20
  274. package/scripts/publish-shell.sh +1 -11
  275. package/scripts/test-plugins-build.sh +9 -85
  276. package/store/catalog.js +1 -1
  277. package/store/features.js +0 -1
  278. package/store/i18n.js +0 -11
  279. package/store/index.js +13 -11
  280. package/store/prefs.js +38 -33
  281. package/store/type-map.js +82 -157
  282. package/tsconfig.default.json +46 -0
  283. package/tsconfig.json +9 -35
  284. package/types/shell/index.d.ts +407 -468
  285. package/utils/axios.js +19 -0
  286. package/utils/create-yaml.js +1 -5
  287. package/utils/custom-validators.js +2 -0
  288. package/utils/error.js +1 -16
  289. package/utils/monitoring.js +2 -37
  290. package/utils/nuxt.js +39 -18
  291. package/utils/object.js +0 -24
  292. package/utils/router.scrollBehavior.js +14 -12
  293. package/utils/socket.js +1 -0
  294. package/utils/time.js +1 -1
  295. package/utils/title.ts +3 -0
  296. package/utils/url.ts +1 -1
  297. package/utils/validators/formRules/__tests__/index.test.ts +4 -49
  298. package/utils/validators/formRules/index.ts +9 -12
  299. package/utils/validators/setting.js +10 -6
  300. package/vue.config.js +3 -24
  301. package/chart/monitoring/steps/uninstall-v1.vue +0 -135
  302. package/components/Certificates.vue +0 -164
  303. package/components/__tests__/CodeMirror.spec.ts +0 -99
  304. package/components/fleet/__tests__/FleetSummary.test.ts +0 -316
  305. package/components/formatter/FleetClusterSummaryGraph.vue +0 -27
  306. package/components/formatter/__tests__/Checked.test.ts +0 -19
  307. package/components/formatter/__tests__/WorkloadDetailEndpoints.test.ts +0 -81
  308. package/components/nav/WindowManager/__tests__/ContainerLogs.test.ts +0 -186
  309. package/composables/useCompactInput.ts +0 -20
  310. package/composables/useLabeledFormElement.ts +0 -138
  311. package/creators/app/files/.gitlab-ci.yml +0 -14
  312. package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +0 -77
  313. package/edit/__tests__/service.test.ts +0 -89
  314. package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +0 -112
  315. package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +0 -473
  316. package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +0 -73
  317. package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +0 -386
  318. package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +0 -137
  319. package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +0 -157
  320. package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +0 -135
  321. package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +0 -189
  322. package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +0 -147
  323. package/edit/provisioning.cattle.io.cluster/tabs/upgrade/index.vue +0 -76
  324. package/mixins/v1-workload-metrics.js +0 -43
  325. package/models/__tests__/management.cattle.io.cluster.test.ts +0 -23
  326. package/models/__tests__/management.cattle.io.nodepool.ts +0 -83
  327. package/models/__tests__/provisioning.cattle.io.cluster.test.ts +0 -241
  328. package/models/__tests__/secret.test.ts +0 -37
  329. package/models/__tests__/storage.k8s.io.storageclass.test.ts +0 -22
  330. package/models/__tests__/workload.test.ts +0 -91
  331. package/plugins/clean-html.js +0 -53
  332. package/plugins/dashboard-store/__tests__/resource-class.test.ts +0 -49
  333. package/plugins/dashboard-store/__tests__/utils/store-mocks.ts +0 -7
  334. package/plugins/index.js +0 -11
  335. package/plugins/steve/__tests__/resource-utils.test.ts +0 -159
  336. package/plugins/steve/__tests__/steve-class.spec.ts +0 -59
  337. package/plugins/steve/__tests__/utils/steve-mocks.ts +0 -31
  338. package/plugins/steve/resource-utils.ts +0 -38
  339. package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +0 -50
  340. package/server/har-file.js +0 -183
  341. package/store/__tests__/type-map.test.ts +0 -1122
  342. package/tsconfig.paths.json +0 -18
  343. package/utils/azure.js +0 -24
  344. package/utils/clipboard.js +0 -5
  345. /package/components/form/__tests__/{NameNsDescription.test.ts → NameNsDescription.ts} +0 -0
  346. /package/edit/networking.k8s.io.networkpolicy/__tests__/utils/{selectors.test.ts → selectors.ts} +0 -0
  347. /package/edit/provisioning.cattle.io.cluster/{tabs/networking/ACE.vue → ACE.vue} +0 -0
  348. /package/edit/provisioning.cattle.io.cluster/{tabs/AgentConfiguration.vue → AgentConfiguration.vue} +0 -0
  349. /package/edit/provisioning.cattle.io.cluster/{tabs/upgrade/DrainOptions.vue → DrainOptions.vue} +0 -0
  350. /package/edit/provisioning.cattle.io.cluster/{tabs/MemberRoles.vue → MemberRoles.vue} +0 -0
  351. /package/edit/provisioning.cattle.io.cluster/{tabs/registries/RegistryConfigs.vue → RegistryConfigs.vue} +0 -0
  352. /package/edit/provisioning.cattle.io.cluster/{tabs/registries/RegistryMirrors.vue → RegistryMirrors.vue} +0 -0
  353. /package/edit/provisioning.cattle.io.cluster/{tabs/etcd/S3Config.vue → S3Config.vue} +0 -0
  354. /package/plugins/dashboard-store/__tests__/{actions.test.ts → actions.spec.ts} +0 -0
  355. /package/plugins/dashboard-store/__tests__/{getters.test.ts → getters.spec.ts} +0 -0
  356. /package/rancher-components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
package/.DS_Store ADDED
Binary file
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
5
+ <g>
6
+ <polygon points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
7
+ <path d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
8
+ M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
9
+ <polygon points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
10
+ <path d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2L1,56.5V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z M10.1,59.7
11
+ l-3.3-1V41.3l3.3-1V59.7z"/>
12
+ <polygon points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
13
+ <path d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
14
+ M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
15
+ <polygon points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
16
+ <path d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2L20,82.3V67.2l2.5-0.8V83.2z
17
+ M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
18
+ <polygon points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
19
+ <path d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2l-2.5-1v-15l2.5-0.8V83.2z
20
+ M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
21
+ <polygon points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
22
+ <path d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5L20,32.7V17.6l2.5-0.8V33.5z
23
+ M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
24
+ <polygon points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
25
+ <path d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6l2.5-0.8
26
+ C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#0079D6;}
7
+ </style>
8
+ <g>
9
+ <polygon class="st0" points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
10
+ <path class="st0" d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4
11
+ l2.5-0.8V58.4z M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
12
+ <polygon class="st0" points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
13
+ <path class="st0" d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z
14
+ M10.1,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
15
+ <polygon class="st0" points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
16
+ <path class="st0" d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4
17
+ l2.5-0.8V58.4z M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
18
+ <polygon class="st0" points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
19
+ <path class="st0" d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2l-2.5-0.9V67.2l2.5-0.8
20
+ V83.2z M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
21
+ <polygon class="st0" points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
22
+ <path class="st0" d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2L56,82.2V67.2l2.5-0.8
23
+ V83.2z M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
24
+ <polygon class="st0" points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
25
+ <path class="st0" d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5l-2.5-0.8V17.6
26
+ l2.5-0.8V33.5z M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
27
+ <polygon class="st0" points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
28
+ <path class="st0" d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6
29
+ l2.5-0.8C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
30
+ </g>
31
+ </svg>
@@ -121,6 +121,7 @@
121
121
  .cron-label, .sub-label {
122
122
  position: absolute;
123
123
  top: 100%;
124
+ width: 100%;
124
125
  padding-top: 5px;
125
126
  left: 0;
126
127
  color: var(--input-label);
@@ -54,102 +54,3 @@ HEADER {
54
54
  background-color: var(--nav-bg);
55
55
  height: var(--footer-height);
56
56
  }
57
-
58
-
59
- // !BEGIN This was all a part of default.vue but it wasn't scoped which meant it applied to all styles. Without layouts this style was being lazy loaded instead of on initial load. This was styling other layouts especially plain.vue.
60
- .dashboard-root {
61
- display: flex;
62
- flex-direction: column;
63
- height: 100vh;
64
- }
65
-
66
- .dashboard-content {
67
- display: grid;
68
- position: relative;
69
- flex: 1 1 auto;
70
- overflow-y: auto;
71
- min-height: 0px;
72
-
73
- &.dashboard-padding-left {
74
- padding-left: $app-bar-collapsed-width;
75
-
76
- .overlay-content-mode {
77
- left: calc(var(--nav-width) + $app-bar-collapsed-width);
78
- }
79
- }
80
-
81
- &.pin-right {
82
- grid-template-areas:
83
- "header header header"
84
- "nav main wm";
85
- grid-template-rows: var(--header-height) auto;
86
- grid-template-columns: var(--nav-width) auto var(--wm-width, 0px);
87
- }
88
-
89
- &.pin-bottom {
90
- grid-template-areas:
91
- "header header"
92
- "nav main"
93
- "wm wm";
94
- grid-template-rows: var(--header-height) auto var(--wm-height, 0px);
95
- grid-template-columns: var(--nav-width) auto;
96
- }
97
-
98
- &.pin-left {
99
- grid-template-areas:
100
- "header header header"
101
- "wm nav main";
102
- grid-template-rows: var(--header-height) auto;
103
- grid-template-columns: var(--wm-width, 0px) var(--nav-width) auto;
104
- }
105
-
106
- >HEADER {
107
- grid-area: header;
108
- }
109
-
110
- .default-side-nav {
111
- grid-area: nav;
112
- }
113
- }
114
-
115
- .wm {
116
- grid-area: wm;
117
- overflow-y: hidden;
118
- z-index: 1;
119
- }
120
-
121
- .localeSelector {
122
- ::v-deep .popover-inner {
123
- padding: 50px 0;
124
- }
125
-
126
- ::v-deep .popover-arrow {
127
- display: none;
128
- }
129
-
130
- ::v-deep .popover:focus {
131
- outline: 0;
132
- }
133
-
134
- li {
135
- padding: 8px 20px;
136
-
137
- &:hover {
138
- background-color: var(--primary-hover-bg);
139
- color: var(--primary-hover-text);
140
- text-decoration: none;
141
- }
142
- }
143
- }
144
-
145
- .drag-start {
146
- z-index: 1000;
147
- opacity: 0.5;
148
- transition: opacity .3s ease;
149
- }
150
-
151
- .drag-end {
152
- opacity: 1;
153
- }
154
-
155
- // !END
@@ -185,7 +185,7 @@ nav:
185
185
  configuration: Configuration
186
186
  hci: HCI
187
187
  search:
188
- placeholder: Filter clusters by...
188
+ placeholder: Type to search clusters
189
189
  noResults: No matching clusters
190
190
  clusters: clusters
191
191
  resourceSearch:
@@ -243,6 +243,7 @@ suffix:
243
243
  ib: iB
244
244
  mib: MiB
245
245
  gb: GB
246
+ ago: ago
246
247
  revisions: |-
247
248
  {count, plural,
248
249
  =1 { Revision }
@@ -691,15 +692,6 @@ asyncButton:
691
692
  successIcon: checkmark
692
693
  waiting: ''
693
694
  waitingIcon: refresh
694
- manual-refresh:
695
- action: ''
696
- actionIcon: refresh
697
- error: ''
698
- errorIcon: error
699
- success: ''
700
- successIcon: checkmark
701
- waiting: ''
702
- waitingIcon: refresh
703
695
  remove:
704
696
  action: Remove
705
697
  success: Removed
@@ -860,6 +852,9 @@ catalog:
860
852
  keywords: Keywords
861
853
  errors:
862
854
  clusterToolExists: This chart has a fixed namespace and name. A matching <a href="{url}">application</a> has been found and any changes will be made to it.
855
+ banner:
856
+ legacy: 'PSP Removal: Before upgrading a cluster to Kubernetes 1.25+, please ensure you review your Helm applications for Pod Security Policies and update them accordingly'
857
+ enablePSP: Enable Pod Security Policies
863
858
  global: Global
864
859
  charts:
865
860
  all: All
@@ -874,7 +869,7 @@ catalog:
874
869
  versionWindowsIncompatible: Linux only version
875
870
  header: Charts
876
871
  featuredCharts: Featured Charts
877
- noCharts: 'There are no charts available, have you added any repos or set filters?'
872
+ noCharts: 'There are no charts available, have you added any repos?'
878
873
  noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
879
874
  noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
880
875
  operatingSystems:
@@ -1283,6 +1278,9 @@ cluster:
1283
1278
  networkName: Network Name
1284
1279
  macAddress: Mac Address
1285
1280
  macFormat: 'Invalid MAC address format.'
1281
+ vGpus:
1282
+ errors:
1283
+ notAllocatable: '"VGPUs" not allocatable. There are not enough [{vGpus}] devices to be allocated to each node in machine pool [{pool}]'
1286
1284
  volume:
1287
1285
  title: Volumes
1288
1286
  volume: Volume
@@ -1393,6 +1391,7 @@ cluster:
1393
1391
  label: DNS Label
1394
1392
  environment:
1395
1393
  label: Environment
1394
+ tooltip: The environment is configured when cloud credentials are created.
1396
1395
  faultDomainCount:
1397
1396
  help: If the availability set has already been created, the fault domain count will be ignored.
1398
1397
  label: Fault Domain Count
@@ -1680,9 +1679,12 @@ cluster:
1680
1679
  banner:
1681
1680
  warning: 'This cluster contains a machineSelectorConfig, which this form does not fully support; use the YAML editor to manage the full configuration.'
1682
1681
  os: 'You are attempting to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
1683
- rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
1682
+ rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
1684
1683
  desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1684
+ invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25 and will be automatically removed.
1685
1685
  haveArgInfo: Configuration information is not available for the selected Kubernetes version. The options available on this screen will be limited; you may want to use the YAML editor.
1686
+ deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25.
1687
+ removedPsp: Pod Security Policies have been removed in Kubernetes v1.25. Use Pod Security Admission instead.
1686
1688
  cloudProviderAddConfig: 'On Kubernetes 1.27 or greater, the Amazon Cloud Provider requires additional configuration. See <a href="https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/kubernetes-clusters-in-rancher-setup/set-up-cloud-providers/amazon" target="_blank" rel="noopener noreferrer nofollow">the documentation</a> for more information.'
1687
1689
  machinePoolError: |-
1688
1690
  {count, plural,
@@ -1849,6 +1851,9 @@ cluster:
1849
1851
  cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
1850
1852
  cisUnsupported: The selected Kubernetes Version no longer supports CIS Profile "{cisProfile}". Please select a supported profile. We recommend reviewing the <a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">documentation</a> to evaluate the impact of changing the CIS Profile.
1851
1853
  modal:
1854
+ pspChange:
1855
+ title: Pod Security Policy deprecation
1856
+ body: <p>Kubernetes has removed support for Pod Security Policies (PSPs) starting with version 1.25. If your cluster has PodSecurityPolicy admission controller enabled via "kube-apiserver-arg.enable-admission-plugins" in Cluster YAML, it has to be <i>manually</i> removed before proceeding with the upgrade. Additionally, any PSPs that may be present in the cluster will no longer be available/enforced. Do you want to proceed?</p>
1852
1857
  editYamlMachinePool:
1853
1858
  title: Save Machine Configurations
1854
1859
  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.
@@ -1862,10 +1867,6 @@ cluster:
1862
1867
  header: System Services
1863
1868
  cni:
1864
1869
  label: Container Network
1865
- cniNoneBanner: When CNI is set to 'none' an <a href="https://ranchermanager.docs.rancher.com/reference-guides/cluster-configuration/rancher-server-configuration/rke2-cluster-configuration#additionalmanifest" target="_blank" rel="noopener noreferrer nofollow">Additional Manifest</a> deploying an alternate CNI must be specified for successful cluster provisioning.
1866
- cilium:
1867
- BandwidthManager:
1868
- enable: Enable Bandwidth Manager
1869
1870
  cloudProvider:
1870
1871
  label: Cloud Provider
1871
1872
  header: Cloud Provider Config
@@ -2049,8 +2050,6 @@ clusterIndexPage:
2049
2050
  etcd: Etcd
2050
2051
  scheduler: Scheduler
2051
2052
  controller-manager: Controller Manager
2052
- certs:
2053
- label: Certificates
2054
2053
 
2055
2054
  configmap:
2056
2055
  tabs:
@@ -2078,10 +2077,6 @@ resource:
2078
2077
  errors:
2079
2078
  update: "Error updating {name}"
2080
2079
 
2081
- codeMirror:
2082
- keymap:
2083
- tooltip: Key mapping preference.
2084
-
2085
2080
  cruResource:
2086
2081
  backToForm: Back to Form
2087
2082
  backBody: You will lose any changes made to the YAML.
@@ -2361,10 +2356,8 @@ glance:
2361
2356
  version: Kubernetes Version
2362
2357
  monitoringDashboard: Monitoring Dashboard
2363
2358
  installMonitoring: Install Monitoring
2364
- v1MonitoringInstalled: V1 Monitoring Installed
2365
2359
  clusterInfo: Cluster Information
2366
2360
  eventsTable: Full events list
2367
- secretsTable: Full secrets list
2368
2361
 
2369
2362
  clusterBadge:
2370
2363
  addLabel: Add Cluster Badge
@@ -2777,9 +2770,11 @@ landing:
2777
2770
  cpuUsed: CPU Used
2778
2771
  memoryUsed: Memory Used
2779
2772
  seeWhatsNew: Learn more about the improvements and new capabilities in this version.
2780
- whatsNewLink: "What's new in 2.9"
2773
+ whatsNewLink: "What's new in 2.8"
2781
2774
  learnMore: Learn More
2782
2775
  support: Support
2776
+ psps: PSPs
2777
+ deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25. You have one or more PodSecurityPolicy resource(s) in this cluster.
2783
2778
  community:
2784
2779
  title: Community Support
2785
2780
  docs: Docs
@@ -3168,9 +3163,9 @@ monitoring:
3168
3163
  label: Additional Secrets
3169
3164
  existing: Choose an existing config secret
3170
3165
  info: |
3171
- <span class="text-bold">Create default config</span>:<br>A Secret containing your Alertmanager Config will be created in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace on deploying this chart under the name <pre class='inline-block m-0'>alertmanager-rancher-monitoring-alertmanager</pre>. By default, this Secret will never be modified on an uninstall or upgrade of this chart. <br /><br />
3166
+ <span class="text-bold">Create default config</span>: A Secret containing your Alertmanager Config will be created in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace on deploying this chart under the name <pre class='inline-block m-0'>alertmanager-rancher-monitoring-alertmanager</pre>. By default, this Secret will never be modified on an uninstall or upgrade of this chart. <br />
3172
3167
  Once you have deployed this chart, you should edit the Secret via the UI in order to add your custom notification configurations that will be used by Alertmanager to send alerts. <br /> <br />
3173
- <span class="text-bold">Choose an existing config secret</span>:<br>You must specify a Secret that exists in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace. If the namespace does not exist, you will not be able to select an existing secret.
3168
+ <span class="text-bold">Choose an existing config secret</span>: You must specify a Secret that exists in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace. If the namespace does not exist, you will not be able to select an existing secret.
3174
3169
  label: Alertmanager Secret
3175
3170
  new: Create default config
3176
3171
  radio:
@@ -3342,15 +3337,6 @@ monitoring:
3342
3337
  bearerTokenSecret: Bearer Token Secret
3343
3338
  basicAuthUsername: Secret with Basic Auth Username
3344
3339
  basicAuthPassword: Secret with Basic Auth Password
3345
- installSteps:
3346
- uninstallV1:
3347
- stepTitle: Uninstall V1
3348
- stepSubtext: Uninstall Previous Monitoring
3349
- warning1: V1 Monitoring is currently deployed. This needs to be uninstalled before V2 monitoring can be installed.
3350
- warning2: <a target="blank" href="{docsBase}/monitoring-alerting/guides/migrating/" target='_blank' rel='noopener nofollow'>Learn more</a> about the migration steps to V2 Monitoring.
3351
- promptDescription: <div class="mt-20 mb-20">You are attempting to uninstall V1 Monitoring. Please ensure you have read the migration steps.</div>
3352
- success1: V1 monitoring successfully uninstalled.
3353
- success2: Press Next to continue
3354
3340
  tabs:
3355
3341
  alerting: Alerting
3356
3342
  general: General
@@ -4141,9 +4127,6 @@ plugins:
4141
4127
  image:
4142
4128
  label: Catalog Image Reference
4143
4129
  placeholder: "e.g. hub.docker.io/example-org/my-image:latest"
4144
- imagePullSecrets:
4145
- label: Image Pull Secrets
4146
- tooltip: Must be of Type `kubernetes.io/dockercfg` or `kubernetes.io/dockerconfigjson`
4147
4130
  secrets:
4148
4131
  banner: "If the registry that hosts the Catalog Image requires Pull Secrets, they must be created in the following namespace:<pre>cattle-ui-plugin-system</pre>"
4149
4132
  banner: This will create an Deployment, Service, and Helm repository to serve the extension charts.
@@ -4356,6 +4339,10 @@ project:
4356
4339
  vmDefaultResourceLimit: VM Default Resource Limit
4357
4340
  resourceQuotas: Resource Quotas
4358
4341
  haveOneOwner: There must be at least one member with the Owner role.
4342
+ psp:
4343
+ default: Cluster Default
4344
+ label: Pod Security Policy
4345
+ current: "{value} (Current)"
4359
4346
 
4360
4347
 
4361
4348
  projectMembers:
@@ -4661,6 +4648,9 @@ rbac:
4661
4648
  nodetemplates-manage:
4662
4649
  label: Manage Node Templates
4663
4650
  description: Allows the user to define, edit, and remove Node Templates.
4651
+ podsecuritypolicytemplates-manage:
4652
+ label: Manage Pod Security Policies (PSPs)
4653
+ description: Allows the user to define, edit, and remove PSPs.
4664
4654
  roles-manage:
4665
4655
  label: Manage Roles
4666
4656
  description: Allows the user to define, edit, and remove Role definitions.
@@ -4761,7 +4751,7 @@ resourceTable:
4761
4751
  machinePool: "<span>Pool:</span> {name}"
4762
4752
  notInANamespace: Not Namespaced
4763
4753
  notInAProject: Not in a Project
4764
- project: "<span>Project:</span> <span>{name}</span>"
4754
+ project: "<span>Project:</span> {name}"
4765
4755
  notInAWorkspace: Not in a Workspace
4766
4756
  workspace: "<span>Workspace:</span> {name}"
4767
4757
  notInANodePool: "Not in a Pool"
@@ -4794,26 +4784,13 @@ secret:
4794
4784
  authentication: Authentication
4795
4785
  certificate:
4796
4786
  certificate: Certificate
4797
- certificates: Certificates
4798
4787
  certificatePlaceholder: "Paste in the CA certificate, starting with -----BEGIN CERTIFICATE----"
4799
4788
  cn: Domain Name
4800
4789
  expires: Expires
4801
- expiresOn: Expires On
4802
- expiresDuration: Expires In
4803
- lifetime: Lifetime
4804
4790
  issuer: Issuer
4805
- paging: |-
4806
- {pages, plural,
4807
- =0 {No {pluralLabel}}
4808
- =1 {{count} {count, plural, =1 {{singularLabel}} other {{pluralLabel}}}}
4809
- other {{from} - {to} of {count} {pluralLabel}}}
4810
4791
  plusMore: "+ {n} more"
4811
4792
  privateKey: Private Key
4812
4793
  privateKeyPlaceholder: "Paste in the private key, typically starting with -----BEGIN RSA PRIVATE KEY-----"
4813
- warnings:
4814
- expiring: "{count} {count, plural, =1 {Certificate expires soon} other {Certificates expire soon}}"
4815
- expired: "{count} {count, plural, =1 {Certificate has expired} other {Certificates have expired}}"
4816
- filtered: ". Not all may be visible given the selected project/namespace filter"
4817
4794
  data: Data
4818
4795
  registry:
4819
4796
  address: Registry
@@ -5592,6 +5569,9 @@ tableHeaders:
5592
5569
  users: Users
5593
5570
  userDisplayName: Display Name
5594
5571
  userId: ID
5572
+ userDeletedIn: Delete After
5573
+ userDisabledIn: Disable After
5574
+ userLastLogin: Last Login
5595
5575
  userStatus: Status
5596
5576
  username: Local Username
5597
5577
  value: Value
@@ -5599,9 +5579,6 @@ tableHeaders:
5599
5579
  volume: Volume
5600
5580
  volumeMode: Volume Mode
5601
5581
  weight: Weight
5602
- clusterResources: Cluster Resources
5603
- repoPerClusterState: Cluster State
5604
- repoPerClusterStateTooltip: The state of the repo on the cluster
5605
5582
  target:
5606
5583
  router:
5607
5584
  label: Router
@@ -5615,6 +5592,10 @@ target:
5615
5592
  placeholder: Select a version
5616
5593
 
5617
5594
  user:
5595
+ state:
5596
+ active: 'Enabled'
5597
+ inactive: 'Disabled'
5598
+ unknown: 'Unknown'
5618
5599
  detail:
5619
5600
  username: Username
5620
5601
  globalPermissions:
@@ -5652,6 +5633,41 @@ user:
5652
5633
  placeholder: e.g. This account is for John Smith
5653
5634
  list:
5654
5635
  errorRefreshingGroupMemberships: Error refreshing group memberships
5636
+ retention:
5637
+ button:
5638
+ label: User retention settings
5639
+ growl:
5640
+ title: Save user retention settings
5641
+ message: User retention settings have been updated successfully
5642
+ edit:
5643
+ title:
5644
+ header: "Users: Settings"
5645
+ pre: "Users:"
5646
+ post: Settings
5647
+ subTitle: User retention
5648
+ form:
5649
+ disableAfter:
5650
+ checkbox: Disable user accounts after an inactivity period (duration since last login)
5651
+ input:
5652
+ label: Inactivity period
5653
+ tooltip: Uses duration units (e.g. use 30h for 30 hours)
5654
+ deleteAfter:
5655
+ checkbox: Delete user accounts after an inactivity period (duration since last login)
5656
+ input:
5657
+ label: Inactivity period
5658
+ tooltip: Uses duration units (e.g. use 30h for 30 hours)
5659
+ subLabel: This value must be larger than the Disable period, if it's active
5660
+ cron:
5661
+ label: User retention process schedule
5662
+ subLabel: The user retention process runs as a cron job (required)
5663
+ errorMessage: User retention process schedule must be a valid cron expression
5664
+ dryRun:
5665
+ label: Run the user retention process in DRY mode (no changes will be applied)
5666
+ subLabel: You can check the logs to see which accounts would be affected
5667
+ defaultLastLogin:
5668
+ label: Default last login (ms)
5669
+ subLabel: Accounts without a registered last login timestamp will get this as a default
5670
+ placeholder: Unix timestamp
5655
5671
  validation:
5656
5672
  noUpperCase: 'Alphanumeric characters in "{key}" must be lowercase'
5657
5673
  arrayLength:
@@ -5778,10 +5794,7 @@ validation:
5778
5794
  required: 'Port Rule [{position}] - Target Port is required'
5779
5795
  setting:
5780
5796
  serverUrl:
5781
- https: Server URL must be https.
5782
- localhost: If the Server URL is internal to the Rancher server (e.g. localhost) the downstream clusters may not be able to communicate with Rancher.
5783
- trailingForwardSlash: Server URL should not have a trailing forward slash.
5784
- url: Server URL must be an URL.
5797
+ https: server-url must be https.
5785
5798
  stringLength:
5786
5799
  between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
5787
5800
  exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
@@ -5899,9 +5912,7 @@ workload:
5899
5912
  exec: Command run inside the container exits with status 0
5900
5913
  image: Container Image
5901
5914
  imagePullPolicy: Pull Policy
5902
- imagePullSecrets:
5903
- label: Pull Secrets
5904
- tooltip: Must be of Type `kubernetes.io/dockercfg` or `kubernetes.io/dockerconfigjson`
5915
+ imagePullSecrets: Pull Secrets
5905
5916
  init: Init Container
5906
5917
  lifecycleHook:
5907
5918
  postStart:
@@ -7355,6 +7366,7 @@ customLinks:
7355
7366
  issues: File an Issue
7356
7367
  getStarted: Get Started
7357
7368
  commercialSupport: Commercial Support
7369
+ suseCollective: SUSE Collective
7358
7370
 
7359
7371
 
7360
7372
 
@@ -7405,17 +7417,6 @@ embedding:
7405
7417
  retry: Retry
7406
7418
  unavailable: Cluster Manager UI is not available
7407
7419
 
7408
- v1ClusterTools:
7409
- monitoring:
7410
- label: Monitoring (Legacy)
7411
- description: 'Legacy V1 monitoring. V1 Monitoring is deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/monitoring-alerting/guides/migrating/">Learn more</a> about the migration steps to V2 Monitoring.'
7412
- logging:
7413
- label: Logging (Legacy)
7414
- description: 'Legacy V1 logging. V1 Logging is deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/logging/migrating/">Learn more</a> about migrating to V2 Logging.'
7415
- istio:
7416
- label: Istio (Legacy)
7417
- description: 'Legacy V1 Istio. Istio v1.5 has been deprecated since Rancher 2.5.0. <a target="blank" href="{docsBase}/istio/#migrate-from-previous-istio-version">Learn more</a> about migrating to the latest version.'
7418
-
7419
7420
  legacy:
7420
7421
  alerts: Alerts
7421
7422
  apps: Apps
@@ -7426,6 +7427,7 @@ legacy:
7426
7427
  globalDnsProviders: Global DNS Providers
7427
7428
  notifiers: Notifiers
7428
7429
  monitoring: Monitoring
7430
+ psps: Pod Security Policy Templates
7429
7431
  secrets: Secrets
7430
7432
 
7431
7433
  project: