@rancher/shell 0.2.5 → 0.3.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 (635) hide show
  1. package/assets/styles/global/_button.scss +5 -1
  2. package/assets/styles/global/_columns.scss +4 -0
  3. package/assets/styles/global/_layout.scss +1 -2
  4. package/assets/styles/global/_select.scss +1 -4
  5. package/assets/styles/themes/_dark.scss +8 -4
  6. package/assets/styles/themes/_light.scss +9 -3
  7. package/assets/styles/themes/_suse.scss +1 -1
  8. package/assets/styles/vendor/vue-select.scss +4 -3
  9. package/assets/translations/en-us.yaml +682 -74
  10. package/assets/translations/zh-hans.yaml +554 -170
  11. package/chart/istio.vue +1 -1
  12. package/chart/monitoring/grafana/index.vue +1 -1
  13. package/chart/monitoring/index.vue +1 -1
  14. package/chart/monitoring/prometheus/index.vue +4 -4
  15. package/chart/monitoring/steps/uninstall-v1.vue +2 -2
  16. package/cloud-credential/azure.vue +23 -0
  17. package/cloud-credential/harvester.vue +25 -62
  18. package/cloud-credential/pnap.vue +80 -0
  19. package/components/AdvancedSection.vue +9 -2
  20. package/components/Alert.vue +2 -2
  21. package/components/AlertTable.vue +1 -1
  22. package/components/AssignTo.vue +1 -1
  23. package/components/AsyncButton.vue +2 -2
  24. package/components/BrandImage.vue +1 -1
  25. package/components/ButtonDropdown.vue +0 -2
  26. package/components/ButtonGroup.vue +2 -1
  27. package/components/ClusterProviderIcon.vue +2 -2
  28. package/components/Collapse.vue +6 -2
  29. package/components/CollapsibleCard.vue +2 -3
  30. package/components/ConsumptionGauge.vue +4 -4
  31. package/components/ContainerResourceLimit.vue +1 -1
  32. package/components/CountBox.vue +1 -1
  33. package/components/CountGauge.vue +1 -1
  34. package/components/CruResource.vue +43 -5
  35. package/components/DashboardMetrics.vue +2 -2
  36. package/components/DetailTop.vue +58 -3
  37. package/components/DisableAuthProviderModal.vue +106 -0
  38. package/components/DraggableZone.vue +181 -0
  39. package/components/ExplorerMembers.vue +253 -30
  40. package/components/ExplorerProjectsNamespaces.vue +82 -38
  41. package/components/FixedBanner.vue +6 -6
  42. package/components/GlobalRoleBindings.vue +6 -6
  43. package/components/GradientBox.vue +2 -2
  44. package/components/GrowlManager.vue +3 -3
  45. package/components/IconMessage.vue +4 -4
  46. package/components/IconOrSvg.vue +149 -0
  47. package/components/Import.vue +5 -5
  48. package/components/InputOrDisplay.vue +1 -1
  49. package/components/KeyValueView.vue +1 -1
  50. package/components/LabelValue.vue +1 -1
  51. package/components/LogItem.vue +69 -0
  52. package/components/ModalWithCard.vue +1 -1
  53. package/components/MoveModal.vue +1 -1
  54. package/components/PercentageBar.vue +2 -2
  55. package/components/PodSecurityAdmission.vue +302 -0
  56. package/components/PromptChangePassword.vue +1 -1
  57. package/components/PromptModal.vue +2 -1
  58. package/components/PromptRemove.vue +2 -2
  59. package/components/PromptRestore.vue +13 -13
  60. package/components/Questions/Question.js +1 -1
  61. package/components/ResourceCancelModal.vue +3 -3
  62. package/components/ResourceDetail/Masthead.vue +55 -3
  63. package/components/ResourceDetail/index.vue +12 -5
  64. package/components/ResourceList/Masthead.vue +12 -2
  65. package/components/ResourceList/ResourceLoadingIndicator.vue +12 -2
  66. package/components/ResourceList/index.vue +53 -12
  67. package/components/ResourceList/resource-list.config.js +7 -0
  68. package/components/ResourceSummary.vue +4 -4
  69. package/components/ResourceTable.vue +31 -6
  70. package/components/RoleBindings.vue +19 -19
  71. package/components/SimpleBox.vue +6 -2
  72. package/components/SingleClusterInfo.vue +5 -5
  73. package/components/SortableTable/THead.vue +20 -6
  74. package/components/SortableTable/actions.js +4 -2
  75. package/components/SortableTable/index.vue +30 -19
  76. package/components/SortableTable/selection.js +2 -2
  77. package/components/Tabbed/index.vue +20 -15
  78. package/components/TableSparkLine.vue +1 -1
  79. package/components/TypeDescription.vue +1 -1
  80. package/components/Wizard.vue +1 -1
  81. package/components/YamlEditor.vue +6 -6
  82. package/components/__tests__/ApplicationCard.test.ts +27 -0
  83. package/components/__tests__/AsyncButton.test.ts +140 -0
  84. package/components/__tests__/BackLink.test.ts +33 -0
  85. package/components/__tests__/ButtonGroup.test.ts +124 -0
  86. package/components/__tests__/ClusterBadge.test.ts +32 -0
  87. package/components/__tests__/Collapse.spec.ts +44 -0
  88. package/components/__tests__/CollapsibleCard.test.ts +64 -0
  89. package/components/__tests__/ConsumptionGauge.test.ts +88 -0
  90. package/components/__tests__/CruResource.test.ts +6 -5
  91. package/components/__tests__/FixedBanner.test.ts +129 -0
  92. package/components/__tests__/GrowlManager.test.ts +147 -0
  93. package/components/__tests__/NamespaceFilter.test.ts +221 -0
  94. package/components/__tests__/PercentageBar.test.ts +32 -0
  95. package/components/__tests__/PodSecurityAdmission.test.ts +398 -0
  96. package/components/__tests__/SimpleBox.spec.ts +28 -0
  97. package/components/auth/AuthBanner.vue +20 -10
  98. package/components/auth/RoleDetailEdit.vue +41 -30
  99. package/components/auth/SelectPrincipal.vue +45 -5
  100. package/components/auth/login/ldap.vue +3 -0
  101. package/components/cards/ApplicationCard.vue +10 -5
  102. package/components/fleet/FleetBundleResources.vue +8 -8
  103. package/components/fleet/FleetClusters.vue +10 -10
  104. package/components/fleet/FleetRepos.vue +5 -5
  105. package/components/fleet/FleetResources.vue +6 -6
  106. package/components/fleet/FleetSummary.vue +5 -5
  107. package/components/fleet/ResourcesSummary.vue +1 -1
  108. package/components/form/ArrayList.vue +3 -35
  109. package/components/form/ArrayListGrouped.vue +14 -5
  110. package/components/form/ArrayListSelect.vue +8 -8
  111. package/components/form/BannerSettings.vue +6 -6
  112. package/components/form/ChangePassword.vue +3 -3
  113. package/components/form/Error.vue +10 -2
  114. package/components/form/FileSelector.vue +3 -3
  115. package/components/form/Footer.vue +1 -1
  116. package/components/form/GithubPicker.vue +4 -4
  117. package/components/form/KeyValue.vue +41 -9
  118. package/components/form/LabeledSelect.vue +5 -2
  119. package/components/form/Labels.vue +46 -16
  120. package/components/form/MatchExpressions.vue +1 -1
  121. package/components/form/Members/ClusterPermissionsEditor.vue +28 -28
  122. package/components/form/Members/MembershipEditor.vue +14 -14
  123. package/components/form/NameNsDescription.vue +1 -1
  124. package/components/form/NodeAffinity.vue +1 -1
  125. package/components/form/NodeScheduling.vue +1 -1
  126. package/components/form/Password.vue +3 -3
  127. package/components/form/PodAffinity.vue +1 -1
  128. package/components/form/Probe.vue +3 -3
  129. package/components/form/ProjectMemberEditor.vue +1 -1
  130. package/components/form/ResourceQuota/Project.vue +6 -6
  131. package/components/form/ResourceQuota/shared.js +12 -12
  132. package/components/form/ResourceTabs/index.vue +1 -6
  133. package/components/form/SecretSelector.vue +1 -1
  134. package/components/form/Security.vue +8 -7
  135. package/components/form/Select.vue +7 -2
  136. package/components/form/SelectOrCreateAuthSecret.vue +22 -29
  137. package/components/form/ServicePorts.vue +8 -0
  138. package/components/form/SimpleSecretSelector.vue +1 -1
  139. package/components/form/Taints.vue +1 -1
  140. package/components/form/UnitInput.vue +7 -7
  141. package/components/form/ValueFromResource.vue +1 -1
  142. package/components/form/WorkloadPorts.vue +8 -2
  143. package/components/form/__tests__/ArrayList.test.ts +74 -0
  144. package/components/form/__tests__/ArrayListGrouped.test.ts +6 -4
  145. package/components/formatter/AppSummaryGraph.vue +4 -4
  146. package/components/formatter/BadgeStateFormatter.vue +2 -2
  147. package/components/formatter/Checked.vue +2 -2
  148. package/components/formatter/ClusterLink.vue +8 -3
  149. package/components/formatter/Date.vue +1 -1
  150. package/components/formatter/DelayedValue.vue +1 -1
  151. package/components/formatter/Endpoints.vue +1 -1
  152. package/components/formatter/FleetSummaryGraph.vue +4 -4
  153. package/components/formatter/IconIsDefault.vue +3 -3
  154. package/components/formatter/IconText.vue +4 -4
  155. package/components/formatter/ImagePercentageBar.vue +4 -4
  156. package/components/formatter/IngressFullPath.vue +1 -1
  157. package/components/formatter/InternalExternalIP.vue +11 -8
  158. package/components/formatter/LinkDetail.vue +3 -3
  159. package/components/formatter/List.vue +1 -1
  160. package/components/formatter/ListLink.vue +1 -1
  161. package/components/formatter/ListLinkDetail.vue +1 -1
  162. package/components/formatter/LiveDate.vue +3 -3
  163. package/components/formatter/LiveDuration.vue +78 -0
  164. package/components/formatter/LivePodRestarts.vue +1 -1
  165. package/components/formatter/Number.vue +1 -1
  166. package/components/formatter/Percentage.vue +2 -2
  167. package/components/formatter/PercentageBar.vue +3 -3
  168. package/components/formatter/PodImages.vue +1 -1
  169. package/components/formatter/Principal.vue +1 -1
  170. package/components/formatter/PrincipalGroupBindings.vue +2 -2
  171. package/components/formatter/QualityText.vue +1 -1
  172. package/components/formatter/ReceiverIcons.vue +2 -2
  173. package/components/formatter/Scale.vue +1 -1
  174. package/components/formatter/ScanResult.vue +1 -1
  175. package/components/formatter/SecretData.vue +1 -1
  176. package/components/formatter/ServiceType.vue +1 -1
  177. package/components/formatter/Shortened.vue +1 -1
  178. package/components/formatter/VerticalScroll.vue +2 -2
  179. package/components/formatter/VirtualServiceGateways.vue +3 -3
  180. package/components/formatter/Weight.vue +2 -2
  181. package/components/formatter/WorkloadDetailEndpoints.vue +1 -1
  182. package/components/formatter/WorkloadHealthScale.vue +7 -5
  183. package/components/formatter/__tests__/Date.test.ts +60 -0
  184. package/components/formatter/__tests__/LinkDetail.test.ts +72 -0
  185. package/components/formatter/__tests__/LiveDate.test.ts +84 -0
  186. package/components/formatter/__tests__/Si.test.ts +35 -0
  187. package/components/graph/LinePlot.vue +1 -1
  188. package/components/graph/ProgressArc.vue +5 -5
  189. package/components/nav/GlobalLoading.vue +1 -1
  190. package/components/nav/Header.vue +6 -4
  191. package/components/nav/Jump.vue +3 -3
  192. package/components/nav/NamespaceFilter.vue +200 -68
  193. package/components/nav/TopLevelMenu.vue +24 -21
  194. package/components/nav/Type.vue +1 -1
  195. package/components/nav/WindowManager/ChartReadme.vue +1 -1
  196. package/components/nav/WindowManager/ContainerLogs.vue +84 -127
  197. package/components/nav/WindowManager/ContainerShell.vue +28 -7
  198. package/components/nav/WindowManager/KubectlShell.vue +6 -6
  199. package/components/nav/WindowManager/MachineSsh.vue +1 -1
  200. package/components/nav/WindowManager/Window.vue +2 -0
  201. package/components/nav/WindowManager/index.vue +206 -25
  202. package/config/elemental-types.js +9 -0
  203. package/config/features.js +2 -0
  204. package/config/home-links.js +4 -1
  205. package/config/labels-annotations.js +19 -19
  206. package/config/pod-security-admission.ts +82 -0
  207. package/config/product/apps.js +5 -5
  208. package/config/product/auth.js +22 -21
  209. package/config/product/cis.js +24 -24
  210. package/config/product/explorer.js +25 -24
  211. package/config/product/fleet.js +7 -7
  212. package/config/product/gatekeeper.js +7 -7
  213. package/config/product/istio.js +7 -7
  214. package/config/product/legacy.js +21 -21
  215. package/config/product/logging.js +90 -90
  216. package/config/product/manager.js +19 -15
  217. package/config/product/monitoring.js +36 -36
  218. package/config/product/multi-cluster-apps.js +24 -24
  219. package/config/product/settings.js +42 -42
  220. package/config/secret.js +0 -1
  221. package/config/settings.ts +39 -22
  222. package/config/table-headers.js +70 -52
  223. package/config/types.js +11 -8
  224. package/config/uiplugins.js +4 -4
  225. package/content/docs/zh-hans/getting-started.md +113 -137
  226. package/content/docs/zh-hans/whats-new.md +8 -46
  227. package/creators/app/app.package.json +4 -1
  228. package/creators/app/{.eslintignore → files/.eslintignore} +0 -0
  229. package/creators/app/{.eslintrc.js → files/.eslintrc.js} +0 -0
  230. package/creators/app/{.vscode → files/.vscode}/settings.json +0 -0
  231. package/creators/app/{babel.config.js → files/babel.config.js} +0 -0
  232. package/creators/app/{nuxt.config.js → files/nuxt.config.js} +0 -0
  233. package/creators/app/{tsconfig.json → files/tsconfig.json} +2 -1
  234. package/creators/app/init +16 -17
  235. package/creators/app/package.json +7 -1
  236. package/creators/pkg/{babel.config.js → files/babel.config.js} +0 -0
  237. package/creators/pkg/{index.ts → files/index.ts} +0 -0
  238. package/creators/pkg/{tsconfig.json → files/tsconfig.json} +13 -12
  239. package/creators/pkg/{vue.config.js → files/vue.config.js} +0 -0
  240. package/creators/pkg/init +1 -1
  241. package/creators/pkg/package.json +2 -2
  242. package/creators/update/init +56 -0
  243. package/creators/update/package.json +20 -0
  244. package/creators/update/upgrade +56 -0
  245. package/detail/catalog.cattle.io.app.vue +1 -1
  246. package/detail/cis.cattle.io.clusterscan.vue +6 -6
  247. package/detail/configmap.vue +1 -1
  248. package/detail/constraints.gatekeeper.sh.constraint.vue +1 -1
  249. package/detail/fleet.cattle.io.bundle.vue +5 -5
  250. package/detail/fleet.cattle.io.gitrepo.vue +5 -5
  251. package/detail/helm.cattle.io.projecthelmchart.vue +1 -1
  252. package/detail/management.cattle.io.user.vue +3 -3
  253. package/detail/namespace.vue +13 -13
  254. package/detail/node.vue +2 -2
  255. package/detail/pod.vue +2 -2
  256. package/detail/provisioning.cattle.io.cluster.vue +47 -10
  257. package/detail/secret.vue +2 -2
  258. package/detail/service.vue +2 -9
  259. package/detail/workload/index.vue +1 -2
  260. package/dialog/AddClusterMemberDialog.vue +23 -29
  261. package/dialog/AddCustomBadgeDialog.vue +4 -4
  262. package/dialog/AddProjectMemberDialog.vue +81 -30
  263. package/dialog/AddonConfigConfirmationDialog.vue +1 -1
  264. package/dialog/DiagnosticTimingsDialog.vue +9 -8
  265. package/dialog/DrainNode.vue +56 -60
  266. package/dialog/ForceMachineRemoveDialog.vue +6 -8
  267. package/dialog/GenericPrompt.vue +16 -21
  268. package/dialog/RollbackWorkloadDialog.vue +22 -53
  269. package/dialog/RotateCertificatesDialog.vue +9 -11
  270. package/dialog/RotateEncryptionKeyDialog.vue +6 -10
  271. package/dialog/SaveAsRKETemplateDialog.vue +6 -14
  272. package/dialog/ScaleMachineDownDialog.vue +2 -2
  273. package/dialog/ScalePoolDownDialog.vue +121 -0
  274. package/edit/__tests__/management.cattle.io.setting.test.ts +4 -4
  275. package/edit/auth/azuread.vue +18 -18
  276. package/edit/auth/github.vue +10 -2
  277. package/edit/auth/googleoauth.vue +10 -1
  278. package/edit/auth/ldap/index.vue +14 -4
  279. package/edit/auth/oidc.vue +13 -3
  280. package/edit/auth/saml.vue +14 -4
  281. package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +2 -2
  282. package/edit/autoscaling.horizontalpodautoscaler/index.vue +1 -1
  283. package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +1 -1
  284. package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
  285. package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +2 -2
  286. package/edit/cis.cattle.io.clusterscan.vue +2 -2
  287. package/edit/cloudcredential.vue +3 -7
  288. package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -1
  289. package/edit/fleet.cattle.io.clustergroup.vue +3 -3
  290. package/edit/fleet.cattle.io.gitrepo.vue +9 -9
  291. package/edit/group.principal.vue +2 -2
  292. package/edit/helm.cattle.io.projecthelmchart.vue +3 -3
  293. package/edit/logging-flow/Match.vue +39 -8
  294. package/edit/logging-flow/index.vue +28 -5
  295. package/edit/logging.banzaicloud.io.output/providers/datadog.vue +1 -1
  296. package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +1 -1
  297. package/edit/logging.banzaicloud.io.output/providers/gcs.vue +1 -1
  298. package/edit/logging.banzaicloud.io.output/providers/gelf.vue +1 -1
  299. package/edit/logging.banzaicloud.io.output/providers/kafka.vue +1 -1
  300. package/edit/logging.banzaicloud.io.output/providers/logz.vue +1 -1
  301. package/edit/logging.banzaicloud.io.output/providers/loki.vue +1 -1
  302. package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +213 -0
  303. package/edit/logging.banzaicloud.io.output/providers/redis.vue +142 -0
  304. package/edit/logging.banzaicloud.io.output/providers/s3.vue +1 -1
  305. package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +1 -1
  306. package/edit/logging.banzaicloud.io.output/providers/syslog.vue +1 -1
  307. package/edit/management.cattle.io.fleetworkspace.vue +1 -1
  308. package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +107 -0
  309. package/edit/management.cattle.io.project.vue +11 -4
  310. package/edit/management.cattle.io.projectroletemplatebinding.vue +5 -5
  311. package/edit/management.cattle.io.setting.vue +6 -3
  312. package/edit/management.cattle.io.user.vue +11 -5
  313. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +33 -17
  314. package/edit/monitoring.coreos.com.alertmanagerconfig/tls.vue +1 -1
  315. package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
  316. package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +5 -5
  317. package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +3 -3
  318. package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +3 -3
  319. package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +4 -4
  320. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +14 -6
  321. package/edit/monitoring.coreos.com.receiver/auth.vue +2 -2
  322. package/edit/monitoring.coreos.com.receiver/index.vue +1 -1
  323. package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
  324. package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +1 -1
  325. package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +1 -1
  326. package/edit/monitoring.coreos.com.receiver/types/webhook.vue +1 -1
  327. package/edit/monitoring.coreos.com.route.vue +1 -1
  328. package/edit/namespace.vue +18 -4
  329. package/edit/networking.istio.io.destinationrule/LoadBalancer.vue +1 -1
  330. package/edit/networking.k8s.io.ingress/Certificate.vue +1 -0
  331. package/edit/networking.k8s.io.ingress/Certificates.vue +3 -3
  332. package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
  333. package/edit/networking.k8s.io.ingress/IngressClass.vue +9 -7
  334. package/edit/networking.k8s.io.ingress/Rule.vue +1 -1
  335. package/edit/networking.k8s.io.ingress/RulePath.vue +17 -11
  336. package/edit/networking.k8s.io.ingress/Rules.vue +7 -7
  337. package/edit/networking.k8s.io.ingress/index.vue +8 -6
  338. package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +1 -1
  339. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +3 -3
  340. package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +1 -1
  341. package/edit/networking.k8s.io.networkpolicy/index.vue +5 -5
  342. package/edit/persistentvolume/index.vue +30 -27
  343. package/edit/persistentvolume/plugins/awsElasticBlockStore.vue +1 -1
  344. package/edit/persistentvolume/plugins/azureDisk.vue +1 -1
  345. package/edit/persistentvolume/plugins/azureFile.vue +1 -1
  346. package/edit/persistentvolume/plugins/cephfs.vue +31 -31
  347. package/edit/persistentvolume/plugins/cinder.vue +1 -1
  348. package/edit/persistentvolume/plugins/csi.vue +104 -64
  349. package/edit/persistentvolume/plugins/fc.vue +21 -21
  350. package/edit/persistentvolume/plugins/flexVolume.vue +2 -2
  351. package/edit/persistentvolume/plugins/flocker.vue +1 -1
  352. package/edit/persistentvolume/plugins/gcePersistentDisk.vue +1 -1
  353. package/edit/persistentvolume/plugins/glusterfs.vue +1 -1
  354. package/edit/persistentvolume/plugins/hostPath.vue +1 -1
  355. package/edit/persistentvolume/plugins/iscsi.vue +47 -47
  356. package/edit/persistentvolume/plugins/local.vue +1 -1
  357. package/edit/persistentvolume/plugins/longhorn.vue +2 -2
  358. package/edit/persistentvolume/plugins/nfs.vue +1 -1
  359. package/edit/persistentvolume/plugins/photonPersistentDisk.vue +1 -1
  360. package/edit/persistentvolume/plugins/portworxVolume.vue +1 -1
  361. package/edit/persistentvolume/plugins/quobyte.vue +1 -1
  362. package/edit/persistentvolume/plugins/rbd.vue +41 -41
  363. package/edit/persistentvolume/plugins/scaleIO.vue +1 -1
  364. package/edit/persistentvolume/plugins/storageos.vue +1 -1
  365. package/edit/persistentvolume/plugins/vsphereVolume.vue +1 -1
  366. package/edit/persistentvolumeclaim.vue +78 -75
  367. package/edit/provisioning.cattle.io.cluster/DrainOptions.vue +1 -1
  368. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +12 -8
  369. package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +10 -1
  370. package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +87 -27
  371. package/edit/provisioning.cattle.io.cluster/S3Config.vue +1 -1
  372. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -6
  373. package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.tests.ts +1 -1
  374. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +93 -0
  375. package/edit/provisioning.cattle.io.cluster/import.vue +3 -3
  376. package/edit/provisioning.cattle.io.cluster/index.vue +31 -8
  377. package/edit/provisioning.cattle.io.cluster/rke2.vue +458 -164
  378. package/edit/resources.cattle.io.backup.vue +2 -2
  379. package/edit/secret/generic.vue +1 -0
  380. package/edit/secret/index.vue +3 -7
  381. package/edit/service.vue +3 -1
  382. package/edit/storage.k8s.io.storageclass/index.vue +101 -17
  383. package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +114 -0
  384. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/no-provisioner.vue +1 -1
  385. package/edit/token.vue +1 -1
  386. package/edit/ui.cattle.io.navlink.vue +8 -8
  387. package/edit/workload/Job.vue +3 -3
  388. package/edit/workload/Upgrading.vue +1 -1
  389. package/edit/workload/VolumeClaimTemplate.vue +1 -1
  390. package/edit/workload/__tests__/index.test.ts +98 -0
  391. package/edit/workload/index.vue +61 -11
  392. package/edit/workload/mixins/workload.js +128 -91
  393. package/edit/workload/storage/ContainerMountPaths.vue +1 -11
  394. package/edit/workload/storage/Mount.vue +1 -1
  395. package/edit/workload/storage/azureDisk.vue +1 -1
  396. package/edit/workload/storage/azureFile.vue +1 -1
  397. package/edit/workload/storage/csi/index.vue +1 -1
  398. package/edit/workload/storage/emptyDir.vue +88 -0
  399. package/edit/workload/storage/ephemeralVolume/index.vue +2 -2
  400. package/edit/workload/storage/gcePersistentDisk.vue +1 -1
  401. package/edit/workload/storage/hostPath.vue +1 -1
  402. package/edit/workload/storage/index.vue +8 -0
  403. package/edit/workload/storage/nfs.vue +1 -1
  404. package/edit/workload/storage/persistentVolumeClaim/index.vue +2 -2
  405. package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -1
  406. package/edit/workload/storage/secret.vue +1 -1
  407. package/edit/workload/storage/vsphereVolume.vue +1 -1
  408. package/layouts/default.vue +132 -58
  409. package/list/__tests__/workload.test.ts +53 -0
  410. package/list/catalog.cattle.io.app.vue +1 -0
  411. package/list/cis.cattle.io.clusterscan.vue +1 -0
  412. package/list/fleet.cattle.io.bundle.vue +5 -6
  413. package/list/fleet.cattle.io.cluster.vue +6 -3
  414. package/list/fleet.cattle.io.clusterregistrationtoken.vue +5 -6
  415. package/list/fleet.cattle.io.gitrepo.vue +5 -10
  416. package/list/group.principal.vue +8 -8
  417. package/list/helm.cattle.io.projecthelmchart.vue +2 -6
  418. package/list/logging.banzaicloud.io.clusterflow.vue +4 -1
  419. package/list/logging.banzaicloud.io.flow.vue +6 -5
  420. package/list/management.cattle.io.cluster.vue +1 -0
  421. package/list/management.cattle.io.feature.vue +4 -5
  422. package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +47 -0
  423. package/list/management.cattle.io.setting.vue +2 -2
  424. package/list/management.cattle.io.user.vue +4 -10
  425. package/list/monitoring.coreos.com.alertmanagerconfig.vue +2 -7
  426. package/list/node.vue +9 -6
  427. package/list/persistentvolume.vue +3 -3
  428. package/list/persistentvolumeclaim.vue +3 -4
  429. package/list/provisioning.cattle.io.cluster.vue +21 -22
  430. package/list/service.vue +6 -14
  431. package/list/workload.vue +43 -38
  432. package/machine-config/amazonec2.vue +1 -1
  433. package/machine-config/azure.vue +429 -60
  434. package/machine-config/pnap.vue +288 -0
  435. package/mixins/__tests__/create-edit-view.test.ts +1 -1
  436. package/mixins/auth-config.js +1 -3
  437. package/mixins/browser-tab-visibility.js +8 -14
  438. package/mixins/chart.js +15 -15
  439. package/mixins/create-edit-view/impl.js +4 -0
  440. package/mixins/create-edit-view/index.js +9 -7
  441. package/mixins/form-validation.js +1 -1
  442. package/mixins/labeled-form-element.ts +6 -6
  443. package/mixins/resource-fetch-namespaced.js +98 -0
  444. package/mixins/resource-fetch.js +82 -48
  445. package/mixins/resource-manager.js +2 -24
  446. package/models/apps.controllerrevision.js +7 -0
  447. package/models/apps.daemonset.js +18 -0
  448. package/models/apps.deployment.js +44 -0
  449. package/models/apps.replicaset.js +7 -0
  450. package/models/apps.statefulset.js +18 -0
  451. package/models/autoscaling.horizontalpodautoscaler.js +5 -5
  452. package/models/batch.cronjob.js +15 -15
  453. package/models/batch.job.js +15 -0
  454. package/models/catalog.cattle.io.app.js +6 -6
  455. package/models/catalog.cattle.io.clusterrepo.js +7 -7
  456. package/models/catalog.cattle.io.operation.js +5 -5
  457. package/models/chart.js +4 -4
  458. package/models/cis.cattle.io.clusterscan.js +10 -10
  459. package/models/cluster/node.js +46 -38
  460. package/models/cluster.x-k8s.io.machine.js +39 -17
  461. package/models/cluster.x-k8s.io.machinedeployment.js +12 -2
  462. package/models/constraints.gatekeeper.sh.constraint.js +1 -1
  463. package/models/etcdbackup.js +4 -4
  464. package/models/event.js +7 -0
  465. package/models/fleet.cattle.io.cluster.js +15 -15
  466. package/models/fleet.cattle.io.clustergroup.js +1 -1
  467. package/models/fleet.cattle.io.gitrepo.js +15 -15
  468. package/models/group.principal.js +1 -1
  469. package/models/logging.banzaicloud.io.clusterflow.js +2 -2
  470. package/models/logging.banzaicloud.io.flow.js +6 -2
  471. package/models/logging.banzaicloud.io.output.js +15 -3
  472. package/models/management.cattle.io.authconfig.js +4 -4
  473. package/models/management.cattle.io.cluster.js +10 -10
  474. package/models/management.cattle.io.clusterroletemplatebinding.js +9 -9
  475. package/models/management.cattle.io.globalrole.js +26 -5
  476. package/models/management.cattle.io.node.js +46 -11
  477. package/models/management.cattle.io.nodepool.js +3 -3
  478. package/models/management.cattle.io.nodetemplate.js +21 -21
  479. package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +4 -0
  480. package/models/management.cattle.io.project.js +32 -13
  481. package/models/management.cattle.io.projectroletemplatebinding.js +6 -6
  482. package/models/management.cattle.io.roletemplate.js +54 -31
  483. package/models/management.cattle.io.setting.js +1 -1
  484. package/models/management.cattle.io.user.js +41 -5
  485. package/models/monitoring.coreos.com.alertmanagerconfig.js +4 -4
  486. package/models/monitoring.coreos.com.receiver.js +7 -7
  487. package/models/monitoring.coreos.com.route.js +2 -2
  488. package/models/namespace.js +55 -5
  489. package/models/persistentvolume.js +14 -2
  490. package/models/persistentvolumeclaim.js +4 -4
  491. package/models/pod.js +25 -10
  492. package/models/projectroletemplatebinding.js +7 -0
  493. package/models/provisioning.cattle.io.cluster.js +89 -38
  494. package/models/rbac.authorization.k8s.io.role.js +4 -4
  495. package/models/rke-machine.cattle.io.pnapmachinetemplate.js +15 -0
  496. package/models/rke.cattle.io.etcdsnapshot.js +4 -4
  497. package/models/service.js +29 -28
  498. package/models/storage.k8s.io.storageclass.js +41 -26
  499. package/models/workload.js +66 -35
  500. package/nuxt.config.js +59 -34
  501. package/package.json +7 -7
  502. package/pages/about.vue +15 -3
  503. package/pages/account/index.vue +1 -1
  504. package/pages/auth/login.vue +37 -7
  505. package/pages/auth/setup.vue +11 -11
  506. package/pages/c/_cluster/_product/_resource/_id.vue +2 -2
  507. package/pages/c/_cluster/apps/charts/chart.vue +4 -4
  508. package/pages/c/_cluster/apps/charts/index.vue +21 -20
  509. package/pages/c/_cluster/apps/charts/install.vue +73 -36
  510. package/pages/c/_cluster/auth/config/_id.vue +8 -2
  511. package/pages/c/_cluster/auth/config/index.vue +8 -6
  512. package/pages/c/_cluster/auth/group.principal/assign-edit.vue +1 -1
  513. package/pages/c/_cluster/auth/roles/_resource/_id.vue +2 -2
  514. package/pages/c/_cluster/auth/roles/index.vue +5 -7
  515. package/pages/c/_cluster/explorer/EventsTable.vue +8 -8
  516. package/pages/c/_cluster/explorer/index.vue +26 -20
  517. package/pages/c/_cluster/explorer/tools/index.vue +4 -4
  518. package/pages/c/_cluster/fleet/GitRepoGraphConfig.js +2 -2
  519. package/pages/c/_cluster/fleet/index.vue +10 -10
  520. package/pages/c/_cluster/gatekeeper/index.vue +1 -1
  521. package/pages/c/_cluster/legacy/index.vue +1 -1
  522. package/pages/c/_cluster/longhorn/index.vue +2 -2
  523. package/pages/c/_cluster/mcapps/index.vue +1 -1
  524. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +15 -4
  525. package/pages/c/_cluster/monitoring/index.vue +1 -1
  526. package/pages/c/_cluster/navlinks/_group.vue +1 -1
  527. package/pages/c/_cluster/neuvector/index.vue +2 -2
  528. package/pages/c/_cluster/settings/banners.vue +30 -30
  529. package/pages/c/_cluster/settings/brand.vue +9 -9
  530. package/pages/c/_cluster/settings/links.vue +6 -6
  531. package/pages/c/_cluster/settings/performance.vue +48 -2
  532. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +1 -1
  533. package/pages/c/_cluster/uiplugins/InstallDialog.vue +1 -1
  534. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +59 -9
  535. package/pages/c/_cluster/uiplugins/index.vue +30 -4
  536. package/pages/diagnostic.vue +5 -4
  537. package/pages/home.vue +105 -30
  538. package/pages/prefs.vue +23 -12
  539. package/pages/rio/mesh.vue +5 -5
  540. package/pages/support/index.vue +7 -7
  541. package/pkg/dynamic-importer.lib.js +8 -0
  542. package/pkg/vue.config.js +14 -1
  543. package/plugins/dashboard-store/__tests__/mutations.spec.js +406 -0
  544. package/plugins/dashboard-store/actions.js +32 -25
  545. package/plugins/dashboard-store/getters.js +50 -33
  546. package/plugins/dashboard-store/mutations.js +134 -28
  547. package/plugins/dashboard-store/normalize.js +1 -1
  548. package/plugins/dashboard-store/resource-class.js +121 -141
  549. package/plugins/steve/actions.js +30 -0
  550. package/plugins/steve/caches/resourceCache.js +60 -0
  551. package/plugins/steve/getters.js +44 -1
  552. package/plugins/steve/mutations.js +97 -36
  553. package/plugins/steve/resourceWatcher.js +277 -0
  554. package/plugins/steve/schema.utils.js +25 -0
  555. package/plugins/steve/subscribe.js +292 -119
  556. package/plugins/steve/worker/index.js +17 -0
  557. package/plugins/steve/worker/web-worker.advanced.js +302 -0
  558. package/plugins/steve/{web-worker.steve-sub-worker.js → worker/web-worker.basic.js} +6 -47
  559. package/promptRemove/management.cattle.io.project.vue +1 -1
  560. package/promptRemove/mixin/roleDeletionCheck.js +7 -7
  561. package/promptRemove/pod.vue +2 -2
  562. package/rancher-components/components/BadgeState/BadgeState.spec.ts +12 -0
  563. package/rancher-components/components/BadgeState/BadgeState.vue +111 -0
  564. package/rancher-components/components/BadgeState/index.ts +1 -0
  565. package/rancher-components/components/Banner/Banner.test.ts +57 -0
  566. package/rancher-components/components/Banner/Banner.vue +242 -0
  567. package/rancher-components/components/Banner/index.ts +1 -0
  568. package/rancher-components/components/Card/Card.test.ts +37 -0
  569. package/rancher-components/components/Card/Card.vue +166 -0
  570. package/rancher-components/components/Card/index.ts +1 -0
  571. package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +68 -0
  572. package/rancher-components/components/Form/Checkbox/Checkbox.vue +418 -0
  573. package/rancher-components/components/Form/Checkbox/index.ts +1 -0
  574. package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +23 -0
  575. package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +355 -0
  576. package/rancher-components/components/Form/LabeledInput/index.ts +1 -0
  577. package/rancher-components/components/Form/Radio/RadioButton.vue +276 -0
  578. package/rancher-components/components/Form/Radio/RadioGroup.vue +253 -0
  579. package/rancher-components/components/Form/Radio/index.ts +2 -0
  580. package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +169 -0
  581. package/rancher-components/components/Form/TextArea/index.ts +1 -0
  582. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +94 -0
  583. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +149 -0
  584. package/rancher-components/components/Form/ToggleSwitch/index.ts +1 -0
  585. package/rancher-components/components/Form/index.ts +5 -0
  586. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +151 -0
  587. package/rancher-components/components/LabeledTooltip/index.ts +1 -0
  588. package/rancher-components/components/StringList/StringList.test.ts +483 -0
  589. package/rancher-components/components/StringList/StringList.vue +611 -0
  590. package/rancher-components/components/StringList/index.ts +1 -0
  591. package/scripts/publish-shell.sh +38 -5
  592. package/scripts/record-deps.js +37 -0
  593. package/scripts/test-plugins-build.sh +19 -7
  594. package/scripts/typegen.sh +84 -0
  595. package/static/loading-indicator.html +1 -1
  596. package/store/action-menu.js +3 -3
  597. package/store/auth.js +4 -4
  598. package/store/aws.js +4 -4
  599. package/store/catalog.js +22 -22
  600. package/store/index.js +58 -7
  601. package/store/plugins.js +2 -19
  602. package/store/pnap.js +128 -0
  603. package/store/prefs.js +13 -3
  604. package/store/type-map.js +101 -44
  605. package/store/uiplugins.ts +2 -2
  606. package/store/wm.js +10 -0
  607. package/types/pod-security-admission.ts +36 -0
  608. package/types/shell/index.d.ts +3159 -0
  609. package/types/vue-shim.d +20 -0
  610. package/utils/__tests__/object.test.ts +17 -1
  611. package/utils/__tests__/pod-security-admission.test.ts +61 -0
  612. package/utils/alertmanagerconfig.js +6 -6
  613. package/utils/async.ts +36 -0
  614. package/utils/color.js +45 -0
  615. package/utils/crypto/browserHashUtils.js +18 -0
  616. package/utils/dynamic-importer.js +8 -0
  617. package/utils/gc/gc-types.ts +1 -1
  618. package/utils/install-redirect.js +1 -1
  619. package/utils/object.js +26 -2
  620. package/utils/parse-externalid.js +5 -5
  621. package/utils/pod-security-admission.ts +39 -0
  622. package/utils/socket.js +61 -24
  623. package/utils/string.js +2 -0
  624. package/utils/svg-filter.js +301 -0
  625. package/utils/time.js +55 -0
  626. package/utils/validators/cidr.js +4 -0
  627. package/utils/validators/formRules/__tests__/index.test.ts +26 -6
  628. package/utils/validators/formRules/index.ts +14 -0
  629. package/config/product/harvester-manager.js +0 -162
  630. package/creators/pkg/nuxt.config.js +0 -6
  631. package/edit/harvesterhci.io.management.cluster.vue +0 -153
  632. package/list/harvesterhci.io.management.cluster.vue +0 -241
  633. package/machine-config/harvester.vue +0 -693
  634. package/models/harvesterhci.io.management.cluster.js +0 -228
  635. package/pages/c/_cluster/harvesterManager/index.vue +0 -24
@@ -7,6 +7,7 @@ generic:
7
7
  and: ' and '
8
8
  back: Back
9
9
  cancel: Cancel
10
+ confirm: Confirm
10
11
  clear: Clear
11
12
  clearAll: Clear All
12
13
  close: Close
@@ -16,6 +17,7 @@ generic:
16
17
  create: Create
17
18
  created: Created
18
19
  customize: Customize
20
+ dashboard: Dashboard
19
21
  default: Default
20
22
  disabled: Disabled
21
23
  done: Done
@@ -27,7 +29,9 @@ generic:
27
29
  always: Always
28
30
  ifNotPresent: IfNotPresent
29
31
  never: Never
32
+ labels: Labels
30
33
  labelsAndAnnotations: Labels & Annotations
34
+ podSecurityAdmission: Pod Security Admission
31
35
  links: Links
32
36
  loading: Loading…
33
37
  members: Members
@@ -51,6 +55,7 @@ generic:
51
55
  reload: Reload
52
56
  register: Register
53
57
  remove: Remove
58
+ addCatalog: Add Catalog
54
59
  resource: |-
55
60
  {count, plural,
56
61
  one {resource}
@@ -134,12 +139,12 @@ nav:
134
139
  group:
135
140
  cluster: Cluster
136
141
  inUse: More Resources
137
- policy: Policy
142
+ Policy: Policy
138
143
  rbac: RBAC
139
144
  serviceDiscovery: Service Discovery
140
145
  starred: Starred
141
146
  storage: Storage
142
- workload: Workload
147
+ workload: Workloads
143
148
  monitoring: Monitoring
144
149
  advanced: Advanced
145
150
  RKE1Configuration: RKE1 Configuration
@@ -147,6 +152,17 @@ nav:
147
152
  apps: Apps
148
153
  clusterProvisioning: Cluster Provisioning
149
154
  core: Core
155
+ legacy: Legacy
156
+ API: API
157
+ Coordination: Coordination
158
+ Discovery: Discovery
159
+ Fleet: Fleet
160
+ K3s: K3s
161
+ Networking: Networking
162
+ Rancher: Rancher
163
+ RBAC: RBAC
164
+ Scheduling: Scheduling
165
+ Storage: Storage
150
166
  ns:
151
167
  all: All Namespaces
152
168
  clusterLevel: Only Cluster Resources
@@ -200,8 +216,10 @@ product:
200
216
  neuvector: NeuVector
201
217
  harvesterManager: Virtualization Management
202
218
  rancher: Rancher
219
+ legacy: Legacy
203
220
  uiplugins: Extensions
204
221
  elemental: OS Management
222
+ plugins: Plugins
205
223
 
206
224
  suffix:
207
225
  percent: "%"
@@ -241,6 +259,7 @@ about:
241
259
  cli: CLI
242
260
  helm: Helm
243
261
  machine: Machine
262
+ rancher: Rancher
244
263
  releaseNotes: 'View release notes'
245
264
  os:
246
265
  mac: macOS
@@ -623,7 +642,7 @@ asyncButton:
623
642
  load:
624
643
  action: Load
625
644
  success: Loaded
626
- waiting: Loadingg…
645
+ waiting: Loading…
627
646
  pause:
628
647
  action: Pause Orchestration
629
648
  success: Paused Orchestration
@@ -878,7 +897,7 @@ catalog:
878
897
  valuesYaml: Edit YAML
879
898
  diff: Compare Changes
880
899
  slideIn:
881
- dock: Dock to bottom
900
+ dock: Dock to shell
882
901
  steps:
883
902
  basics:
884
903
  label: Metadata
@@ -1046,6 +1065,7 @@ cis:
1046
1065
  testID: Test ID
1047
1066
  testsSkipped: Tests Skipped
1048
1067
  testsToSkip: Tests to Skip
1068
+ workerProfile: CIS Profile
1049
1069
 
1050
1070
  cluster:
1051
1071
  addonChart:
@@ -1146,6 +1166,14 @@ cluster:
1146
1166
  help: Paste in a Personal Access Token from the Linode <a href="https://cloud.linode.com/profile/tokens" target="_blank" rel="noopener noreferrer nofollow">API Tokens</a> screen.
1147
1167
  label: Access Token
1148
1168
  placeholder: Your Linode API Access Token
1169
+ pnap:
1170
+ clientIdentifier:
1171
+ label: Client ID
1172
+ placeholder: Your Client ID
1173
+ clientSecret:
1174
+ help: From <a href="https://bmc.phoenixnap.com/credentials/" target="_blank" rel="nofollow noreferrer noopener">phoenixNAP BMC Portal</a> API Credentials
1175
+ label: Client Secret
1176
+ placeholder: Your Client Secret
1149
1177
  name:
1150
1178
  label: Credential Name
1151
1179
  placeholder: Name for this credential (optional)
@@ -1199,14 +1227,25 @@ cluster:
1199
1227
  </ul>
1200
1228
  More info on roles can be found <a href="https://cloud.google.com/kubernetes-engine/docs/how-to/iam-integration" target="_blank" rel="noopener noreferrer nofollow">here</a>.
1201
1229
  harvester:
1202
- import: Imported Harvester
1203
- external: External Harvester (Experimental)
1204
1230
  namespace: Namespace
1205
1231
  cpu: CPUs
1206
1232
  memory: Memory
1207
1233
  disk: Disk
1208
1234
  image: Image
1209
- network: Network Name
1235
+ network:
1236
+ title: Networks
1237
+ network: Network
1238
+ addNetwork: Add Network
1239
+ networkName: Network Name
1240
+ macAddress: Mac Address
1241
+ macFormat: 'Invalid MAC address format.'
1242
+ volume:
1243
+ title: Volumes
1244
+ volume: Volume
1245
+ imageVolume: Image Volume
1246
+ addVolume: Add Volume
1247
+ addVMImage: Add VM Image
1248
+ storageClass: Storage Class
1210
1249
  sshUser: SSH User
1211
1250
  userData:
1212
1251
  label: User Data Template
@@ -1217,7 +1256,7 @@ cluster:
1217
1256
  kubeconfigContent:
1218
1257
  label: KubeconfigContent
1219
1258
  placeholder: 'Namespace/Name'
1220
- cluster: Cluster
1259
+ cluster: Imported Harvester Cluster
1221
1260
  affinity:
1222
1261
  namespaces:
1223
1262
  placeholder: e.g. default,system,base
@@ -1266,8 +1305,8 @@ cluster:
1266
1305
  clusterRoleBindingInstructions: 'If you get permission errors creating some of the resources, your user may not have the <code>cluster-admin</code> role. Use this command to apply it:'
1267
1306
  clusterRoleBindingCommand: 'kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user <your username from your kubeconfig>'
1268
1307
  explore: Explore
1269
- exploreHarvester: Explore
1270
1308
  importAction: Import Existing
1309
+ manageAction: Manage
1271
1310
  kubernetesVersion:
1272
1311
  label: Kubernetes Version
1273
1312
  experimental: experimental
@@ -1295,8 +1334,14 @@ cluster:
1295
1334
  other {{storageSize, number} {storageUnit} {storageType}}
1296
1335
  }
1297
1336
  azure:
1337
+ acceleratedNetworking:
1338
+ label: Accelerated Networking
1298
1339
  availabilitySet:
1299
1340
  label: Availability Set (unmanaged)
1341
+ description: Availability sets are used to protect applications from hardware failures within an Azure data center.
1342
+ availabilityZone:
1343
+ label: Availability Zone
1344
+ description: Availability zones protect applications from complete Azure data center failures.
1300
1345
  dns:
1301
1346
  help: A unique DNS label for the public IP address.
1302
1347
  label: DNS Label
@@ -1336,10 +1381,18 @@ cluster:
1336
1381
  label: Resource Group
1337
1382
  size:
1338
1383
  label: VM Size
1384
+ tooltip: When accelerated networking is enabled, not all sizes are available.
1385
+ supportsAcceleratedNetworking: Sizes that Support Accelerated Networking
1386
+ doesNotSupportAcceleratedNetworking: Sizes Without Accelerated Networking
1387
+ availabilityWarning: The selected VM size is not available in the selected region.
1388
+ regionDoesNotSupportAzs: Availability zones are not supported in the selected region. Please select a different region or use an availability set instead.
1389
+ regionSupportsAzsButNotThisSize: The selected region does not support availability zones for the selected VM size. Please select a different region or VM size.
1390
+ selectedSizeAcceleratedNetworkingWarning: The selected VM size does not support accelerated networking. Please select another VM size or disable accelerated networking.
1339
1391
  sshUser:
1340
1392
  label: SSH Username
1341
1393
  storageType:
1342
1394
  label: Storage Type
1395
+ warning: StandardSSD_LRS requires managed disks. Please select Use Managed Disks or select another storage type.
1343
1396
  subnet:
1344
1397
  label: Subnet
1345
1398
  subnetPrefix:
@@ -1352,6 +1405,8 @@ cluster:
1352
1405
  vnet:
1353
1406
  label: Virtual Network
1354
1407
  placeholder: '[resourcegroup:]name'
1408
+ tags:
1409
+ label: Tags
1355
1410
  digitalocean:
1356
1411
  sizeLabel: |-
1357
1412
  {plan, select,
@@ -1500,6 +1555,27 @@ cluster:
1500
1555
  httpEndpoint: Allow access to EC2 metadata
1501
1556
  httpTokens: Use tokens for metadata
1502
1557
  tagTitle: EC2 Tags
1558
+ pnap:
1559
+ serverLocation:
1560
+ label: Location
1561
+ serverType:
1562
+ label: Type
1563
+ serverCpu:
1564
+ label: CPU
1565
+ serverCoresPerCpu:
1566
+ label: Cores per CPU
1567
+ serverCpuCount:
1568
+ label: CPU Count
1569
+ serverCpuFrequency:
1570
+ label: CPU Frequency [GHz]
1571
+ serverRam:
1572
+ label: RAM [GB]
1573
+ serverStorage:
1574
+ label: Storage
1575
+ serverNetwork:
1576
+ label: Network
1577
+ serverOs:
1578
+ label: OS
1503
1579
  addOns:
1504
1580
  dependencyBanner: Add-On Configurations can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
1505
1581
  additionalManifest:
@@ -1529,9 +1605,17 @@ cluster:
1529
1605
  os: 'You are attemping 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.'
1530
1606
  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>.'
1531
1607
  desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1608
+ invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25.
1609
+ haveArgInfo: Configuration information is not available for the selected Kubernetes version. The options available in this screen will be limited, you may want to use the YAML editor.
1610
+ deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25.
1611
+ removedPsp: Pod Security Policies have been removed in Kubernetes v1.25, use PodSecurity Admission instead.
1532
1612
 
1533
1613
  rkeTemplateUpgrade: Template revision {name} available for upgrade
1534
1614
 
1615
+ availabilityWarnings:
1616
+ node: Node {name} is inactive
1617
+ machine: Machine {name} is inactive
1618
+
1535
1619
  detail:
1536
1620
  provisioner: Provisioner
1537
1621
  kubernetesVersion: Kubernetes Version
@@ -1600,12 +1684,10 @@ cluster:
1600
1684
  searchPlaceholder: Start typing to search
1601
1685
  noResults: No results found
1602
1686
  privateRegistry:
1603
- systemDefaultRegistry:
1604
- label: Registry hostname for Rancher System Container Images
1605
- mode:
1606
- public: Use default global registry for Rancher System Container Images
1607
- private: Use specified private registry for Rancher System Container Images
1608
- advanced: Configure advanced containerd mirroring and registry authentication options
1687
+ label: Enable cluster scoped container registry for Rancher system container images
1688
+ description: "If enabled, Rancher will pull container images from this registry during cluster provisioning. By default, Rancher will also use this registry when installing Rancher's official Helm chart apps. If the cluster scoped registry is disabled, system images are pulled from the System Default Registry in the global settings."
1689
+ docsLinkRke2: "For help configuring private registry mirrors, see the RKE2 <a href=\"https://docs.rke2.io/install/containerd_registry_configuration/\" target=\"_blank\">documentation.</a>"
1690
+ docsLinkK3s: "For help configuring private registry mirrors, see the K3s <a href=\"https://docs.k3s.io/installation/private-registry\" target=\"_blank\">documentation.</a>"
1609
1691
  provider:
1610
1692
  aliyunecs: Aliyun ECS
1611
1693
  aliyunkubernetescontainerservice: Alibaba ACK
@@ -1689,10 +1771,18 @@ cluster:
1689
1771
  cloudProvider:
1690
1772
  label: Cloud Provider
1691
1773
  header: Cloud Provider Config
1774
+ defaultValue:
1775
+ label: Default - RKE2 Embedded
1692
1776
  security:
1693
1777
  header: Security
1694
1778
  defaultPodSecurityPolicyTemplateName:
1695
1779
  label: Default Pod Security Policy
1780
+ option: RKE Default
1781
+ defaultPodSecurityAdmissionConfigurationTemplateName:
1782
+ label: Default Pod Security Admission
1783
+ option: (None)
1784
+ cisProfile:
1785
+ option: (None)
1696
1786
  enableNetworkPolicy:
1697
1787
  label: Project Network Isolation
1698
1788
  warning: Per default, the ingress controller will not be able to route requests to pods on other nodes.
@@ -1797,11 +1887,16 @@ cluster:
1797
1887
  clusterIndexPage:
1798
1888
  hardwareResourceGauge:
1799
1889
  consumption: "{useful} of {total} {units} {suffix}"
1800
- cores: Cores
1890
+ cores: CPU
1801
1891
  pods: Pods
1802
1892
  ram: Memory
1803
1893
  used: Used
1804
1894
  reserved: Reserved
1895
+ units:
1896
+ cores: |-
1897
+ {count, plural,
1898
+ =1 {core}
1899
+ other {cores}}
1805
1900
  header: Cluster Dashboard
1806
1901
  resourceGauge:
1807
1902
  totalResources: Total Resources
@@ -2151,6 +2246,9 @@ growl:
2151
2246
  reconnected:
2152
2247
  message: "The connection to {url} was restored on attempt #{tries}."
2153
2248
  title: Websocket Reconnected
2249
+ podSecurity:
2250
+ message: "The creation of this Pod would violate existing restricted policies for the adopted Namespace"
2251
+ title: PodSecurity violation
2154
2252
 
2155
2253
  hpa:
2156
2254
  detail:
@@ -2226,6 +2324,7 @@ import:
2226
2324
  }
2227
2325
 
2228
2326
  ingress:
2327
+ description: Ingresses route incoming traffic from the internet to Services within the cluster based on the hostname and path specified in the request. You can expose multiple Services on the same external IP address and port.
2229
2328
  certificates:
2230
2329
  addCertificate: Add Certificate
2231
2330
  addHost: Add Host
@@ -2278,6 +2377,7 @@ ingress:
2278
2377
  placeholder: e.g. example.com
2279
2378
  target:
2280
2379
  label: Target Service
2380
+ tooltip: If none of the Services in this dropdown select the Pods that you need to expose, you will need to create a Service that selects those Pods first.
2281
2381
  doesntExist: The selected service does not exist
2282
2382
  title: Rules
2283
2383
  rulesAndCertificates:
@@ -2474,7 +2574,10 @@ labels:
2474
2574
  addAnnotation: Add Annotation
2475
2575
  labels:
2476
2576
  title: Labels
2577
+ description: Key/value pairs that are attached to objects which specify identifying attributes.
2477
2578
  fleetClusterTooltip: Label changes are made to the Management Cluster and synchronized to the Fleet Cluster
2579
+ show: Show System Label
2580
+ hide: Hide System Label
2478
2581
  annotations:
2479
2582
  title: Annotations
2480
2583
 
@@ -2522,13 +2625,39 @@ logging:
2522
2625
  doesntExistTooltip: This cluster output doesn't exist
2523
2626
  label: Cluster Outputs
2524
2627
  matches:
2628
+ banner: Configure which container logs will be pulled from
2629
+ unsupportedConfig: This resource contains a match configuration that the form editor does not support. Please use YAML edit.
2525
2630
  label: Matches
2526
2631
  addSelect: Add Include Rule
2527
2632
  addExclude: Add Exclude Rule
2633
+ pods:
2634
+ title:
2635
+ include: Include Pods
2636
+ exclude: Exclude Pods
2637
+ keyLabel: Pod Label Key
2638
+ valueLabel: Pod Label Value
2639
+ addLabel: Add Pod
2640
+ nodes:
2641
+ title:
2642
+ include: Limit to specific nodes
2643
+ exclude: Exclude specific nodes
2644
+ placeholder: "Default: Any node"
2645
+ containerNames:
2646
+ title:
2647
+ include: Limit to specific container names
2648
+ exclude: Exclude specific container names
2649
+ placeholder: "Default: Any container"
2650
+ namespaces:
2651
+ title:
2652
+ include: Limit to specific namespaces
2653
+ exclude: Exclude specific namespaces
2654
+ placeholder: "Default: Any namespace"
2655
+
2528
2656
  filters:
2529
2657
  label: Filters
2530
2658
  outputs:
2531
2659
  doesntExistTooltip: This output doesn't exist
2660
+ sameNamespaceError: Output must reside in same namespace as the flow.
2532
2661
  label: Outputs
2533
2662
  install:
2534
2663
  k3sContainerEngine: K3S Container Engine
@@ -2556,6 +2685,15 @@ logging:
2556
2685
  clientKeyPass: Client Key Pass from Secret
2557
2686
  verifySsl: Verify SSL
2558
2687
  sslVersion: SSL Version
2688
+ redis:
2689
+ host: Host
2690
+ port: Port
2691
+ dbNumber: Redis database number
2692
+ ttl: TTL for each key
2693
+ password: Password from Secret
2694
+ format:
2695
+ title: Format
2696
+ type: Type
2559
2697
  gelf:
2560
2698
  host: Host
2561
2699
  port: Port
@@ -2686,6 +2824,8 @@ logging:
2686
2824
  configuration: Configuration
2687
2825
  outputProviders:
2688
2826
  elasticsearch: Elasticsearch
2827
+ opensearch: OpenSearch
2828
+ redis: Redis
2689
2829
  splunkHec: Splunk
2690
2830
  kafka: Kafka
2691
2831
  forward: Fluentd
@@ -2783,6 +2923,7 @@ managementNode:
2783
2923
 
2784
2924
  members:
2785
2925
  clusterMembers: Cluster Members
2926
+ clusterAndProject: Cluster and Project Members
2786
2927
  createActionLabel: Add
2787
2928
  clusterPermissions:
2788
2929
  noDescription: User created - no description
@@ -2809,6 +2950,7 @@ members:
2809
2950
  label: Custom
2810
2951
  description: Choose individual roles for this user.
2811
2952
  localClusterWarning: "Caution: This is the cluster that Rancher is using as a data store. Only administrators should be given write access to this cluster. Users with write access to this cluster can use it to grant themselves access to any part of this installation."
2953
+ noRolesAssigned: There are no users assigned to this project.
2812
2954
 
2813
2955
  membershipEditor:
2814
2956
  label: Members
@@ -2987,6 +3129,7 @@ monitoring:
2987
3129
  editYaml: Edit AlertmanagerConfig
2988
3130
  detail: Receiver in AlertmanagerConfig
2989
3131
  disabledReceiverButton: The receiver form is available after the AlertmanagerConfig is created
3132
+ error: An error occurred saving the AlertmanagerConfig
2990
3133
  email:
2991
3134
  username: Auth Username
2992
3135
  password: Secret with Auth Password
@@ -3349,6 +3492,8 @@ persistentVolume:
3349
3492
  label: Plugin configuration
3350
3493
  plugin:
3351
3494
  label: Volume Plugin
3495
+ inTree: in-tree plugin
3496
+ unsupported: (Unsupported)
3352
3497
  capacity:
3353
3498
  label: Capacity
3354
3499
  customize:
@@ -3396,6 +3541,7 @@ persistentVolume:
3396
3541
  placeholder: e.g. sp1
3397
3542
  csi:
3398
3543
  label: CSI (Unsupported)
3544
+ suffix: (CSI)
3399
3545
  driver:
3400
3546
  label: Driver
3401
3547
  placeholder: e.g. driver.longhorn.io
@@ -3428,6 +3574,21 @@ persistentVolume:
3428
3574
  controllerPublishSecretNamespace:
3429
3575
  label: Controller Publish Secret Namespace
3430
3576
  placeholder: e.g. default
3577
+ drivers:
3578
+ disk-csi-azure-com: Azure Disk (CSI)
3579
+ file-csi-azure-com: Azure File (CSI)
3580
+ driver-longhorn-io: Longhorn (CSI)
3581
+ driver-harvesterhci-io: Harvester (CSI)
3582
+ nfs-csi-k8s-io: NFS (CSI)
3583
+ ebs-csi-aws-com: AWS Elastic Block Store (CSI)
3584
+ rbd-csi-ceph-com: Ceph RBD (CSI)
3585
+ org-gluster-glusterfs: GlusterFS (CSI)
3586
+ pd-csi-storage-gke-io: GCE Persistent Disk (CSI)
3587
+ cinder-csi-openstack-org: Cinder (CSI)
3588
+ pxd-portworx-com: Portworx (CSI)
3589
+ quobyte-csi: Quobyte (CSI)
3590
+ storageos: StorageOS (CSI)
3591
+ csi-vsphere-vmware-com: vSphere (CSI)
3431
3592
  cephfs:
3432
3593
  label: Ceph Filesystem (Unsupported)
3433
3594
  path:
@@ -3688,6 +3849,7 @@ podDisruptionBudget:
3688
3849
  maxUnavailable:
3689
3850
  label: Max. unavailable Pods
3690
3851
 
3852
+
3691
3853
  # Rancher Extensions
3692
3854
  plugins:
3693
3855
  labels:
@@ -3781,6 +3943,27 @@ plugins:
3781
3943
  crd:
3782
3944
  title: Remove the Rancher Extensions Custom Resource Definition
3783
3945
  prompt: There are one or more extensions installed - removing the CRD will require you to manually reinstall these extensions if you subsequently re-enable extensions support.
3946
+ podSecurityAdmission:
3947
+ name: Pod Security Admission
3948
+ description: Define the admission control mode you want to use for the pod security
3949
+ banner:
3950
+ modifications: 'Note: Modifying a Pod Security Admission Configuration Template will not affect any downstream cluster that references it until there is a cluster update'
3951
+ labels:
3952
+ enforce: Enforce
3953
+ audit: Audit
3954
+ warn: Warn
3955
+ usernames: Usernames
3956
+ runtimeClasses: RuntimeClasses
3957
+ namespaces: Namespaces
3958
+ privileged: privileged
3959
+ baseline: baseline
3960
+ restricted: restricted
3961
+ version:
3962
+ placeholder: 'Version (default: latest)'
3963
+ exemptions:
3964
+ title: Exemptions
3965
+ description: Allow the creation of pods for specific Usernames, RuntimeClassNames, and Namespaces that would otherwise be prohibited due to the policies set above.
3966
+ placeholder: Enter a comma separated list of {psaExemptionsControl}
3784
3967
  prefs:
3785
3968
  title: Preferences
3786
3969
  theme:
@@ -3826,6 +4009,9 @@ prefs:
3826
4009
  'true': Include Prerelease Versions
3827
4010
  'false': Show Releases Only
3828
4011
  label: Helm Charts
4012
+ confirmationSetting:
4013
+ title: Confirmation Setting
4014
+ scalingDownPrompt: Do not ask for confirmation when scaling down node pools.
3829
4015
 
3830
4016
  principal:
3831
4017
  loading: Loading&hellip;
@@ -4004,11 +4190,13 @@ promptRemove:
4004
4190
  other { and <b>{count} others</b>.}
4005
4191
  }
4006
4192
  attemptingToRemove: "You are attempting to delete the {type}"
4193
+ attemptingToRemoveAuthConfig: "You are attempting to disable this Auth Provider. <br><br> Be aware that cluster role template bindings, project role template bindings, global role bindings, users, tokens will be all deleted. <br><br> Are you sure you want to proceed?"
4007
4194
  protip: "Tip: Hold the {alternateLabel} key while clicking delete to bypass this confirmation"
4008
4195
  confirmName: "Enter <b>{nameToMatch}</b> below to confirm:"
4009
4196
  deleteAssociatedNamespaces: "Also delete the namespaces in this project:"
4010
4197
  willDeleteAssociatedNamespaces: "This will also delete all namespaces in the project: "
4011
4198
  confirmRelatedResource: "Deleting the {type} will remove all the resources on this particular {type} and this is not revertable, are you sure you want to continue deleting {names}?"
4199
+ promptConfirmation: "Do not prompt again for confirmation when scaling down."
4012
4200
 
4013
4201
  promptRemoveApp:
4014
4202
  removeCrd: "Delete the CRD associated with this app"
@@ -4263,6 +4451,8 @@ resourceList:
4263
4451
  create: Create
4264
4452
  createFromYaml: Create from YAML
4265
4453
  createResource: "Create {resourceName}"
4454
+ nsFiltering: "There are too many {resource}.<br>Please filter them by selecting a Namespace above."
4455
+ nsFilterToolTip: "There are too many resources, filtering is restricted to a single {mode}."
4266
4456
  resourceLoadingIndicator:
4267
4457
  loading: Loading
4268
4458
 
@@ -4446,6 +4636,9 @@ serviceTypes:
4446
4636
  nodeport: Node Port
4447
4637
 
4448
4638
  servicesPage:
4639
+ serviceListDescription: Services allow you to define a logical set of Pods that can be accessed with a single IP address and port.
4640
+ targetPorts: The Service will send requests to this port, and the selected Pods are expected to listen on this port.
4641
+ listeningPorts: The Service is exposed on this port.
4449
4642
  anyNode: Any Node
4450
4643
  labelsAnnotations:
4451
4644
  label: Labels & Annotations
@@ -4508,6 +4701,7 @@ servicesPage:
4508
4701
  helpText: ""
4509
4702
  label: Selectors
4510
4703
  matchingPods:
4704
+ description: Selector keys and values are intended to match labels and values on existing Pods.
4511
4705
  matchesSome: |-
4512
4706
  {matched, plural,
4513
4707
  =0 {Matches 0 of {total, number} pods. If no selector is created, manual endpoints must be made.}
@@ -4517,23 +4711,23 @@ servicesPage:
4517
4711
  serviceTypes:
4518
4712
  clusterIp:
4519
4713
  abbrv: IP
4520
- description: Exposes the service on a cluster-internal IP. Choosing this value makes the service only reachable from within the cluster. This is the default type.
4714
+ description: Expose a set of Pods to other Pods within the cluster. This type of Service is only reachable from within the cluster. This is the default type.
4521
4715
  label: Cluster IP
4522
4716
  externalName:
4523
4717
  abbrv: EN
4524
- description: "Maps the service to the contents of the `externalName` field (e.g. foo.bar.example.com), by returning a CNAME record with its value. No proxying of any kind is set up."
4718
+ description: Create a Service that uses a DNS name instead of selectors. This is an advanced use case.
4525
4719
  label: External Name
4526
4720
  headless:
4527
4721
  abbrv: H
4528
- description: Neither a cluster IP or load balancer is defined. These are used to interface with other service discovery mechanisms outside of Kubernetes implementation. A cluster IP is not allocated and kube-proxy does not handle these services.
4722
+ description: Create a Service without a cluster IP or load balancer. This is an advanced use case.
4529
4723
  label: Headless
4530
4724
  loadBalancer:
4531
4725
  abbrv: LB
4532
- description: Exposes the service externally using a cloud provider's load balancer.
4726
+ description: Create a load balancer in the underlying infrastructure (e.g. a cloud provider's load balancer) and assign a public IP address to the service. Allows external clients to access the service using the public IP address and the port specified in the service definition.
4533
4727
  label: Load Balancer
4534
4728
  nodePort:
4535
4729
  abbrv: NP
4536
- description: "Exposes the service on each node's IP at a static port (the `NodePort`). You'll be able to contact this type of service, from outside the cluster, by requesting `&lt;NodeIP&gt;:&lt;NodePort&gt;`."
4730
+ description: "Expose the service on each node's IP at a static port."
4537
4731
  label: Node Port
4538
4732
  typeOpts:
4539
4733
  label: Service Type
@@ -4685,7 +4879,7 @@ storageClass:
4685
4879
  zonal: Zonal
4686
4880
  regional: Regional
4687
4881
  longhorn:
4688
- title: Longhorn
4882
+ title: Longhorn (CSI)
4689
4883
  addLabel: Add Parameter
4690
4884
  vsphere-volume:
4691
4885
  title: VMWare vSphere Volume
@@ -4712,7 +4906,7 @@ storageClass:
4712
4906
  custom:
4713
4907
  addLabel: Add Parameter
4714
4908
  glusterfs:
4715
- title: Gluster Volume (Unsupported)
4909
+ title: Gluster Volume
4716
4910
  restUrl:
4717
4911
  label: REST URL
4718
4912
  placeholder: e.g. http://127.0.0.1:8081
@@ -4741,7 +4935,7 @@ storageClass:
4741
4935
  label: Volume Type
4742
4936
  placeholder: "e.g. replicate:3"
4743
4937
  cinder:
4744
- title: Openstack Cinder Volume (Unsupported)
4938
+ title: Openstack Cinder Volume
4745
4939
  volumeType:
4746
4940
  label: Volume Type
4747
4941
  placeholder: e.g. fast
@@ -4752,7 +4946,7 @@ storageClass:
4752
4946
  label: "Manual: Choose specific zones"
4753
4947
  placeholder: e.g. nova
4754
4948
  rbd:
4755
- title: Ceph RBD (Unsupported)
4949
+ title: Ceph RBD
4756
4950
  monitors:
4757
4951
  label: Monitors
4758
4952
  placeholder: e.g. 10.16.153.105:6789
@@ -4787,7 +4981,7 @@ storageClass:
4787
4981
  label: Image Features
4788
4982
  placeholder: e.g. layering
4789
4983
  quobyte:
4790
- title: Quobyte Volume (Unsupported)
4984
+ title: Quobyte Volume
4791
4985
  quobyteApiServer:
4792
4986
  label: Quobyte API Server
4793
4987
  placeholder: "e.g. http://138.68.74.142:7860"
@@ -4813,7 +5007,7 @@ storageClass:
4813
5007
  label: Quobyte Tenant
4814
5008
  placeholder: e.g. DEFAULT
4815
5009
  portworx-volume:
4816
- title: Portworx Volume (Unsupported)
5010
+ title: Portworx Volume
4817
5011
  filesystem:
4818
5012
  label: Filesystem
4819
5013
  placeholder: e.g. ext4
@@ -4836,7 +5030,7 @@ storageClass:
4836
5030
  label: Ephemeral
4837
5031
  placeholder: e.g. true
4838
5032
  scaleio:
4839
- title: ScaleIO Volume (Unsupported)
5033
+ title: ScaleIO Volume
4840
5034
  gateway:
4841
5035
  label: Gateway
4842
5036
  placeholder: e.g. https://192.168.99.200:443/api
@@ -4862,7 +5056,7 @@ storageClass:
4862
5056
  label: Filesystem Type
4863
5057
  placeholder: e.g. xfs
4864
5058
  storageos:
4865
- title: StorageOS (Unsupported)
5059
+ title: StorageOS
4866
5060
  pool:
4867
5061
  label: Pool
4868
5062
  placeholder: e.g. default
@@ -4879,49 +5073,94 @@ storageClass:
4879
5073
  label: Admin Secret Name
4880
5074
  placeholder: e.g. storageos-secret
4881
5075
  no-provisioner:
4882
- title: Local Storage (Unsupported)
5076
+ title: Local Storage
5077
+ deprecated:
5078
+ title: (Deprecated)
5079
+ warning: 'The {provisioner} in-tree plugin is deprecated: Find a CSI driver <a target="_blank" rel="noopener noreferrer nofollow" href="https://kubernetes-csi.github.io/docs/drivers.html">here.</a>'
5080
+ harvesterhci:
5081
+ title: Harvester (CSI)
5082
+ warning:
5083
+ unSatisfiesVersion: Please upgrade your Harvester CSI driver version to use this feature. (csi-driver >= v0.1.15)
5084
+ hostStorageClass:
5085
+ label: Host Storage Class
5086
+ placeholder: Storage class name on the host Harvester cluster
5087
+ tooltip: By default the default storage class on the host Harvester cluster is used.
4883
5088
 
4884
5089
  tableHeaders:
5090
+ assuredConcurrencyShares: Assured Concurrency Shares
4885
5091
  accessKey: Access Key
5092
+ addressType: Address Type
5093
+ accessModes: Access Modes
4886
5094
  address: Address
4887
5095
  age: Age
4888
5096
  apiGroup: API Groups
5097
+ apikey: API Key
5098
+ available: Available
5099
+ attachedVM: Attached VM
5100
+
4889
5101
  authRoles:
4890
5102
  globalDefault: New User Default
4891
5103
  clusterDefault: Cluster Creator Default
4892
5104
  projectDefault: Project Creator Default
4893
5105
  branch: Branch
5106
+ backupTarget: Backup Target
4894
5107
  builtIn: Built In
4895
5108
  bundlesReady: Bundles Ready
4896
5109
  bundleDeploymentsReady: Deployments
4897
5110
  builtin: Built-In
4898
5111
  chart: Chart
5112
+ capacity: Capacity
5113
+ current: Current
4899
5114
  clusterCreatorDefault: Cluster Creator Default
4900
5115
  clusterFlow: Cluster Flow
4901
5116
  clusterOutput: Cluster Output
4902
5117
  cluster: Cluster
4903
5118
  clusters: Clusters
5119
+ cluster-Name: Cluster
4904
5120
  clustersReady: Clusters Ready
4905
5121
  clusterGroups: Cluster Groups
4906
5122
  commit: Commit
4907
5123
  condition: Condition
5124
+ completions: Completions
5125
+ count: Count
5126
+ createdAt: Created At
4908
5127
  customVerbs: Custom Verbs
4909
5128
  description: Description
4910
5129
  expires: Expires
4911
- providers: Providers
4912
5130
  cpu: CPU
5131
+ currentReplicas: Current Replicas
4913
5132
  date: Date
5133
+ data: Data
4914
5134
  default: Default
5135
+ desired: Desired
5136
+ defaultVersion: Default version
4915
5137
  destination: Target
5138
+ deployed: Deployed
4916
5139
  download: Download
5140
+ duration: Duration
5141
+ diskState: Disk State
5142
+ drivers: Drivers
5143
+ distinguisherMethod: Distinguisher Method
4917
5144
  effect: Effect
4918
5145
  endpoints: Endpoints
5146
+ firstSeen: First Seen
4919
5147
  fleetBundleType: Type
4920
5148
  flow: Flow
5149
+ fingerprint: Fingerprint
4921
5150
  gitRepos: Git Repos
5151
+ groups: Groups
5152
+ groupName: Group Name
5153
+ groupRoleNames: Group Role Names
5154
+ global-Default: Global-Default
4922
5155
  host: Host
5156
+ hostIp: Host IP
5157
+ holder: Holder
5158
+ hpaReference: Workload
4923
5159
  health: Health
5160
+ handSize: Hand Size
5161
+ ipAddress: IP Address
4924
5162
  id: ID
5163
+ iP: IP
4925
5164
  image: Image
4926
5165
  imageSize: Size
4927
5166
  ingressClass: Ingress Class
@@ -4929,28 +5168,39 @@ tableHeaders:
4929
5168
  ingressTarget: Target
4930
5169
  internalExternalIp: External/Internal IP
4931
5170
  ipaddress: IP Address
5171
+ internalIpSameAsExternal: Same as External
4932
5172
  jobs: Jobs
4933
5173
  key: Key
4934
5174
  keys: Data
5175
+ labels: Labels
4935
5176
  lastUpdated: Last Updated
5177
+ lastSchedule: Last Schedule
4936
5178
  lastSeen: Last Seen
5179
+ lastSeenTooltip: The time at which the most recent occurrence of this event was recorded
4937
5180
  loggingOutputProviders: Provider
4938
5181
  machines: Machines
4939
5182
  machineNodeName: Node
4940
5183
  manual: Manual
4941
5184
  matches: Matches
5185
+ matchingPrecedence: Matching Precedence
4942
5186
  maxKubernetesVersion: Max Kubernetes Version
4943
5187
  message: Message
4944
5188
  minKubernetesVersion: Min Kubernetes Version
5189
+ minReplicas: Minimum Replicas
5190
+ maxReplicas: Maximum Replicas
5191
+ missingPL: MissingPL
4945
5192
  memory: Memory
5193
+ monitored: Monitored
4946
5194
  name: Name
4947
5195
  nameDisplay: Display Name
4948
5196
  nameUnlinked: Name
4949
5197
  namespace: Namespace
4950
5198
  namespaceName: Name
4951
5199
  namespaceNameUnlinked: Name
5200
+ networkType: Type
5201
+ networkVlan: Vlan ID
4952
5202
  node: Node
4953
- nodeName: Name
5203
+ nodeName: Node Name
4954
5204
  nodesReady: Nodes Ready
4955
5205
  nodePort: Node Port
4956
5206
  object: Object
@@ -4959,14 +5209,23 @@ tableHeaders:
4959
5209
  p95: 95%tile
4960
5210
  persistentVolumeClaim: Persistent Volume Claim
4961
5211
  persistentVolumeSource: Source
5212
+ phase: Phase
5213
+ progress: Progress
4962
5214
  podImages: Image
4963
5215
  podRestarts: Restarts
4964
5216
  pods: Pods
5217
+ pod-Selector: Pod-Selector
5218
+ providers: Providers
5219
+ providerID: Provider ID
4965
5220
  port: Port
5221
+ ports: Ports
4966
5222
  project: Project
4967
5223
  protocol: Protocol
4968
5224
  provider: Provider
5225
+ priorityLevel: Priority Level
4969
5226
  publicPorts: Public Ports
5227
+ queues: Queues
5228
+ queueLengthLimit: Queue Length Limit
4970
5229
  ram: RAM
4971
5230
  rbac:
4972
5231
  create: Create
@@ -4992,12 +5251,20 @@ tableHeaders:
4992
5251
  resources: Resources
4993
5252
  resourcesReady: Resources Ready
4994
5253
  restarts: Restarts
5254
+ restart: Restart Required
4995
5255
  role: Role
4996
5256
  roles: Roles
4997
5257
  routes: Routes
5258
+ routeConnectivity: Route Connectivity
5259
+ readyToUse: Ready To Use
4998
5260
  scale: Scale
4999
5261
  scope: Scope
5000
5262
  selector: Selector
5263
+ secrets: Secrets
5264
+ schedule: Schedule
5265
+ service: Service
5266
+ serviceAccounts: Service Accounts
5267
+ secret-Name: Secret-Name
5001
5268
  simpleName: Name
5002
5269
  simpleScale: Scale
5003
5270
  simpleType: Type
@@ -5005,51 +5272,35 @@ tableHeaders:
5005
5272
  started: Started
5006
5273
  state: State
5007
5274
  status: Status
5275
+ targetVm: Target VM
5008
5276
  storage_class_provisioner: Provisioner
5277
+ storage: Storage Size
5278
+ storageClass: Storage Class
5279
+ source: Source
5009
5280
  subject: Subject
5010
5281
  subType: Kind
5011
5282
  success: Success
5012
5283
  summary: Summary
5284
+ subobject: Subobject
5013
5285
  taints: Taints
5014
5286
  target: Target
5015
5287
  targetKind: Target Type
5016
5288
  targetPort: Target
5017
5289
  type: Type
5018
5290
  updated: Updated
5291
+ up-to-date: Up To Date
5019
5292
  upgrade: Upgradable
5020
5293
  url: URL
5294
+ users: Users
5021
5295
  userDisplayName: Display Name
5022
5296
  userId: ID
5023
5297
  userStatus: Status
5024
5298
  username: Local Username
5025
5299
  value: Value
5026
5300
  version: Version
5301
+ volume: Volume
5302
+ volumeMode: Volume Mode
5027
5303
  weight: Weight
5028
- progress: Progress
5029
- fingerprint: Fingerprint
5030
- networkType: Type
5031
- networkVlan: Vlan ID
5032
- readyToUse: Ready To Use
5033
- backupTarget: Backup Target
5034
- targetVm: Target VM
5035
- phase: Phase
5036
- attachedVM: Attached VM
5037
- hostIp: Host IP
5038
- storage: Storage Size
5039
- defaultVersion: Default version
5040
- ipAddress: IP Address
5041
- diskState: Disk State
5042
- routeConnectivity: Route Connectivity
5043
- hpaReference: Workload
5044
- minReplicas: Minimum Replicas
5045
- maxReplicas: Maximum Replicas
5046
- currentReplicas: Current Replicas
5047
- data: Data
5048
- apikey: API Key
5049
- groupName: Group Name
5050
- groupRoleNames: Group Role Names
5051
- restart: Restart Required
5052
-
5053
5304
  target:
5054
5305
  router:
5055
5306
  label: Router
@@ -5163,6 +5414,8 @@ validation:
5163
5414
  noType: No type to validate
5164
5415
  number:
5165
5416
  requiredInt: '"{key}" must be integer'
5417
+ isPositive: '"{key}" must be positive'
5418
+ isOctal: '"{key}" must have no leading zeros'
5166
5419
  between: '"{key}" should be between {min} and {max}'
5167
5420
  exactly: '"{key}" should be exactly {val}'
5168
5421
  max: '"{key}" should be at most {val}'
@@ -5390,6 +5643,10 @@ workload:
5390
5643
  noPorts: There are no ports configured.
5391
5644
  noServiceAccess: You do not have permission to create or manage services
5392
5645
  ports:
5646
+ expose: Networking
5647
+ description: 'Define a Service to expose the container, or define a non-functional, named port so that humans will know where the app within the container is expected to run.'
5648
+ detailedDescription: If ClusterIP, LoadBalancer, or NodePort is selected, a Service is automatically created that will select the Pods in this workload using labels.
5649
+ toolTip: 'For help exposing workloads on Kubernetes, see the official Kubernetes documentation on Services. You can also manually create a Service to expose Pods by selecting their labels, and you can use an Ingress to map HTTP routes to Services.'
5393
5650
  createService: Service Type
5394
5651
  noCreateService: Do not create a service
5395
5652
  containerPort: Private Container Port
@@ -5648,6 +5905,7 @@ workload:
5648
5905
  gcePersistentDisk: Google Persistent Disk
5649
5906
  driver.longhorn.io: Longhorn
5650
5907
  vsphereVolume: VMWare vSphere Volume
5908
+ emptyDir: Empty Dir
5651
5909
  addClaim: Add Claim
5652
5910
  addMount: Add Mount
5653
5911
  addVolume: Add Volume
@@ -5707,6 +5965,14 @@ workload:
5707
5965
  title: 'Storage'
5708
5966
  volumeName: Volume Name
5709
5967
  volumePath: Volume Path
5968
+ emptyDir:
5969
+ medium:
5970
+ label: Medium
5971
+ default: Node's Default Medium
5972
+ memory: Memory
5973
+ sizeLimit:
5974
+ label: Size Limit
5975
+ placeholder: "e.g. 300"
5710
5976
  typeDescriptions:
5711
5977
  apps.daemonset: DaemonSets run exactly one pod on every eligible node. When new nodes are added to the cluster, DaemonSets automatically deploy to them. Recommended for system-wide or vertically-scalable workloads that never need more than one pod per node.
5712
5978
  apps.deployment: Deployments run a scalable number of replicas of a pod distributed among the eligible nodes. Changes are rolled out incrementally and can be rolled back to the previous revision when needed. Recommended for stateless & horizontally-scalable workloads.
@@ -5756,15 +6022,7 @@ workload:
5756
6022
  pod: Pod
5757
6023
  containers: Containers
5758
6024
 
5759
- harvesterManager:
5760
- manage: Manage
5761
- cluster:
5762
- label: Harvester Clusters
5763
- none: There are no Harvester Clusters
5764
- learnMore: Learn more about Harvester from the <a target="_blank" href="https://harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Web Site</a> or read the the <a target="_blank" href="https://docs.harvesterhci.io/" rel="noopener noreferrer nofollow">Harvester Docs</a>
5765
- description: Harvester is a modern Hyperconverged infrastructure (HCI) solution built for bare metal servers using enterprise-grade open source technologies including Kubernetes, Kubevirt and Longhorn.
5766
- plugins:
5767
- loadError: Error loading harvester plugin
6025
+
5768
6026
 
5769
6027
  ##############################
5770
6028
  # Model Properties
@@ -5976,6 +6234,26 @@ typeLabel:
5976
6234
  one { Workspace }
5977
6235
  other { Workspaces }
5978
6236
  }
6237
+ management.cattle.io.podsecurityadmissionconfigurationtemplate: |-
6238
+ {count, plural,
6239
+ one { Pod Security Admission }
6240
+ other { Pod Security Admissions }
6241
+ }
6242
+ policy.poddisruptionbudget: |-
6243
+ {count, plural,
6244
+ one { Pod Disruption Budget }
6245
+ other { Pod Disruption Budgets }
6246
+ }
6247
+ limitrange: |-
6248
+ {count, plural,
6249
+ one { Limit Range }
6250
+ other { Limit Ranges }
6251
+ }
6252
+ resourcequota: |-
6253
+ {count, plural,
6254
+ one { Resource Quota }
6255
+ other { Resource Quotas }
6256
+ }
5979
6257
  # pruh-mee-thee-eyes https://www.prometheus.io/docs/introduction/faq/#what-is-the-plural-of-prometheus
5980
6258
  monitoring.coreos.com.prometheus: |-
5981
6259
  {count, plural,
@@ -5999,7 +6277,7 @@ typeLabel:
5999
6277
  }
6000
6278
  monitoring.coreos.com.alertmanagerconfig: |-
6001
6279
  {count, plural,
6002
- one { AlertmanagerConfigs }
6280
+ one { AlertmanagerConfig }
6003
6281
  other { AlertmanagerConfigs }
6004
6282
  }
6005
6283
  monitoring.coreos.com.podmonitor: |-
@@ -6042,10 +6320,10 @@ typeLabel:
6042
6320
  one { Cluster }
6043
6321
  other { Clusters }
6044
6322
  }
6045
- 'management.cattle.io.user': |-
6323
+ management.cattle.io.user: |-
6046
6324
  {count, plural,
6047
6325
  one { User }
6048
- other { Users }
6326
+ other { Users}
6049
6327
  }
6050
6328
  namespace: |-
6051
6329
  {count, plural,
@@ -6057,6 +6335,136 @@ typeLabel:
6057
6335
  one { Node }
6058
6336
  other { Nodes }
6059
6337
  }
6338
+ event: |-
6339
+ {count, plural,
6340
+ one { Event }
6341
+ other { Events }
6342
+ }
6343
+ apps.deployment: |-
6344
+ {count, plural,
6345
+ one { Deployment }
6346
+ other { Deployments }
6347
+ }
6348
+ batch.cronjob: |-
6349
+ {count, plural,
6350
+ one { CronJob }
6351
+ other { CronJobs }
6352
+ }
6353
+ apps.daemonset: |-
6354
+ {count, plural,
6355
+ one { DaemonSet }
6356
+ other { DaemonSets }
6357
+ }
6358
+ batch.job: |-
6359
+ {count, plural,
6360
+ one { Job }
6361
+ other { Jobs }
6362
+ }
6363
+ apps.statefulset: |-
6364
+ {count, plural,
6365
+ one { StatefulSet }
6366
+ other { StatefulSets }
6367
+ }
6368
+ pod: |-
6369
+ {count, plural,
6370
+ one { Pod }
6371
+ other { Pods }
6372
+ }
6373
+ autoscaling.horizontalpodautoscaler: |-
6374
+ {count, plural,
6375
+ one { HorizontalPodAutoscaler }
6376
+ other { HorizontalPodAutoscalers }
6377
+ }
6378
+ networking.k8s.io.ingress: |-
6379
+ {count, plural,
6380
+ one { Ingress }
6381
+ other { Ingresses }
6382
+ }
6383
+ networking.k8s.io.networkpolicy: |-
6384
+ {count, plural,
6385
+ one { Network Policy }
6386
+ other { Network Policies }
6387
+ }
6388
+ service: |-
6389
+ {count, plural,
6390
+ one { Service }
6391
+ other { Services }
6392
+ }
6393
+ persistentvolume: |-
6394
+ {count, plural,
6395
+ one { PersistentVolume }
6396
+ other { PersistentVolumes }
6397
+ }
6398
+ storage.k8s.io.storageclass: |-
6399
+ {count, plural,
6400
+ one { StorageClass }
6401
+ other { StorageClasses }
6402
+ }
6403
+ configmap: |-
6404
+ {count, plural,
6405
+ one { ConfigMap }
6406
+ other { ConfigMaps }
6407
+ }
6408
+ persistentvolumeclaim: |-
6409
+ {count, plural,
6410
+ one { PersistentVolumeClaim }
6411
+ other { PersistentVolumeClaims }
6412
+ }
6413
+ secret: |-
6414
+ {count, plural,
6415
+ one { Secret }
6416
+ other { Secrets }
6417
+ }
6418
+ apiregistration.k8s.io.apiservice: |-
6419
+ {count, plural,
6420
+ one { APIService }
6421
+ other { APIServices }
6422
+ }
6423
+ apiextensions.k8s.io.customresourcedefinition: |-
6424
+ {count, plural,
6425
+ one { CustomResourceDefinition }
6426
+ other { CustomResourceDefinitions }
6427
+ }
6428
+ flowcontrol.apiserver.k8s.io.flowschema: |-
6429
+ {count, plural,
6430
+ one { FlowSchema }
6431
+ other { FlowSchemas }
6432
+ }
6433
+ flowcontrol.apiserver.k8s.io.prioritylevelconfiguration: |-
6434
+ {count, plural,
6435
+ one { PriorityLevelConfiguration }
6436
+ other { PriorityLevelConfigurations }
6437
+ }
6438
+ apps.replicaset: |-
6439
+ {count, plural,
6440
+ one { ReplicaSet }
6441
+ other { ReplicaSets }
6442
+ }
6443
+ coordination.k8s.io.lease: |-
6444
+ {count, plural,
6445
+ one { Lease }
6446
+ other { Leases }
6447
+ }
6448
+ serviceaccount: |-
6449
+ {count, plural,
6450
+ one { ServiceAccount }
6451
+ other { ServiceAccounts }
6452
+ }
6453
+ discovery.k8s.io.endpointslice: |-
6454
+ {count, plural,
6455
+ one { EndpointSlice }
6456
+ other { EndpointSlices }
6457
+ }
6458
+ admissionregistration.k8s.io.mutatingwebhookconfiguration: |-
6459
+ {count, plural,
6460
+ one { MutatingWebhookConfiguration }
6461
+ other { MutatingWebhookConfigurations }
6462
+ }
6463
+ admissionregistration.k8s.io.validatingwebhookconfiguration: |-
6464
+ {count, plural,
6465
+ one { ValidatingWebhookConfiguration }
6466
+ other { ValidatingWebhookConfigurations }
6467
+ }
6060
6468
  group.principal: |-
6061
6469
  {count, plural,
6062
6470
  one { Group }
@@ -6077,11 +6485,186 @@ typeLabel:
6077
6485
  one { Harvester Cluster }
6078
6486
  other { Harvester Clusters }
6079
6487
  }
6488
+ harvesterhci.io.cloudtemplate: |-
6489
+ {count, plural,
6490
+ one { Cloud Config Template }
6491
+ other { Cloud Config Templates }
6492
+ }
6493
+ fleet.cattle.io.content: |-
6494
+ {count, plural,
6495
+ one { Content }
6496
+ other { Contents }
6497
+ }
6080
6498
  fleet.cattle.io.bundle: |-
6081
6499
  {count, plural,
6082
6500
  one { Bundle }
6083
6501
  other { Bundles }
6084
6502
  }
6503
+ fleet.cattle.io.bundledeployment: |-
6504
+ {count, plural,
6505
+ one { BundleDeployment }
6506
+ other { BundleDeployments }
6507
+ }
6508
+ k3s.cattle.io.addon: |-
6509
+ {count, plural,
6510
+ one { Addon }
6511
+ other { Addons }
6512
+ }
6513
+ management.cattle.io.apiservice: |-
6514
+ {count, plural,
6515
+ one { APIService }
6516
+ other { APIServices }
6517
+ }
6518
+ management.cattle.io.catalog: |-
6519
+ {count, plural,
6520
+ one { Catalog }
6521
+ other { Catalogs }
6522
+ }
6523
+ fleet.cattle.io.clusterregistration: |-
6524
+ {count, plural,
6525
+ one { ClusterRegistration }
6526
+ other { ClusterRegistrations }
6527
+ }
6528
+ management.cattle.io.dynamicschema: |-
6529
+ {count, plural,
6530
+ one { DynamicSchema }
6531
+ other { DynamicSchemas }
6532
+ }
6533
+ management.cattle.io.globalrolebinding: |-
6534
+ {count, plural,
6535
+ one { GlobalRoleBinding }
6536
+ other { GlobalRoleBindings }
6537
+ }
6538
+ management.cattle.io.kontainerdriver: |-
6539
+ {count, plural,
6540
+ one { KontainerDriver }
6541
+ other { KontainerDrivers }
6542
+ }
6543
+ management.cattle.io.nodedriver: |-
6544
+ {count, plural,
6545
+ one { NodeDriver }
6546
+ other { NodeDrivers }
6547
+ }
6548
+ management.cattle.io.podsecuritypolicytemplate: |-
6549
+ {count, plural,
6550
+ one { PodSecurityPolicyTemplate }
6551
+ other { PodSecurityPolicyTemplates }
6552
+ }
6553
+ management.cattle.io.userattribute: |-
6554
+ {count, plural,
6555
+ one { UserAttribute }
6556
+ other { UserAttributes }
6557
+ }
6558
+ management.cattle.io.catalogtemplate: |-
6559
+ {count, plural,
6560
+ one { CatalogTemplate }
6561
+ other { CatalogTemplates }
6562
+ }
6563
+ management.cattle.io.catalogtemplateversion: |-
6564
+ {count, plural,
6565
+ one { CatalogTemplateVersion }
6566
+ other { CatalogTemplateVersions }
6567
+ }
6568
+ management.cattle.io.cisbenchmarkversion: |-
6569
+ {count, plural,
6570
+ one { CisBenchmarkVersion }
6571
+ other { CisBenchmarkVersions }
6572
+ }
6573
+ management.cattle.io.cisconfig: |-
6574
+ {count, plural,
6575
+ one { CisConfig }
6576
+ other { CisConfigs }
6577
+ }
6578
+ management.cattle.io.clusteralertgroup: |-
6579
+ {count, plural,
6580
+ one { ClusterAlertGroup }
6581
+ other { ClusterAlertGroups }
6582
+ }
6583
+ management.cattle.io.clusteralertrule: |-
6584
+ {count, plural,
6585
+ one { ClusterAlertRule }
6586
+ other { ClusterAlertRules }
6587
+ }
6588
+ management.cattle.io.clusterregistrationtoken: |-
6589
+ {count, plural,
6590
+ one { ClusterRegistrationToken }
6591
+ other { ClusterRegistrationTokens }
6592
+ }
6593
+ management.cattle.io.node: |-
6594
+ {count, plural,
6595
+ one { Node }
6596
+ other { Nodes }
6597
+ }
6598
+ management.cattle.io.projectalertgroup: |-
6599
+ {count, plural,
6600
+ one { ProjectAlertGroup }
6601
+ other { ProjectAlertGroups }
6602
+ }
6603
+ management.cattle.io.projectalertrule: |-
6604
+ {count, plural,
6605
+ one { ProjectAlertRule }
6606
+ other { ProjectAlertRules }
6607
+ }
6608
+ management.cattle.io.rkeaddon: |-
6609
+ {count, plural,
6610
+ one { RkeAddon }
6611
+ other { RkeAddons }
6612
+ }
6613
+ management.cattle.io.rkek8sserviceoption: |-
6614
+ {count, plural,
6615
+ one { RkeK8sServiceOption }
6616
+ other { RkeK8sServiceOptions }
6617
+ }
6618
+ management.cattle.io.rkek8ssystemimage: |-
6619
+ {count, plural,
6620
+ one { RkeK8sSystemImage }
6621
+ other { RkeK8sSystemImages }
6622
+ }
6623
+ rbac.authorization.k8s.io.clusterrolebinding: |-
6624
+ {count, plural,
6625
+ one { ClusterRoleBinding }
6626
+ other { ClusterRoleBindings }
6627
+ }
6628
+ rbac.authorization.k8s.io.clusterrole: |-
6629
+ {count, plural,
6630
+ one { ClusterRole }
6631
+ other { ClusterRoles }
6632
+ }
6633
+ rbac.authorization.k8s.io.rolebinding: |-
6634
+ {count, plural,
6635
+ one { RoleBinding }
6636
+ other { RoleBindings }
6637
+ }
6638
+ rbac.authorization.k8s.io.role: |-
6639
+ {count, plural,
6640
+ one { Role }
6641
+ other { Roles }
6642
+ }
6643
+ scheduling.k8s.io.priorityclass: |-
6644
+ {count, plural,
6645
+ one { PriorityClass }
6646
+ other { PriorityClasses }
6647
+ }
6648
+ storage.k8s.io.csinode: |-
6649
+ {count, plural,
6650
+ one { CSINode }
6651
+ other { CSINodes }
6652
+ }
6653
+ cluster.x-k8s.io.machinedeployment: |-
6654
+ {count, plural,
6655
+ one { MachineDeployment }
6656
+ other { MachineDeployments }
6657
+ }
6658
+ cluster.x-k8s.io.machineset: |-
6659
+ {count, plural,
6660
+ one { MachineSet }
6661
+ other { MachineSets }
6662
+ }
6663
+ cluster.x-k8s.io.machine: |-
6664
+ {count, plural,
6665
+ one { Machine }
6666
+ other { Machines }
6667
+ }
6085
6668
  fleet.cattle.io.clusterregistrationtoken: |-
6086
6669
  {count, plural,
6087
6670
  one { Cluster Registration Token }
@@ -6130,7 +6713,7 @@ unit:
6130
6713
  other { days }
6131
6714
  }
6132
6715
  workloadPorts:
6133
- addPort: Add Port
6716
+ addPort: Add Port or Service
6134
6717
  remove: Remove
6135
6718
  addHost: Add Host
6136
6719
 
@@ -6144,13 +6727,28 @@ keyValue:
6144
6727
 
6145
6728
  registryMirror:
6146
6729
  header: Mirrors
6147
- toolTip: 'Mirrors can be used to redirect requests for images from one registry to actually come from a list of endpoints you specify instead. For example you could point docker.io to always talk to your internal registry and instead of ever going to the actual DockerHub on the internet.'
6730
+ toolTip: 'Mirrors can be used to redirect requests for images from one registry to come from a list of endpoints you specify instead. For example docker.io could redirect to your internal registry instead of ever going to DockerHub.'
6148
6731
  addLabel: Add Mirror
6732
+ description: Mirrors define the names and endpoints for private registries. The endpoints are tried one by one, and the first working one is used.
6733
+ hostnameLabel: Registry Hostname
6734
+ hostnamePlaceholder: e.g. docker.io or *
6735
+ endpointsLabel: Mirror Endpoints
6736
+ endpointsPlaceholder: e.g. a.registry.com:5000, b.registry.com:5000
6737
+
6738
+ registryMirrorRewrite:
6739
+ header: Rewrites
6740
+ toolTip: 'Each mirror can have a set of rewrites. Rewrites can change the tag of an image based on a regular expression.'
6741
+ addLabel: Add Rewrite Config
6742
+ keyLabel: Rewrite pattern
6743
+ keyPlaceholder: e.g. ^rancher/(.*)
6744
+ valueLabel: Rewrite replacement
6745
+ valuePlaceholder: e.g. mirrorproject/rancher-images/$1
6149
6746
 
6150
6747
  registryConfig:
6151
6748
  header: Registry Authentication
6152
6749
  toolTip: 'When an image needs to be pulled from the given registry hostname, this information will be used to verify the identity of the registry and authenticate to it.'
6153
6750
  addLabel: Add Registry
6751
+ description: "Define the TLS and credential configuration for each registry hostname and mirror."
6154
6752
 
6155
6753
  ##############################
6156
6754
  ### Advanced Settings
@@ -6162,6 +6760,7 @@ advancedSettings:
6162
6760
  show: Show
6163
6761
  hide: Hide
6164
6762
  none: None
6763
+ modified: Modified
6165
6764
  edit:
6166
6765
  label: Edit Setting
6167
6766
  changeSetting: "Change Setting:"
@@ -6241,6 +6840,7 @@ featureFlags:
6241
6840
  performance:
6242
6841
  label: UI Performance Settings
6243
6842
  settingName: Performance
6843
+ experimental: This setting is experimental and may be removed or updated in future versions.
6244
6844
  incrementalLoad:
6245
6845
  label: Incremental Loading
6246
6846
  setting: You can configure the threshold above which incremental loading will be used.
@@ -6249,7 +6849,6 @@ performance:
6249
6849
  checkboxLabel: Enable incremental loading
6250
6850
  inputLabel: Resource Threshold
6251
6851
  manualRefresh:
6252
- banner: This setting is experimental and may be removed or updated in future versions.
6253
6852
  label: Manual Refresh
6254
6853
  setting: You can configure a threshold above which manual refresh will be enabled.
6255
6854
  buttonTooltip: Refresh list
@@ -6265,7 +6864,6 @@ performance:
6265
6864
  gc:
6266
6865
  label: Resource Garbage Collection
6267
6866
  description: The UI will cache kuberentes resources locally to avoid having to re-fetch them. In some cases this can lead to a large amount of data stored in the browser. Enable this setting to periodically remove them.
6268
- banner: This setting is experimental and may be removed or updated in future versions.
6269
6867
  checkboxLabel: Enable Garbage Collection
6270
6868
  whenRun:
6271
6869
  description: Update when garbage collection runs
@@ -6284,7 +6882,17 @@ performance:
6284
6882
  count:
6285
6883
  description: Resource types must exceed this amount to be considered for garbage collection.
6286
6884
  inputLabel: Resource Count
6287
-
6885
+ nsFiltering:
6886
+ label: Require Namespace Filtering
6887
+ description: When there are too many resources to show in a list, require the user to select a single namespace and only fetch resources from within it.
6888
+ checkboxLabel: Enable Required Namespace Filtering
6889
+ count:
6890
+ inputLabel: Resource Threshold
6891
+ description: The threshold above which filtering by a namespace is required
6892
+ advancedWorker:
6893
+ label: Websocket Web Worker
6894
+ description: Updates to resources pushed to the UI come via WebSocket and are handled in the UI thread. Enable this option to handle cluster WebSocket updates in a Web Worker in a separate thread. This should help the responsiveness of the UI in systems where resources change often.
6895
+ checkboxLabel: Enable Advanced Websocket Web Worker
6288
6896
 
6289
6897
  banner:
6290
6898
  label: Fixed Banners