@rancher/shell 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (342) 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/_gauges.scss +1 -1
  4. package/assets/styles/global/_layout.scss +5 -2
  5. package/assets/styles/global/_select.scss +1 -4
  6. package/assets/styles/themes/_dark.scss +5 -4
  7. package/assets/styles/themes/_light.scss +4 -3
  8. package/assets/styles/themes/_suse.scss +1 -1
  9. package/assets/styles/vendor/vue-select.scss +4 -3
  10. package/assets/translations/en-us.yaml +673 -73
  11. package/assets/translations/zh-hans.yaml +720 -207
  12. package/chart/monitoring/steps/uninstall-v1.vue +2 -2
  13. package/cloud-credential/azure.vue +23 -0
  14. package/cloud-credential/harvester.vue +25 -62
  15. package/cloud-credential/pnap.vue +80 -0
  16. package/components/.DS_Store +0 -0
  17. package/components/ActionMenu.vue +28 -7
  18. package/components/AdvancedSection.vue +9 -2
  19. package/components/Alert.vue +2 -2
  20. package/components/ButtonDropdown.vue +0 -2
  21. package/components/ButtonGroup.vue +1 -0
  22. package/components/CollapsibleCard.vue +0 -1
  23. package/components/CruResource.vue +41 -4
  24. package/components/DetailTop.vue +72 -4
  25. package/components/DisableAuthProviderModal.vue +106 -0
  26. package/{rancher-components/components/Utils/DraggableZone → components}/DraggableZone.vue +0 -0
  27. package/components/ExplorerMembers.vue +253 -30
  28. package/components/ExplorerProjectsNamespaces.vue +77 -33
  29. package/components/ExtensionPanel.vue +42 -0
  30. package/components/GrowlManager.vue +3 -3
  31. package/components/IconOrSvg.vue +178 -0
  32. package/components/LogItem.vue +69 -0
  33. package/components/PodSecurityAdmission.vue +302 -0
  34. package/components/PromptModal.vue +1 -0
  35. package/components/ResourceDetail/Masthead.vue +69 -4
  36. package/components/ResourceDetail/index.vue +12 -5
  37. package/components/ResourceList/Masthead.vue +11 -1
  38. package/components/ResourceList/ResourceLoadingIndicator.vue +12 -2
  39. package/components/ResourceList/index.vue +66 -12
  40. package/components/ResourceList/resource-list.config.js +7 -0
  41. package/components/ResourceTable.vue +33 -6
  42. package/components/SimpleBox.vue +1 -1
  43. package/components/SortableTable/THead.vue +21 -14
  44. package/components/SortableTable/filtering.js +1 -1
  45. package/components/SortableTable/index.vue +21 -10
  46. package/components/SortableTable/selection.js +15 -3
  47. package/components/Tabbed/Tab.vue +1 -1
  48. package/components/Tabbed/index.vue +20 -15
  49. package/components/__tests__/.DS_Store +0 -0
  50. package/components/__tests__/AsyncButton.test.ts +140 -0
  51. package/components/__tests__/BackLink.test.ts +33 -0
  52. package/components/__tests__/ButtonGroup.test.ts +124 -0
  53. package/components/__tests__/ClusterBadge.test.ts +32 -0
  54. package/components/__tests__/CollapsibleCard.test.ts +64 -0
  55. package/components/__tests__/ConsumptionGauge.test.ts +88 -0
  56. package/components/__tests__/CruResource.test.ts +3 -2
  57. package/components/__tests__/FixedBanner.test.ts +129 -0
  58. package/components/__tests__/GrowlManager.test.ts +147 -0
  59. package/components/__tests__/NamespaceFilter.test.ts +33 -25
  60. package/components/__tests__/PercentageBar.test.ts +32 -0
  61. package/components/__tests__/PodSecurityAdmission.test.ts +398 -0
  62. package/components/auth/AuthBanner.vue +20 -10
  63. package/components/auth/RoleDetailEdit.vue +26 -17
  64. package/components/auth/SelectPrincipal.vue +36 -5
  65. package/components/form/ArrayList.vue +3 -35
  66. package/components/form/ArrayListGrouped.vue +13 -4
  67. package/components/form/ArrayListSelect.vue +5 -5
  68. package/components/form/Error.vue +8 -0
  69. package/components/form/KeyValue.vue +39 -7
  70. package/components/form/LabeledSelect.vue +5 -2
  71. package/components/form/Labels.vue +46 -16
  72. package/components/form/Members/ClusterPermissionsEditor.vue +17 -17
  73. package/components/form/Members/MembershipEditor.vue +12 -12
  74. package/components/form/NameNsDescription.vue +1 -1
  75. package/components/form/NodeScheduling.vue +1 -1
  76. package/components/form/Probe.vue +3 -3
  77. package/components/form/ResourceQuota/Project.vue +6 -6
  78. package/components/form/ResourceTabs/index.vue +24 -6
  79. package/components/form/Security.vue +7 -6
  80. package/components/form/Select.vue +3 -2
  81. package/components/form/SelectOrCreateAuthSecret.vue +22 -29
  82. package/components/form/ServicePorts.vue +8 -0
  83. package/components/form/WorkloadPorts.vue +7 -1
  84. package/components/form/__tests__/ArrayList.test.ts +74 -0
  85. package/components/form/__tests__/ArrayListGrouped.test.ts +6 -4
  86. package/components/formatter/Checked.vue +1 -1
  87. package/components/formatter/ClusterLink.vue +5 -0
  88. package/components/formatter/IconIsDefault.vue +2 -2
  89. package/components/formatter/InternalExternalIP.vue +11 -8
  90. package/components/formatter/LiveDuration.vue +78 -0
  91. package/components/formatter/WorkloadHealthScale.vue +5 -3
  92. package/components/nav/Header.vue +74 -7
  93. package/components/nav/NamespaceFilter.vue +146 -63
  94. package/components/nav/TopLevelMenu.vue +22 -19
  95. package/components/nav/WindowManager/ContainerLogs.vue +83 -126
  96. package/components/nav/WindowManager/ContainerShell.vue +9 -7
  97. package/components/nav/WindowManager/Window.vue +2 -0
  98. package/components/nav/WindowManager/index.vue +10 -0
  99. package/config/elemental-types.js +9 -0
  100. package/config/features.js +2 -0
  101. package/config/home-links.js +4 -1
  102. package/config/pod-security-admission.ts +82 -0
  103. package/config/product/apps.js +1 -1
  104. package/config/product/auth.js +6 -5
  105. package/config/product/backup.js +1 -1
  106. package/config/product/explorer.js +6 -6
  107. package/config/product/fleet.js +1 -1
  108. package/config/product/manager.js +6 -2
  109. package/config/query-params.js +1 -0
  110. package/config/secret.js +0 -1
  111. package/config/settings.ts +26 -9
  112. package/config/table-headers.js +22 -11
  113. package/config/types.js +4 -1
  114. package/config/uiplugins.js +3 -3
  115. package/content/docs/zh-hans/getting-started.md +113 -137
  116. package/content/docs/zh-hans/whats-new.md +8 -46
  117. package/core/plugin-helpers.js +171 -0
  118. package/core/plugin.ts +61 -1
  119. package/core/plugins.js +33 -0
  120. package/core/types.ts +128 -2
  121. package/creators/pkg/package-lock.json +37 -0
  122. package/creators/pkg/package.json +1 -1
  123. package/detail/catalog.cattle.io.app.vue +1 -1
  124. package/detail/pod.vue +1 -1
  125. package/detail/provisioning.cattle.io.cluster.vue +35 -9
  126. package/detail/service.vue +2 -9
  127. package/detail/workload/index.vue +0 -1
  128. package/dialog/AddClusterMemberDialog.vue +22 -28
  129. package/dialog/AddProjectMemberDialog.vue +53 -9
  130. package/dialog/DiagnosticTimingsDialog.vue +8 -7
  131. package/dialog/DrainNode.vue +44 -48
  132. package/dialog/ForceMachineRemoveDialog.vue +5 -7
  133. package/dialog/GenericPrompt.vue +15 -20
  134. package/dialog/RollbackWorkloadDialog.vue +15 -46
  135. package/dialog/RotateCertificatesDialog.vue +5 -7
  136. package/dialog/RotateEncryptionKeyDialog.vue +5 -9
  137. package/dialog/SaveAsRKETemplateDialog.vue +5 -13
  138. package/dialog/ScaleMachineDownDialog.vue +1 -1
  139. package/dialog/ScalePoolDownDialog.vue +121 -0
  140. package/edit/__tests__/management.cattle.io.setting.test.ts +3 -3
  141. package/edit/auth/azuread.vue +16 -16
  142. package/edit/auth/github.vue +8 -0
  143. package/edit/auth/googleoauth.vue +10 -1
  144. package/edit/auth/ldap/index.vue +10 -0
  145. package/edit/auth/oidc.vue +10 -0
  146. package/edit/auth/saml.vue +10 -0
  147. package/edit/autoscaling.horizontalpodautoscaler/index.vue +1 -1
  148. package/edit/catalog.cattle.io.clusterrepo.vue +3 -0
  149. package/edit/cloudcredential.vue +3 -7
  150. package/edit/logging-flow/Match.vue +39 -8
  151. package/edit/logging-flow/index.vue +27 -4
  152. package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +107 -0
  153. package/edit/management.cattle.io.project.vue +8 -1
  154. package/edit/management.cattle.io.setting.vue +5 -2
  155. package/edit/management.cattle.io.user.vue +7 -1
  156. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +36 -8
  157. package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +2 -2
  158. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +14 -6
  159. package/edit/namespace.vue +18 -4
  160. package/edit/networking.k8s.io.ingress/Certificate.vue +1 -0
  161. package/edit/networking.k8s.io.ingress/IngressClass.vue +8 -6
  162. package/edit/networking.k8s.io.ingress/RulePath.vue +12 -6
  163. package/edit/networking.k8s.io.ingress/index.vue +8 -6
  164. package/edit/persistentvolume/index.vue +30 -27
  165. package/edit/persistentvolume/plugins/cephfs.vue +29 -29
  166. package/edit/persistentvolume/plugins/csi.vue +102 -62
  167. package/edit/persistentvolume/plugins/fc.vue +19 -19
  168. package/edit/persistentvolume/plugins/iscsi.vue +45 -45
  169. package/edit/persistentvolume/plugins/rbd.vue +39 -39
  170. package/edit/persistentvolumeclaim.vue +78 -75
  171. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +11 -7
  172. package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +10 -1
  173. package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +87 -27
  174. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -6
  175. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +96 -0
  176. package/edit/provisioning.cattle.io.cluster/import.vue +1 -1
  177. package/edit/provisioning.cattle.io.cluster/index.vue +29 -6
  178. package/edit/provisioning.cattle.io.cluster/rke2.vue +445 -154
  179. package/edit/secret/index.vue +3 -7
  180. package/edit/service.vue +3 -1
  181. package/edit/storage.k8s.io.storageclass/index.vue +100 -16
  182. package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +114 -0
  183. package/edit/workload/__tests__/index.test.ts +98 -0
  184. package/edit/workload/index.vue +58 -8
  185. package/edit/workload/mixins/workload.js +107 -70
  186. package/edit/workload/storage/ContainerMountPaths.vue +0 -10
  187. package/edit/workload/storage/emptyDir.vue +88 -0
  188. package/edit/workload/storage/ephemeralVolume/index.vue +1 -1
  189. package/edit/workload/storage/index.vue +8 -0
  190. package/edit/workload/storage/persistentVolumeClaim/index.vue +1 -1
  191. package/layouts/default.vue +57 -44
  192. package/list/__tests__/workload.test.ts +5 -2
  193. package/list/catalog.cattle.io.app.vue +1 -0
  194. package/list/cis.cattle.io.clusterscan.vue +1 -0
  195. package/list/fleet.cattle.io.bundle.vue +5 -6
  196. package/list/fleet.cattle.io.cluster.vue +6 -3
  197. package/list/fleet.cattle.io.clusterregistrationtoken.vue +5 -6
  198. package/list/fleet.cattle.io.gitrepo.vue +4 -9
  199. package/list/helm.cattle.io.projecthelmchart.vue +1 -5
  200. package/list/logging.banzaicloud.io.clusterflow.vue +4 -1
  201. package/list/logging.banzaicloud.io.flow.vue +6 -5
  202. package/list/management.cattle.io.cluster.vue +1 -0
  203. package/list/management.cattle.io.feature.vue +3 -4
  204. package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +47 -0
  205. package/list/management.cattle.io.setting.vue +2 -2
  206. package/list/management.cattle.io.user.vue +4 -10
  207. package/list/monitoring.coreos.com.alertmanagerconfig.vue +2 -7
  208. package/list/node.vue +8 -5
  209. package/list/persistentvolume.vue +3 -3
  210. package/list/persistentvolumeclaim.vue +3 -4
  211. package/list/provisioning.cattle.io.cluster.vue +18 -19
  212. package/list/service.vue +6 -14
  213. package/list/workload.vue +43 -38
  214. package/machine-config/azure.vue +429 -60
  215. package/machine-config/pnap.vue +288 -0
  216. package/mixins/auth-config.js +1 -3
  217. package/mixins/browser-tab-visibility.js +8 -14
  218. package/mixins/chart.js +1 -1
  219. package/mixins/create-edit-view/impl.js +4 -0
  220. package/mixins/create-edit-view/index.js +4 -2
  221. package/mixins/resource-fetch-namespaced.js +98 -0
  222. package/mixins/resource-fetch.js +79 -45
  223. package/mixins/resource-manager.js +1 -23
  224. package/models/apps.controllerrevision.js +7 -0
  225. package/models/apps.daemonset.js +18 -0
  226. package/models/apps.deployment.js +44 -0
  227. package/models/apps.replicaset.js +7 -0
  228. package/models/apps.statefulset.js +18 -0
  229. package/models/batch.job.js +7 -14
  230. package/models/cluster/node.js +10 -2
  231. package/models/cluster.x-k8s.io.machine.js +26 -4
  232. package/models/cluster.x-k8s.io.machinedeployment.js +12 -2
  233. package/models/event.js +7 -0
  234. package/models/logging.banzaicloud.io.flow.js +4 -0
  235. package/models/management.cattle.io.cluster.js +1 -1
  236. package/models/management.cattle.io.clusterroletemplatebinding.js +1 -1
  237. package/models/management.cattle.io.globalrole.js +2 -2
  238. package/models/management.cattle.io.node.js +37 -2
  239. package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +4 -0
  240. package/models/management.cattle.io.project.js +30 -11
  241. package/models/management.cattle.io.setting.js +1 -1
  242. package/models/management.cattle.io.user.js +37 -1
  243. package/models/namespace.js +42 -5
  244. package/models/persistentvolume.js +14 -2
  245. package/models/pod.js +15 -0
  246. package/models/projectroletemplatebinding.js +7 -0
  247. package/models/provisioning.cattle.io.cluster.js +61 -10
  248. package/models/rke-machine.cattle.io.pnapmachinetemplate.js +15 -0
  249. package/models/service.js +14 -13
  250. package/models/storage.k8s.io.storageclass.js +33 -18
  251. package/models/workload.js +38 -7
  252. package/nuxt.config.js +27 -17
  253. package/package.json +7 -7
  254. package/pages/about.vue +14 -2
  255. package/pages/c/_cluster/apps/charts/index.vue +21 -3
  256. package/pages/c/_cluster/apps/charts/install.vue +59 -22
  257. package/pages/c/_cluster/auth/config/_id.vue +6 -0
  258. package/pages/c/_cluster/auth/config/index.vue +8 -6
  259. package/pages/c/_cluster/auth/group.principal/assign-edit.vue +1 -1
  260. package/pages/c/_cluster/auth/roles/index.vue +1 -1
  261. package/pages/c/_cluster/explorer/index.vue +51 -6
  262. package/pages/c/_cluster/longhorn/index.vue +1 -1
  263. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +15 -4
  264. package/pages/c/_cluster/monitoring/index.vue +1 -1
  265. package/pages/c/_cluster/neuvector/index.vue +1 -1
  266. package/pages/c/_cluster/settings/performance.vue +48 -2
  267. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +2 -0
  268. package/pages/c/_cluster/uiplugins/InstallDialog.vue +3 -0
  269. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +42 -2
  270. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +2 -0
  271. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +1 -0
  272. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +2 -0
  273. package/pages/c/_cluster/uiplugins/index.vue +42 -3
  274. package/pages/diagnostic.vue +5 -4
  275. package/pages/home.vue +105 -30
  276. package/pages/prefs.vue +23 -12
  277. package/pages/rio/mesh.vue +1 -1
  278. package/pkg/dynamic-importer.lib.js +8 -0
  279. package/pkg/vue.config.js +4 -0
  280. package/plugins/dashboard-store/__tests__/mutations.spec.js +406 -0
  281. package/plugins/dashboard-store/actions.js +32 -25
  282. package/plugins/dashboard-store/getters.js +50 -33
  283. package/plugins/dashboard-store/mutations.js +134 -28
  284. package/plugins/dashboard-store/resource-class.js +37 -42
  285. package/plugins/steve/actions.js +30 -0
  286. package/plugins/steve/caches/resourceCache.js +60 -0
  287. package/plugins/steve/getters.js +44 -1
  288. package/plugins/steve/mutations.js +97 -36
  289. package/plugins/steve/resourceWatcher.js +277 -0
  290. package/plugins/steve/schema.utils.js +25 -0
  291. package/plugins/steve/subscribe.js +288 -115
  292. package/plugins/steve/worker/index.js +17 -0
  293. package/plugins/steve/worker/web-worker.advanced.js +302 -0
  294. package/plugins/steve/{web-worker.steve-sub-worker.js → worker/web-worker.basic.js} +3 -44
  295. package/rancher-components/Card/Card.vue +3 -3
  296. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +1 -0
  297. package/rancher-components/StringList/StringList.test.ts +45 -420
  298. package/rancher-components/StringList/StringList.vue +1 -10
  299. package/rancher-components/components/Banner/Banner.test.ts +44 -0
  300. package/rancher-components/components/Banner/Banner.vue +130 -61
  301. package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +13 -22
  302. package/rancher-components/components/Form/Checkbox/Checkbox.vue +8 -6
  303. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +9 -9
  304. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +0 -1
  305. package/rancher-components/components/StringList/StringList.test.ts +7 -7
  306. package/rancher-components/components/StringList/StringList.vue +21 -15
  307. package/scripts/test-plugins-build.sh +8 -0
  308. package/static/loading-indicator.html +1 -1
  309. package/store/action-menu.js +4 -3
  310. package/store/index.js +54 -3
  311. package/store/plugins.js +0 -17
  312. package/store/pnap.js +128 -0
  313. package/store/prefs.js +4 -2
  314. package/store/type-map.js +81 -13
  315. package/types/pod-security-admission.ts +36 -0
  316. package/types/shell/index.d.ts +497 -396
  317. package/utils/__tests__/object.test.ts +17 -1
  318. package/utils/__tests__/pod-security-admission.test.ts +61 -0
  319. package/utils/async.ts +36 -0
  320. package/utils/color.js +45 -0
  321. package/utils/crypto/browserHashUtils.js +18 -0
  322. package/utils/dynamic-importer.js +8 -0
  323. package/utils/install-redirect.js +1 -1
  324. package/utils/object.js +24 -0
  325. package/utils/pod-security-admission.ts +39 -0
  326. package/utils/socket.js +61 -24
  327. package/utils/string.js +2 -0
  328. package/utils/svg-filter.js +301 -0
  329. package/utils/time.js +49 -0
  330. package/utils/validators/cidr.js +4 -0
  331. package/utils/validators/formRules/__tests__/index.test.ts +23 -3
  332. package/utils/validators/formRules/index.ts +14 -0
  333. package/config/product/harvester-manager.js +0 -162
  334. package/edit/harvesterhci.io.management.cluster.vue +0 -153
  335. package/list/harvesterhci.io.management.cluster.vue +0 -241
  336. package/machine-config/harvester.vue +0 -693
  337. package/models/harvesterhci.io.management.cluster.js +0 -228
  338. package/pages/c/_cluster/harvesterManager/index.vue +0 -24
  339. package/rancher-components/Card/Card.test.ts +0 -39
  340. package/rancher-components/Utils/DraggableZone/DraggableZone.vue +0 -181
  341. package/rancher-components/Utils/DraggableZone/index.ts +0 -1
  342. package/rancher-components/components/Utils/DraggableZone/index.ts +0 -1
@@ -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,7 +139,7 @@ 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
@@ -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
@@ -798,6 +817,8 @@ catalog:
798
817
  keywords: Keywords
799
818
  errors:
800
819
  clusterToolExists: This chart has a fixed namespace and name. A matching <a href="{url}">application</a> has been found and any changes will be made to it.
820
+ banner:
821
+ legacy: 'PSP Removal: Before upgrading a cluster to Kubernetes 1.25+, please ensure you review your Helm applications for Pod Security Policies and update them accordingly'
801
822
  charts:
802
823
  all: All
803
824
  categories:
@@ -1046,6 +1067,7 @@ cis:
1046
1067
  testID: Test ID
1047
1068
  testsSkipped: Tests Skipped
1048
1069
  testsToSkip: Tests to Skip
1070
+ workerProfile: CIS Profile
1049
1071
 
1050
1072
  cluster:
1051
1073
  addonChart:
@@ -1146,6 +1168,14 @@ cluster:
1146
1168
  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
1169
  label: Access Token
1148
1170
  placeholder: Your Linode API Access Token
1171
+ pnap:
1172
+ clientIdentifier:
1173
+ label: Client ID
1174
+ placeholder: Your Client ID
1175
+ clientSecret:
1176
+ help: From <a href="https://bmc.phoenixnap.com/credentials/" target="_blank" rel="nofollow noreferrer noopener">phoenixNAP BMC Portal</a> API Credentials
1177
+ label: Client Secret
1178
+ placeholder: Your Client Secret
1149
1179
  name:
1150
1180
  label: Credential Name
1151
1181
  placeholder: Name for this credential (optional)
@@ -1199,14 +1229,25 @@ cluster:
1199
1229
  </ul>
1200
1230
  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
1231
  harvester:
1202
- import: Imported Harvester
1203
- external: External Harvester (Experimental)
1204
1232
  namespace: Namespace
1205
1233
  cpu: CPUs
1206
1234
  memory: Memory
1207
1235
  disk: Disk
1208
1236
  image: Image
1209
- network: Network Name
1237
+ network:
1238
+ title: Networks
1239
+ network: Network
1240
+ addNetwork: Add Network
1241
+ networkName: Network Name
1242
+ macAddress: Mac Address
1243
+ macFormat: 'Invalid MAC address format.'
1244
+ volume:
1245
+ title: Volumes
1246
+ volume: Volume
1247
+ imageVolume: Image Volume
1248
+ addVolume: Add Volume
1249
+ addVMImage: Add VM Image
1250
+ storageClass: Storage Class
1210
1251
  sshUser: SSH User
1211
1252
  userData:
1212
1253
  label: User Data Template
@@ -1217,7 +1258,7 @@ cluster:
1217
1258
  kubeconfigContent:
1218
1259
  label: KubeconfigContent
1219
1260
  placeholder: 'Namespace/Name'
1220
- cluster: Cluster
1261
+ cluster: Imported Harvester Cluster
1221
1262
  affinity:
1222
1263
  namespaces:
1223
1264
  placeholder: e.g. default,system,base
@@ -1266,8 +1307,8 @@ cluster:
1266
1307
  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
1308
  clusterRoleBindingCommand: 'kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user <your username from your kubeconfig>'
1268
1309
  explore: Explore
1269
- exploreHarvester: Explore
1270
1310
  importAction: Import Existing
1311
+ manageAction: Manage
1271
1312
  kubernetesVersion:
1272
1313
  label: Kubernetes Version
1273
1314
  experimental: experimental
@@ -1295,8 +1336,14 @@ cluster:
1295
1336
  other {{storageSize, number} {storageUnit} {storageType}}
1296
1337
  }
1297
1338
  azure:
1339
+ acceleratedNetworking:
1340
+ label: Accelerated Networking
1298
1341
  availabilitySet:
1299
1342
  label: Availability Set (unmanaged)
1343
+ description: Availability sets are used to protect applications from hardware failures within an Azure data center.
1344
+ availabilityZone:
1345
+ label: Availability Zone
1346
+ description: Availability zones protect applications from complete Azure data center failures.
1300
1347
  dns:
1301
1348
  help: A unique DNS label for the public IP address.
1302
1349
  label: DNS Label
@@ -1336,10 +1383,18 @@ cluster:
1336
1383
  label: Resource Group
1337
1384
  size:
1338
1385
  label: VM Size
1386
+ tooltip: When accelerated networking is enabled, not all sizes are available.
1387
+ supportsAcceleratedNetworking: Sizes that Support Accelerated Networking
1388
+ doesNotSupportAcceleratedNetworking: Sizes Without Accelerated Networking
1389
+ availabilityWarning: The selected VM size is not available in the selected region.
1390
+ regionDoesNotSupportAzs: Availability zones are not supported in the selected region. Please select a different region or use an availability set instead.
1391
+ regionSupportsAzsButNotThisSize: The selected region does not support availability zones for the selected VM size. Please select a different region or VM size.
1392
+ selectedSizeAcceleratedNetworkingWarning: The selected VM size does not support accelerated networking. Please select another VM size or disable accelerated networking.
1339
1393
  sshUser:
1340
1394
  label: SSH Username
1341
1395
  storageType:
1342
1396
  label: Storage Type
1397
+ warning: StandardSSD_LRS requires managed disks. Please select Use Managed Disks or select another storage type.
1343
1398
  subnet:
1344
1399
  label: Subnet
1345
1400
  subnetPrefix:
@@ -1352,6 +1407,8 @@ cluster:
1352
1407
  vnet:
1353
1408
  label: Virtual Network
1354
1409
  placeholder: '[resourcegroup:]name'
1410
+ tags:
1411
+ label: Tags
1355
1412
  digitalocean:
1356
1413
  sizeLabel: |-
1357
1414
  {plan, select,
@@ -1500,6 +1557,27 @@ cluster:
1500
1557
  httpEndpoint: Allow access to EC2 metadata
1501
1558
  httpTokens: Use tokens for metadata
1502
1559
  tagTitle: EC2 Tags
1560
+ pnap:
1561
+ serverLocation:
1562
+ label: Location
1563
+ serverType:
1564
+ label: Type
1565
+ serverCpu:
1566
+ label: CPU
1567
+ serverCoresPerCpu:
1568
+ label: Cores per CPU
1569
+ serverCpuCount:
1570
+ label: CPU Count
1571
+ serverCpuFrequency:
1572
+ label: CPU Frequency [GHz]
1573
+ serverRam:
1574
+ label: RAM [GB]
1575
+ serverStorage:
1576
+ label: Storage
1577
+ serverNetwork:
1578
+ label: Network
1579
+ serverOs:
1580
+ label: OS
1503
1581
  addOns:
1504
1582
  dependencyBanner: Add-On Configurations can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
1505
1583
  additionalManifest:
@@ -1529,9 +1607,17 @@ cluster:
1529
1607
  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
1608
  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
1609
  desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
1610
+ invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25.
1611
+ 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.
1612
+ deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25.
1613
+ removedPsp: Pod Security Policies have been removed in Kubernetes v1.25, use PodSecurity Admission instead.
1532
1614
 
1533
1615
  rkeTemplateUpgrade: Template revision {name} available for upgrade
1534
1616
 
1617
+ availabilityWarnings:
1618
+ node: Node {name} is inactive
1619
+ machine: Machine {name} is inactive
1620
+
1535
1621
  detail:
1536
1622
  provisioner: Provisioner
1537
1623
  kubernetesVersion: Kubernetes Version
@@ -1600,12 +1686,10 @@ cluster:
1600
1686
  searchPlaceholder: Start typing to search
1601
1687
  noResults: No results found
1602
1688
  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
1689
+ label: Enable cluster scoped container registry for Rancher system container images
1690
+ 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."
1691
+ docsLinkRke2: "For help configuring private registry mirrors, see the RKE2 <a href=\"https://docs.rke2.io/install/containerd_registry_configuration/\" target=\"_blank\">documentation.</a>"
1692
+ docsLinkK3s: "For help configuring private registry mirrors, see the K3s <a href=\"https://docs.k3s.io/installation/private-registry\" target=\"_blank\">documentation.</a>"
1609
1693
  provider:
1610
1694
  aliyunecs: Aliyun ECS
1611
1695
  aliyunkubernetescontainerservice: Alibaba ACK
@@ -1689,10 +1773,18 @@ cluster:
1689
1773
  cloudProvider:
1690
1774
  label: Cloud Provider
1691
1775
  header: Cloud Provider Config
1776
+ defaultValue:
1777
+ label: Default - RKE2 Embedded
1692
1778
  security:
1693
1779
  header: Security
1694
1780
  defaultPodSecurityPolicyTemplateName:
1695
1781
  label: Default Pod Security Policy
1782
+ option: RKE Default
1783
+ defaultPodSecurityAdmissionConfigurationTemplateName:
1784
+ label: Default Pod Security Admission
1785
+ option: (None)
1786
+ cisProfile:
1787
+ option: (None)
1696
1788
  enableNetworkPolicy:
1697
1789
  label: Project Network Isolation
1698
1790
  warning: Per default, the ingress controller will not be able to route requests to pods on other nodes.
@@ -1797,11 +1889,16 @@ cluster:
1797
1889
  clusterIndexPage:
1798
1890
  hardwareResourceGauge:
1799
1891
  consumption: "{useful} of {total} {units} {suffix}"
1800
- cores: Cores
1892
+ cores: CPU
1801
1893
  pods: Pods
1802
1894
  ram: Memory
1803
1895
  used: Used
1804
1896
  reserved: Reserved
1897
+ units:
1898
+ cores: |-
1899
+ {count, plural,
1900
+ =1 {core}
1901
+ other {cores}}
1805
1902
  header: Cluster Dashboard
1806
1903
  resourceGauge:
1807
1904
  totalResources: Total Resources
@@ -2151,6 +2248,9 @@ growl:
2151
2248
  reconnected:
2152
2249
  message: "The connection to {url} was restored on attempt #{tries}."
2153
2250
  title: Websocket Reconnected
2251
+ podSecurity:
2252
+ message: "The creation of this Pod would violate existing restricted policies for the adopted Namespace"
2253
+ title: PodSecurity violation
2154
2254
 
2155
2255
  hpa:
2156
2256
  detail:
@@ -2226,6 +2326,7 @@ import:
2226
2326
  }
2227
2327
 
2228
2328
  ingress:
2329
+ 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
2330
  certificates:
2230
2331
  addCertificate: Add Certificate
2231
2332
  addHost: Add Host
@@ -2278,6 +2379,7 @@ ingress:
2278
2379
  placeholder: e.g. example.com
2279
2380
  target:
2280
2381
  label: Target Service
2382
+ 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
2383
  doesntExist: The selected service does not exist
2282
2384
  title: Rules
2283
2385
  rulesAndCertificates:
@@ -2474,7 +2576,10 @@ labels:
2474
2576
  addAnnotation: Add Annotation
2475
2577
  labels:
2476
2578
  title: Labels
2579
+ description: Key/value pairs that are attached to objects which specify identifying attributes.
2477
2580
  fleetClusterTooltip: Label changes are made to the Management Cluster and synchronized to the Fleet Cluster
2581
+ show: Show System Label
2582
+ hide: Hide System Label
2478
2583
  annotations:
2479
2584
  title: Annotations
2480
2585
 
@@ -2522,13 +2627,39 @@ logging:
2522
2627
  doesntExistTooltip: This cluster output doesn't exist
2523
2628
  label: Cluster Outputs
2524
2629
  matches:
2630
+ banner: Configure which container logs will be pulled from
2631
+ unsupportedConfig: This resource contains a match configuration that the form editor does not support. Please use YAML edit.
2525
2632
  label: Matches
2526
2633
  addSelect: Add Include Rule
2527
2634
  addExclude: Add Exclude Rule
2635
+ pods:
2636
+ title:
2637
+ include: Include Pods
2638
+ exclude: Exclude Pods
2639
+ keyLabel: Pod Label Key
2640
+ valueLabel: Pod Label Value
2641
+ addLabel: Add Pod
2642
+ nodes:
2643
+ title:
2644
+ include: Limit to specific nodes
2645
+ exclude: Exclude specific nodes
2646
+ placeholder: "Default: Any node"
2647
+ containerNames:
2648
+ title:
2649
+ include: Limit to specific container names
2650
+ exclude: Exclude specific container names
2651
+ placeholder: "Default: Any container"
2652
+ namespaces:
2653
+ title:
2654
+ include: Limit to specific namespaces
2655
+ exclude: Exclude specific namespaces
2656
+ placeholder: "Default: Any namespace"
2657
+
2528
2658
  filters:
2529
2659
  label: Filters
2530
2660
  outputs:
2531
2661
  doesntExistTooltip: This output doesn't exist
2662
+ sameNamespaceError: Output must reside in same namespace as the flow.
2532
2663
  label: Outputs
2533
2664
  install:
2534
2665
  k3sContainerEngine: K3S Container Engine
@@ -2794,6 +2925,7 @@ managementNode:
2794
2925
 
2795
2926
  members:
2796
2927
  clusterMembers: Cluster Members
2928
+ clusterAndProject: Cluster and Project Members
2797
2929
  createActionLabel: Add
2798
2930
  clusterPermissions:
2799
2931
  noDescription: User created - no description
@@ -2820,6 +2952,7 @@ members:
2820
2952
  label: Custom
2821
2953
  description: Choose individual roles for this user.
2822
2954
  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."
2955
+ noRolesAssigned: There are no users assigned to this project.
2823
2956
 
2824
2957
  membershipEditor:
2825
2958
  label: Members
@@ -2852,6 +2985,8 @@ monitoring:
2852
2985
  new: Create default config
2853
2986
  radio:
2854
2987
  label: Config Secret
2988
+ validation:
2989
+ duplicatedReceiverName: A receiver with the name {name} already exists.
2855
2990
  templates:
2856
2991
  keyLabel: File Name
2857
2992
  label: Template Files
@@ -2998,6 +3133,7 @@ monitoring:
2998
3133
  editYaml: Edit AlertmanagerConfig
2999
3134
  detail: Receiver in AlertmanagerConfig
3000
3135
  disabledReceiverButton: The receiver form is available after the AlertmanagerConfig is created
3136
+ error: An error occurred saving the AlertmanagerConfig
3001
3137
  email:
3002
3138
  username: Auth Username
3003
3139
  password: Secret with Auth Password
@@ -3360,6 +3496,8 @@ persistentVolume:
3360
3496
  label: Plugin configuration
3361
3497
  plugin:
3362
3498
  label: Volume Plugin
3499
+ inTree: in-tree plugin
3500
+ unsupported: (Unsupported)
3363
3501
  capacity:
3364
3502
  label: Capacity
3365
3503
  customize:
@@ -3407,6 +3545,7 @@ persistentVolume:
3407
3545
  placeholder: e.g. sp1
3408
3546
  csi:
3409
3547
  label: CSI (Unsupported)
3548
+ suffix: (CSI)
3410
3549
  driver:
3411
3550
  label: Driver
3412
3551
  placeholder: e.g. driver.longhorn.io
@@ -3439,6 +3578,21 @@ persistentVolume:
3439
3578
  controllerPublishSecretNamespace:
3440
3579
  label: Controller Publish Secret Namespace
3441
3580
  placeholder: e.g. default
3581
+ drivers:
3582
+ disk-csi-azure-com: Azure Disk (CSI)
3583
+ file-csi-azure-com: Azure File (CSI)
3584
+ driver-longhorn-io: Longhorn (CSI)
3585
+ driver-harvesterhci-io: Harvester (CSI)
3586
+ nfs-csi-k8s-io: NFS (CSI)
3587
+ ebs-csi-aws-com: AWS Elastic Block Store (CSI)
3588
+ rbd-csi-ceph-com: Ceph RBD (CSI)
3589
+ org-gluster-glusterfs: GlusterFS (CSI)
3590
+ pd-csi-storage-gke-io: GCE Persistent Disk (CSI)
3591
+ cinder-csi-openstack-org: Cinder (CSI)
3592
+ pxd-portworx-com: Portworx (CSI)
3593
+ quobyte-csi: Quobyte (CSI)
3594
+ storageos: StorageOS (CSI)
3595
+ csi-vsphere-vmware-com: vSphere (CSI)
3442
3596
  cephfs:
3443
3597
  label: Ceph Filesystem (Unsupported)
3444
3598
  path:
@@ -3699,6 +3853,7 @@ podDisruptionBudget:
3699
3853
  maxUnavailable:
3700
3854
  label: Max. unavailable Pods
3701
3855
 
3856
+
3702
3857
  # Rancher Extensions
3703
3858
  plugins:
3704
3859
  labels:
@@ -3792,6 +3947,27 @@ plugins:
3792
3947
  crd:
3793
3948
  title: Remove the Rancher Extensions Custom Resource Definition
3794
3949
  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.
3950
+ podSecurityAdmission:
3951
+ name: Pod Security Admission
3952
+ description: Define the admission control mode you want to use for the pod security
3953
+ banner:
3954
+ modifications: 'Note: Modifying a Pod Security Admission Configuration Template will not affect any downstream cluster that references it until there is a cluster update'
3955
+ labels:
3956
+ enforce: Enforce
3957
+ audit: Audit
3958
+ warn: Warn
3959
+ usernames: Usernames
3960
+ runtimeClasses: RuntimeClasses
3961
+ namespaces: Namespaces
3962
+ privileged: privileged
3963
+ baseline: baseline
3964
+ restricted: restricted
3965
+ version:
3966
+ placeholder: 'Version (default: latest)'
3967
+ exemptions:
3968
+ title: Exemptions
3969
+ description: Allow the creation of pods for specific Usernames, RuntimeClassNames, and Namespaces that would otherwise be prohibited due to the policies set above.
3970
+ placeholder: Enter a comma separated list of {psaExemptionsControl}
3795
3971
  prefs:
3796
3972
  title: Preferences
3797
3973
  theme:
@@ -3837,6 +4013,9 @@ prefs:
3837
4013
  'true': Include Prerelease Versions
3838
4014
  'false': Show Releases Only
3839
4015
  label: Helm Charts
4016
+ confirmationSetting:
4017
+ title: Confirmation Setting
4018
+ scalingDownPrompt: Do not ask for confirmation when scaling down node pools.
3840
4019
 
3841
4020
  principal:
3842
4021
  loading: Loading&hellip;
@@ -4015,11 +4194,13 @@ promptRemove:
4015
4194
  other { and <b>{count} others</b>.}
4016
4195
  }
4017
4196
  attemptingToRemove: "You are attempting to delete the {type}"
4197
+ 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?"
4018
4198
  protip: "Tip: Hold the {alternateLabel} key while clicking delete to bypass this confirmation"
4019
4199
  confirmName: "Enter <b>{nameToMatch}</b> below to confirm:"
4020
4200
  deleteAssociatedNamespaces: "Also delete the namespaces in this project:"
4021
4201
  willDeleteAssociatedNamespaces: "This will also delete all namespaces in the project: "
4022
4202
  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}?"
4203
+ promptConfirmation: "Do not prompt again for confirmation when scaling down."
4023
4204
 
4024
4205
  promptRemoveApp:
4025
4206
  removeCrd: "Delete the CRD associated with this app"
@@ -4274,6 +4455,8 @@ resourceList:
4274
4455
  create: Create
4275
4456
  createFromYaml: Create from YAML
4276
4457
  createResource: "Create {resourceName}"
4458
+ nsFiltering: "There are too many {resource}.<br>Please filter them by selecting a Namespace above."
4459
+ nsFilterToolTip: "There are too many resources, filtering is restricted to a single {mode}."
4277
4460
  resourceLoadingIndicator:
4278
4461
  loading: Loading
4279
4462
 
@@ -4457,6 +4640,9 @@ serviceTypes:
4457
4640
  nodeport: Node Port
4458
4641
 
4459
4642
  servicesPage:
4643
+ serviceListDescription: Services allow you to define a logical set of Pods that can be accessed with a single IP address and port.
4644
+ targetPorts: The Service will send requests to this port, and the selected Pods are expected to listen on this port.
4645
+ listeningPorts: The Service is exposed on this port.
4460
4646
  anyNode: Any Node
4461
4647
  labelsAnnotations:
4462
4648
  label: Labels & Annotations
@@ -4519,6 +4705,7 @@ servicesPage:
4519
4705
  helpText: ""
4520
4706
  label: Selectors
4521
4707
  matchingPods:
4708
+ description: Selector keys and values are intended to match labels and values on existing Pods.
4522
4709
  matchesSome: |-
4523
4710
  {matched, plural,
4524
4711
  =0 {Matches 0 of {total, number} pods. If no selector is created, manual endpoints must be made.}
@@ -4528,23 +4715,23 @@ servicesPage:
4528
4715
  serviceTypes:
4529
4716
  clusterIp:
4530
4717
  abbrv: IP
4531
- 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.
4718
+ 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.
4532
4719
  label: Cluster IP
4533
4720
  externalName:
4534
4721
  abbrv: EN
4535
- 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."
4722
+ description: Create a Service that uses a DNS name instead of selectors. This is an advanced use case.
4536
4723
  label: External Name
4537
4724
  headless:
4538
4725
  abbrv: H
4539
- 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.
4726
+ description: Create a Service without a cluster IP or load balancer. This is an advanced use case.
4540
4727
  label: Headless
4541
4728
  loadBalancer:
4542
4729
  abbrv: LB
4543
- description: Exposes the service externally using a cloud provider's load balancer.
4730
+ 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.
4544
4731
  label: Load Balancer
4545
4732
  nodePort:
4546
4733
  abbrv: NP
4547
- 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;`."
4734
+ description: "Expose the service on each node's IP at a static port."
4548
4735
  label: Node Port
4549
4736
  typeOpts:
4550
4737
  label: Service Type
@@ -4696,7 +4883,7 @@ storageClass:
4696
4883
  zonal: Zonal
4697
4884
  regional: Regional
4698
4885
  longhorn:
4699
- title: Longhorn
4886
+ title: Longhorn (CSI)
4700
4887
  addLabel: Add Parameter
4701
4888
  vsphere-volume:
4702
4889
  title: VMWare vSphere Volume
@@ -4723,7 +4910,7 @@ storageClass:
4723
4910
  custom:
4724
4911
  addLabel: Add Parameter
4725
4912
  glusterfs:
4726
- title: Gluster Volume (Unsupported)
4913
+ title: Gluster Volume
4727
4914
  restUrl:
4728
4915
  label: REST URL
4729
4916
  placeholder: e.g. http://127.0.0.1:8081
@@ -4752,7 +4939,7 @@ storageClass:
4752
4939
  label: Volume Type
4753
4940
  placeholder: "e.g. replicate:3"
4754
4941
  cinder:
4755
- title: Openstack Cinder Volume (Unsupported)
4942
+ title: Openstack Cinder Volume
4756
4943
  volumeType:
4757
4944
  label: Volume Type
4758
4945
  placeholder: e.g. fast
@@ -4763,7 +4950,7 @@ storageClass:
4763
4950
  label: "Manual: Choose specific zones"
4764
4951
  placeholder: e.g. nova
4765
4952
  rbd:
4766
- title: Ceph RBD (Unsupported)
4953
+ title: Ceph RBD
4767
4954
  monitors:
4768
4955
  label: Monitors
4769
4956
  placeholder: e.g. 10.16.153.105:6789
@@ -4798,7 +4985,7 @@ storageClass:
4798
4985
  label: Image Features
4799
4986
  placeholder: e.g. layering
4800
4987
  quobyte:
4801
- title: Quobyte Volume (Unsupported)
4988
+ title: Quobyte Volume
4802
4989
  quobyteApiServer:
4803
4990
  label: Quobyte API Server
4804
4991
  placeholder: "e.g. http://138.68.74.142:7860"
@@ -4824,7 +5011,7 @@ storageClass:
4824
5011
  label: Quobyte Tenant
4825
5012
  placeholder: e.g. DEFAULT
4826
5013
  portworx-volume:
4827
- title: Portworx Volume (Unsupported)
5014
+ title: Portworx Volume
4828
5015
  filesystem:
4829
5016
  label: Filesystem
4830
5017
  placeholder: e.g. ext4
@@ -4847,7 +5034,7 @@ storageClass:
4847
5034
  label: Ephemeral
4848
5035
  placeholder: e.g. true
4849
5036
  scaleio:
4850
- title: ScaleIO Volume (Unsupported)
5037
+ title: ScaleIO Volume
4851
5038
  gateway:
4852
5039
  label: Gateway
4853
5040
  placeholder: e.g. https://192.168.99.200:443/api
@@ -4873,7 +5060,7 @@ storageClass:
4873
5060
  label: Filesystem Type
4874
5061
  placeholder: e.g. xfs
4875
5062
  storageos:
4876
- title: StorageOS (Unsupported)
5063
+ title: StorageOS
4877
5064
  pool:
4878
5065
  label: Pool
4879
5066
  placeholder: e.g. default
@@ -4890,50 +5077,94 @@ storageClass:
4890
5077
  label: Admin Secret Name
4891
5078
  placeholder: e.g. storageos-secret
4892
5079
  no-provisioner:
4893
- title: Local Storage (Unsupported)
5080
+ title: Local Storage
5081
+ deprecated:
5082
+ title: (Deprecated)
5083
+ 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>'
5084
+ harvesterhci:
5085
+ title: Harvester (CSI)
5086
+ warning:
5087
+ unSatisfiesVersion: Please upgrade your Harvester CSI driver version to use this feature. (csi-driver >= v0.1.15)
5088
+ hostStorageClass:
5089
+ label: Host Storage Class
5090
+ placeholder: Storage class name on the host Harvester cluster
5091
+ tooltip: By default the default storage class on the host Harvester cluster is used.
4894
5092
 
4895
5093
  tableHeaders:
5094
+ assuredConcurrencyShares: Assured Concurrency Shares
4896
5095
  accessKey: Access Key
5096
+ addressType: Address Type
5097
+ accessModes: Access Modes
4897
5098
  address: Address
4898
5099
  age: Age
4899
5100
  apiGroup: API Groups
5101
+ apikey: API Key
5102
+ available: Available
5103
+ attachedVM: Attached VM
5104
+
4900
5105
  authRoles:
4901
5106
  globalDefault: New User Default
4902
5107
  clusterDefault: Cluster Creator Default
4903
5108
  projectDefault: Project Creator Default
4904
5109
  branch: Branch
5110
+ backupTarget: Backup Target
4905
5111
  builtIn: Built In
4906
5112
  bundlesReady: Bundles Ready
4907
5113
  bundleDeploymentsReady: Deployments
4908
5114
  builtin: Built-In
4909
5115
  chart: Chart
5116
+ capacity: Capacity
5117
+ current: Current
4910
5118
  clusterCreatorDefault: Cluster Creator Default
4911
5119
  clusterFlow: Cluster Flow
4912
5120
  clusterOutput: Cluster Output
4913
5121
  cluster: Cluster
4914
5122
  clusters: Clusters
5123
+ cluster-Name: Cluster
4915
5124
  clustersReady: Clusters Ready
4916
5125
  clusterGroups: Cluster Groups
4917
5126
  commit: Commit
4918
5127
  condition: Condition
5128
+ completions: Completions
5129
+ count: Count
5130
+ createdAt: Created At
4919
5131
  customVerbs: Custom Verbs
4920
5132
  description: Description
4921
- duration: Duration
4922
5133
  expires: Expires
4923
- providers: Providers
4924
5134
  cpu: CPU
5135
+ currentReplicas: Current Replicas
4925
5136
  date: Date
5137
+ data: Data
4926
5138
  default: Default
5139
+ desired: Desired
5140
+ defaultVersion: Default version
4927
5141
  destination: Target
5142
+ deployed: Deployed
4928
5143
  download: Download
5144
+ duration: Duration
5145
+ diskState: Disk State
5146
+ drivers: Drivers
5147
+ distinguisherMethod: Distinguisher Method
4929
5148
  effect: Effect
4930
5149
  endpoints: Endpoints
5150
+ firstSeen: First Seen
4931
5151
  fleetBundleType: Type
4932
5152
  flow: Flow
5153
+ fingerprint: Fingerprint
4933
5154
  gitRepos: Git Repos
5155
+ groups: Groups
5156
+ groupName: Group Name
5157
+ groupRoleNames: Group Role Names
5158
+ global-Default: Global-Default
4934
5159
  host: Host
5160
+ hostIp: Host IP
5161
+ holder: Holder
5162
+ hpaReference: Workload
4935
5163
  health: Health
5164
+ handSize: Hand Size
5165
+ ipAddress: IP Address
4936
5166
  id: ID
5167
+ iP: IP
4937
5168
  image: Image
4938
5169
  imageSize: Size
4939
5170
  ingressClass: Ingress Class
@@ -4941,28 +5172,39 @@ tableHeaders:
4941
5172
  ingressTarget: Target
4942
5173
  internalExternalIp: External/Internal IP
4943
5174
  ipaddress: IP Address
5175
+ internalIpSameAsExternal: Same as External
4944
5176
  jobs: Jobs
4945
5177
  key: Key
4946
5178
  keys: Data
5179
+ labels: Labels
4947
5180
  lastUpdated: Last Updated
5181
+ lastSchedule: Last Schedule
4948
5182
  lastSeen: Last Seen
5183
+ lastSeenTooltip: The time at which the most recent occurrence of this event was recorded
4949
5184
  loggingOutputProviders: Provider
4950
5185
  machines: Machines
4951
5186
  machineNodeName: Node
4952
5187
  manual: Manual
4953
5188
  matches: Matches
5189
+ matchingPrecedence: Matching Precedence
4954
5190
  maxKubernetesVersion: Max Kubernetes Version
4955
5191
  message: Message
4956
5192
  minKubernetesVersion: Min Kubernetes Version
5193
+ minReplicas: Minimum Replicas
5194
+ maxReplicas: Maximum Replicas
5195
+ missingPL: MissingPL
4957
5196
  memory: Memory
5197
+ monitored: Monitored
4958
5198
  name: Name
4959
5199
  nameDisplay: Display Name
4960
5200
  nameUnlinked: Name
4961
5201
  namespace: Namespace
4962
5202
  namespaceName: Name
4963
5203
  namespaceNameUnlinked: Name
5204
+ networkType: Type
5205
+ networkVlan: Vlan ID
4964
5206
  node: Node
4965
- nodeName: Name
5207
+ nodeName: Node Name
4966
5208
  nodesReady: Nodes Ready
4967
5209
  nodePort: Node Port
4968
5210
  object: Object
@@ -4971,14 +5213,23 @@ tableHeaders:
4971
5213
  p95: 95%tile
4972
5214
  persistentVolumeClaim: Persistent Volume Claim
4973
5215
  persistentVolumeSource: Source
5216
+ phase: Phase
5217
+ progress: Progress
4974
5218
  podImages: Image
4975
5219
  podRestarts: Restarts
4976
5220
  pods: Pods
5221
+ pod-Selector: Pod-Selector
5222
+ providers: Providers
5223
+ providerID: Provider ID
4977
5224
  port: Port
5225
+ ports: Ports
4978
5226
  project: Project
4979
5227
  protocol: Protocol
4980
5228
  provider: Provider
5229
+ priorityLevel: Priority Level
4981
5230
  publicPorts: Public Ports
5231
+ queues: Queues
5232
+ queueLengthLimit: Queue Length Limit
4982
5233
  ram: RAM
4983
5234
  rbac:
4984
5235
  create: Create
@@ -5004,12 +5255,20 @@ tableHeaders:
5004
5255
  resources: Resources
5005
5256
  resourcesReady: Resources Ready
5006
5257
  restarts: Restarts
5258
+ restart: Restart Required
5007
5259
  role: Role
5008
5260
  roles: Roles
5009
5261
  routes: Routes
5262
+ routeConnectivity: Route Connectivity
5263
+ readyToUse: Ready To Use
5010
5264
  scale: Scale
5011
5265
  scope: Scope
5012
5266
  selector: Selector
5267
+ secrets: Secrets
5268
+ schedule: Schedule
5269
+ service: Service
5270
+ serviceAccounts: Service Accounts
5271
+ secret-Name: Secret-Name
5013
5272
  simpleName: Name
5014
5273
  simpleScale: Scale
5015
5274
  simpleType: Type
@@ -5017,51 +5276,35 @@ tableHeaders:
5017
5276
  started: Started
5018
5277
  state: State
5019
5278
  status: Status
5279
+ targetVm: Target VM
5020
5280
  storage_class_provisioner: Provisioner
5281
+ storage: Storage Size
5282
+ storageClass: Storage Class
5283
+ source: Source
5021
5284
  subject: Subject
5022
5285
  subType: Kind
5023
5286
  success: Success
5024
5287
  summary: Summary
5288
+ subobject: Subobject
5025
5289
  taints: Taints
5026
5290
  target: Target
5027
5291
  targetKind: Target Type
5028
5292
  targetPort: Target
5029
5293
  type: Type
5030
5294
  updated: Updated
5295
+ up-to-date: Up To Date
5031
5296
  upgrade: Upgradable
5032
5297
  url: URL
5298
+ users: Users
5033
5299
  userDisplayName: Display Name
5034
5300
  userId: ID
5035
5301
  userStatus: Status
5036
5302
  username: Local Username
5037
5303
  value: Value
5038
5304
  version: Version
5305
+ volume: Volume
5306
+ volumeMode: Volume Mode
5039
5307
  weight: Weight
5040
- progress: Progress
5041
- fingerprint: Fingerprint
5042
- networkType: Type
5043
- networkVlan: Vlan ID
5044
- readyToUse: Ready To Use
5045
- backupTarget: Backup Target
5046
- targetVm: Target VM
5047
- phase: Phase
5048
- attachedVM: Attached VM
5049
- hostIp: Host IP
5050
- storage: Storage Size
5051
- defaultVersion: Default version
5052
- ipAddress: IP Address
5053
- diskState: Disk State
5054
- routeConnectivity: Route Connectivity
5055
- hpaReference: Workload
5056
- minReplicas: Minimum Replicas
5057
- maxReplicas: Maximum Replicas
5058
- currentReplicas: Current Replicas
5059
- data: Data
5060
- apikey: API Key
5061
- groupName: Group Name
5062
- groupRoleNames: Group Role Names
5063
- restart: Restart Required
5064
-
5065
5308
  target:
5066
5309
  router:
5067
5310
  label: Router
@@ -5175,6 +5418,8 @@ validation:
5175
5418
  noType: No type to validate
5176
5419
  number:
5177
5420
  requiredInt: '"{key}" must be integer'
5421
+ isPositive: '"{key}" must be positive'
5422
+ isOctal: '"{key}" must have no leading zeros'
5178
5423
  between: '"{key}" should be between {min} and {max}'
5179
5424
  exactly: '"{key}" should be exactly {val}'
5180
5425
  max: '"{key}" should be at most {val}'
@@ -5402,6 +5647,10 @@ workload:
5402
5647
  noPorts: There are no ports configured.
5403
5648
  noServiceAccess: You do not have permission to create or manage services
5404
5649
  ports:
5650
+ expose: Networking
5651
+ 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.'
5652
+ detailedDescription: If ClusterIP, LoadBalancer, or NodePort is selected, a Service is automatically created that will select the Pods in this workload using labels.
5653
+ 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.'
5405
5654
  createService: Service Type
5406
5655
  noCreateService: Do not create a service
5407
5656
  containerPort: Private Container Port
@@ -5660,6 +5909,7 @@ workload:
5660
5909
  gcePersistentDisk: Google Persistent Disk
5661
5910
  driver.longhorn.io: Longhorn
5662
5911
  vsphereVolume: VMWare vSphere Volume
5912
+ emptyDir: Empty Dir
5663
5913
  addClaim: Add Claim
5664
5914
  addMount: Add Mount
5665
5915
  addVolume: Add Volume
@@ -5719,6 +5969,14 @@ workload:
5719
5969
  title: 'Storage'
5720
5970
  volumeName: Volume Name
5721
5971
  volumePath: Volume Path
5972
+ emptyDir:
5973
+ medium:
5974
+ label: Medium
5975
+ default: Node's Default Medium
5976
+ memory: Memory
5977
+ sizeLimit:
5978
+ label: Size Limit
5979
+ placeholder: "e.g. 300"
5722
5980
  typeDescriptions:
5723
5981
  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.
5724
5982
  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.
@@ -5768,15 +6026,7 @@ workload:
5768
6026
  pod: Pod
5769
6027
  containers: Containers
5770
6028
 
5771
- harvesterManager:
5772
- manage: Manage
5773
- cluster:
5774
- label: Harvester Clusters
5775
- none: There are no Harvester Clusters
5776
- 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>
5777
- 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.
5778
- plugins:
5779
- loadError: Error loading harvester plugin
6029
+
5780
6030
 
5781
6031
  ##############################
5782
6032
  # Model Properties
@@ -5988,6 +6238,26 @@ typeLabel:
5988
6238
  one { Workspace }
5989
6239
  other { Workspaces }
5990
6240
  }
6241
+ management.cattle.io.podsecurityadmissionconfigurationtemplate: |-
6242
+ {count, plural,
6243
+ one { Pod Security Admission }
6244
+ other { Pod Security Admissions }
6245
+ }
6246
+ policy.poddisruptionbudget: |-
6247
+ {count, plural,
6248
+ one { Pod Disruption Budget }
6249
+ other { Pod Disruption Budgets }
6250
+ }
6251
+ limitrange: |-
6252
+ {count, plural,
6253
+ one { Limit Range }
6254
+ other { Limit Ranges }
6255
+ }
6256
+ resourcequota: |-
6257
+ {count, plural,
6258
+ one { Resource Quota }
6259
+ other { Resource Quotas }
6260
+ }
5991
6261
  # pruh-mee-thee-eyes https://www.prometheus.io/docs/introduction/faq/#what-is-the-plural-of-prometheus
5992
6262
  monitoring.coreos.com.prometheus: |-
5993
6263
  {count, plural,
@@ -6011,7 +6281,7 @@ typeLabel:
6011
6281
  }
6012
6282
  monitoring.coreos.com.alertmanagerconfig: |-
6013
6283
  {count, plural,
6014
- one { AlertmanagerConfigs }
6284
+ one { AlertmanagerConfig }
6015
6285
  other { AlertmanagerConfigs }
6016
6286
  }
6017
6287
  monitoring.coreos.com.podmonitor: |-
@@ -6054,10 +6324,10 @@ typeLabel:
6054
6324
  one { Cluster }
6055
6325
  other { Clusters }
6056
6326
  }
6057
- 'management.cattle.io.user': |-
6327
+ management.cattle.io.user: |-
6058
6328
  {count, plural,
6059
6329
  one { User }
6060
- other { Users }
6330
+ other { Users}
6061
6331
  }
6062
6332
  namespace: |-
6063
6333
  {count, plural,
@@ -6069,6 +6339,136 @@ typeLabel:
6069
6339
  one { Node }
6070
6340
  other { Nodes }
6071
6341
  }
6342
+ event: |-
6343
+ {count, plural,
6344
+ one { Event }
6345
+ other { Events }
6346
+ }
6347
+ apps.deployment: |-
6348
+ {count, plural,
6349
+ one { Deployment }
6350
+ other { Deployments }
6351
+ }
6352
+ batch.cronjob: |-
6353
+ {count, plural,
6354
+ one { CronJob }
6355
+ other { CronJobs }
6356
+ }
6357
+ apps.daemonset: |-
6358
+ {count, plural,
6359
+ one { DaemonSet }
6360
+ other { DaemonSets }
6361
+ }
6362
+ batch.job: |-
6363
+ {count, plural,
6364
+ one { Job }
6365
+ other { Jobs }
6366
+ }
6367
+ apps.statefulset: |-
6368
+ {count, plural,
6369
+ one { StatefulSet }
6370
+ other { StatefulSets }
6371
+ }
6372
+ pod: |-
6373
+ {count, plural,
6374
+ one { Pod }
6375
+ other { Pods }
6376
+ }
6377
+ autoscaling.horizontalpodautoscaler: |-
6378
+ {count, plural,
6379
+ one { HorizontalPodAutoscaler }
6380
+ other { HorizontalPodAutoscalers }
6381
+ }
6382
+ networking.k8s.io.ingress: |-
6383
+ {count, plural,
6384
+ one { Ingress }
6385
+ other { Ingresses }
6386
+ }
6387
+ networking.k8s.io.networkpolicy: |-
6388
+ {count, plural,
6389
+ one { Network Policy }
6390
+ other { Network Policies }
6391
+ }
6392
+ service: |-
6393
+ {count, plural,
6394
+ one { Service }
6395
+ other { Services }
6396
+ }
6397
+ persistentvolume: |-
6398
+ {count, plural,
6399
+ one { PersistentVolume }
6400
+ other { PersistentVolumes }
6401
+ }
6402
+ storage.k8s.io.storageclass: |-
6403
+ {count, plural,
6404
+ one { StorageClass }
6405
+ other { StorageClasses }
6406
+ }
6407
+ configmap: |-
6408
+ {count, plural,
6409
+ one { ConfigMap }
6410
+ other { ConfigMaps }
6411
+ }
6412
+ persistentvolumeclaim: |-
6413
+ {count, plural,
6414
+ one { PersistentVolumeClaim }
6415
+ other { PersistentVolumeClaims }
6416
+ }
6417
+ secret: |-
6418
+ {count, plural,
6419
+ one { Secret }
6420
+ other { Secrets }
6421
+ }
6422
+ apiregistration.k8s.io.apiservice: |-
6423
+ {count, plural,
6424
+ one { APIService }
6425
+ other { APIServices }
6426
+ }
6427
+ apiextensions.k8s.io.customresourcedefinition: |-
6428
+ {count, plural,
6429
+ one { CustomResourceDefinition }
6430
+ other { CustomResourceDefinitions }
6431
+ }
6432
+ flowcontrol.apiserver.k8s.io.flowschema: |-
6433
+ {count, plural,
6434
+ one { FlowSchema }
6435
+ other { FlowSchemas }
6436
+ }
6437
+ flowcontrol.apiserver.k8s.io.prioritylevelconfiguration: |-
6438
+ {count, plural,
6439
+ one { PriorityLevelConfiguration }
6440
+ other { PriorityLevelConfigurations }
6441
+ }
6442
+ apps.replicaset: |-
6443
+ {count, plural,
6444
+ one { ReplicaSet }
6445
+ other { ReplicaSets }
6446
+ }
6447
+ coordination.k8s.io.lease: |-
6448
+ {count, plural,
6449
+ one { Lease }
6450
+ other { Leases }
6451
+ }
6452
+ serviceaccount: |-
6453
+ {count, plural,
6454
+ one { ServiceAccount }
6455
+ other { ServiceAccounts }
6456
+ }
6457
+ discovery.k8s.io.endpointslice: |-
6458
+ {count, plural,
6459
+ one { EndpointSlice }
6460
+ other { EndpointSlices }
6461
+ }
6462
+ admissionregistration.k8s.io.mutatingwebhookconfiguration: |-
6463
+ {count, plural,
6464
+ one { MutatingWebhookConfiguration }
6465
+ other { MutatingWebhookConfigurations }
6466
+ }
6467
+ admissionregistration.k8s.io.validatingwebhookconfiguration: |-
6468
+ {count, plural,
6469
+ one { ValidatingWebhookConfiguration }
6470
+ other { ValidatingWebhookConfigurations }
6471
+ }
6072
6472
  group.principal: |-
6073
6473
  {count, plural,
6074
6474
  one { Group }
@@ -6089,11 +6489,186 @@ typeLabel:
6089
6489
  one { Harvester Cluster }
6090
6490
  other { Harvester Clusters }
6091
6491
  }
6492
+ harvesterhci.io.cloudtemplate: |-
6493
+ {count, plural,
6494
+ one { Cloud Config Template }
6495
+ other { Cloud Config Templates }
6496
+ }
6497
+ fleet.cattle.io.content: |-
6498
+ {count, plural,
6499
+ one { Content }
6500
+ other { Contents }
6501
+ }
6092
6502
  fleet.cattle.io.bundle: |-
6093
6503
  {count, plural,
6094
6504
  one { Bundle }
6095
6505
  other { Bundles }
6096
6506
  }
6507
+ fleet.cattle.io.bundledeployment: |-
6508
+ {count, plural,
6509
+ one { BundleDeployment }
6510
+ other { BundleDeployments }
6511
+ }
6512
+ k3s.cattle.io.addon: |-
6513
+ {count, plural,
6514
+ one { Addon }
6515
+ other { Addons }
6516
+ }
6517
+ management.cattle.io.apiservice: |-
6518
+ {count, plural,
6519
+ one { APIService }
6520
+ other { APIServices }
6521
+ }
6522
+ management.cattle.io.catalog: |-
6523
+ {count, plural,
6524
+ one { Catalog }
6525
+ other { Catalogs }
6526
+ }
6527
+ fleet.cattle.io.clusterregistration: |-
6528
+ {count, plural,
6529
+ one { ClusterRegistration }
6530
+ other { ClusterRegistrations }
6531
+ }
6532
+ management.cattle.io.dynamicschema: |-
6533
+ {count, plural,
6534
+ one { DynamicSchema }
6535
+ other { DynamicSchemas }
6536
+ }
6537
+ management.cattle.io.globalrolebinding: |-
6538
+ {count, plural,
6539
+ one { GlobalRoleBinding }
6540
+ other { GlobalRoleBindings }
6541
+ }
6542
+ management.cattle.io.kontainerdriver: |-
6543
+ {count, plural,
6544
+ one { KontainerDriver }
6545
+ other { KontainerDrivers }
6546
+ }
6547
+ management.cattle.io.nodedriver: |-
6548
+ {count, plural,
6549
+ one { NodeDriver }
6550
+ other { NodeDrivers }
6551
+ }
6552
+ management.cattle.io.podsecuritypolicytemplate: |-
6553
+ {count, plural,
6554
+ one { PodSecurityPolicyTemplate }
6555
+ other { PodSecurityPolicyTemplates }
6556
+ }
6557
+ management.cattle.io.userattribute: |-
6558
+ {count, plural,
6559
+ one { UserAttribute }
6560
+ other { UserAttributes }
6561
+ }
6562
+ management.cattle.io.catalogtemplate: |-
6563
+ {count, plural,
6564
+ one { CatalogTemplate }
6565
+ other { CatalogTemplates }
6566
+ }
6567
+ management.cattle.io.catalogtemplateversion: |-
6568
+ {count, plural,
6569
+ one { CatalogTemplateVersion }
6570
+ other { CatalogTemplateVersions }
6571
+ }
6572
+ management.cattle.io.cisbenchmarkversion: |-
6573
+ {count, plural,
6574
+ one { CisBenchmarkVersion }
6575
+ other { CisBenchmarkVersions }
6576
+ }
6577
+ management.cattle.io.cisconfig: |-
6578
+ {count, plural,
6579
+ one { CisConfig }
6580
+ other { CisConfigs }
6581
+ }
6582
+ management.cattle.io.clusteralertgroup: |-
6583
+ {count, plural,
6584
+ one { ClusterAlertGroup }
6585
+ other { ClusterAlertGroups }
6586
+ }
6587
+ management.cattle.io.clusteralertrule: |-
6588
+ {count, plural,
6589
+ one { ClusterAlertRule }
6590
+ other { ClusterAlertRules }
6591
+ }
6592
+ management.cattle.io.clusterregistrationtoken: |-
6593
+ {count, plural,
6594
+ one { ClusterRegistrationToken }
6595
+ other { ClusterRegistrationTokens }
6596
+ }
6597
+ management.cattle.io.node: |-
6598
+ {count, plural,
6599
+ one { Node }
6600
+ other { Nodes }
6601
+ }
6602
+ management.cattle.io.projectalertgroup: |-
6603
+ {count, plural,
6604
+ one { ProjectAlertGroup }
6605
+ other { ProjectAlertGroups }
6606
+ }
6607
+ management.cattle.io.projectalertrule: |-
6608
+ {count, plural,
6609
+ one { ProjectAlertRule }
6610
+ other { ProjectAlertRules }
6611
+ }
6612
+ management.cattle.io.rkeaddon: |-
6613
+ {count, plural,
6614
+ one { RkeAddon }
6615
+ other { RkeAddons }
6616
+ }
6617
+ management.cattle.io.rkek8sserviceoption: |-
6618
+ {count, plural,
6619
+ one { RkeK8sServiceOption }
6620
+ other { RkeK8sServiceOptions }
6621
+ }
6622
+ management.cattle.io.rkek8ssystemimage: |-
6623
+ {count, plural,
6624
+ one { RkeK8sSystemImage }
6625
+ other { RkeK8sSystemImages }
6626
+ }
6627
+ rbac.authorization.k8s.io.clusterrolebinding: |-
6628
+ {count, plural,
6629
+ one { ClusterRoleBinding }
6630
+ other { ClusterRoleBindings }
6631
+ }
6632
+ rbac.authorization.k8s.io.clusterrole: |-
6633
+ {count, plural,
6634
+ one { ClusterRole }
6635
+ other { ClusterRoles }
6636
+ }
6637
+ rbac.authorization.k8s.io.rolebinding: |-
6638
+ {count, plural,
6639
+ one { RoleBinding }
6640
+ other { RoleBindings }
6641
+ }
6642
+ rbac.authorization.k8s.io.role: |-
6643
+ {count, plural,
6644
+ one { Role }
6645
+ other { Roles }
6646
+ }
6647
+ scheduling.k8s.io.priorityclass: |-
6648
+ {count, plural,
6649
+ one { PriorityClass }
6650
+ other { PriorityClasses }
6651
+ }
6652
+ storage.k8s.io.csinode: |-
6653
+ {count, plural,
6654
+ one { CSINode }
6655
+ other { CSINodes }
6656
+ }
6657
+ cluster.x-k8s.io.machinedeployment: |-
6658
+ {count, plural,
6659
+ one { MachineDeployment }
6660
+ other { MachineDeployments }
6661
+ }
6662
+ cluster.x-k8s.io.machineset: |-
6663
+ {count, plural,
6664
+ one { MachineSet }
6665
+ other { MachineSets }
6666
+ }
6667
+ cluster.x-k8s.io.machine: |-
6668
+ {count, plural,
6669
+ one { Machine }
6670
+ other { Machines }
6671
+ }
6097
6672
  fleet.cattle.io.clusterregistrationtoken: |-
6098
6673
  {count, plural,
6099
6674
  one { Cluster Registration Token }
@@ -6142,7 +6717,7 @@ unit:
6142
6717
  other { days }
6143
6718
  }
6144
6719
  workloadPorts:
6145
- addPort: Add Port
6720
+ addPort: Add Port or Service
6146
6721
  remove: Remove
6147
6722
  addHost: Add Host
6148
6723
 
@@ -6156,13 +6731,28 @@ keyValue:
6156
6731
 
6157
6732
  registryMirror:
6158
6733
  header: Mirrors
6159
- 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.'
6734
+ 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.'
6160
6735
  addLabel: Add Mirror
6736
+ description: Mirrors define the names and endpoints for private registries. The endpoints are tried one by one, and the first working one is used.
6737
+ hostnameLabel: Registry Hostname
6738
+ hostnamePlaceholder: e.g. docker.io or *
6739
+ endpointsLabel: Mirror Endpoints
6740
+ endpointsPlaceholder: e.g. a.registry.com:5000, b.registry.com:5000
6741
+
6742
+ registryMirrorRewrite:
6743
+ header: Rewrites
6744
+ toolTip: 'Each mirror can have a set of rewrites. Rewrites can change the tag of an image based on a regular expression.'
6745
+ addLabel: Add Rewrite Config
6746
+ keyLabel: Rewrite pattern
6747
+ keyPlaceholder: e.g. ^rancher/(.*)
6748
+ valueLabel: Rewrite replacement
6749
+ valuePlaceholder: e.g. mirrorproject/rancher-images/$1
6161
6750
 
6162
6751
  registryConfig:
6163
6752
  header: Registry Authentication
6164
6753
  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.'
6165
6754
  addLabel: Add Registry
6755
+ description: "Define the TLS and credential configuration for each registry hostname and mirror."
6166
6756
 
6167
6757
  ##############################
6168
6758
  ### Advanced Settings
@@ -6174,6 +6764,7 @@ advancedSettings:
6174
6764
  show: Show
6175
6765
  hide: Hide
6176
6766
  none: None
6767
+ modified: Modified
6177
6768
  edit:
6178
6769
  label: Edit Setting
6179
6770
  changeSetting: "Change Setting:"
@@ -6253,6 +6844,7 @@ featureFlags:
6253
6844
  performance:
6254
6845
  label: UI Performance Settings
6255
6846
  settingName: Performance
6847
+ experimental: This setting is experimental and may be removed or updated in future versions.
6256
6848
  incrementalLoad:
6257
6849
  label: Incremental Loading
6258
6850
  setting: You can configure the threshold above which incremental loading will be used.
@@ -6261,7 +6853,6 @@ performance:
6261
6853
  checkboxLabel: Enable incremental loading
6262
6854
  inputLabel: Resource Threshold
6263
6855
  manualRefresh:
6264
- banner: This setting is experimental and may be removed or updated in future versions.
6265
6856
  label: Manual Refresh
6266
6857
  setting: You can configure a threshold above which manual refresh will be enabled.
6267
6858
  buttonTooltip: Refresh list
@@ -6277,7 +6868,6 @@ performance:
6277
6868
  gc:
6278
6869
  label: Resource Garbage Collection
6279
6870
  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.
6280
- banner: This setting is experimental and may be removed or updated in future versions.
6281
6871
  checkboxLabel: Enable Garbage Collection
6282
6872
  whenRun:
6283
6873
  description: Update when garbage collection runs
@@ -6296,7 +6886,17 @@ performance:
6296
6886
  count:
6297
6887
  description: Resource types must exceed this amount to be considered for garbage collection.
6298
6888
  inputLabel: Resource Count
6299
-
6889
+ nsFiltering:
6890
+ label: Require Namespace Filtering
6891
+ 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.
6892
+ checkboxLabel: Enable Required Namespace Filtering
6893
+ count:
6894
+ inputLabel: Resource Threshold
6895
+ description: The threshold above which filtering by a namespace is required
6896
+ advancedWorker:
6897
+ label: Websocket Web Worker
6898
+ 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.
6899
+ checkboxLabel: Enable Advanced Websocket Web Worker
6300
6900
 
6301
6901
  banner:
6302
6902
  label: Fixed Banners