@rancher/shell 0.3.0 → 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 (322) 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 +4 -4
  6. package/assets/styles/themes/_light.scss +4 -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 +669 -73
  10. package/assets/translations/zh-hans.yaml +547 -165
  11. package/chart/monitoring/steps/uninstall-v1.vue +2 -2
  12. package/cloud-credential/azure.vue +23 -0
  13. package/cloud-credential/harvester.vue +25 -62
  14. package/cloud-credential/pnap.vue +80 -0
  15. package/components/.DS_Store +0 -0
  16. package/components/AdvancedSection.vue +9 -2
  17. package/components/Alert.vue +2 -2
  18. package/components/ButtonDropdown.vue +0 -2
  19. package/components/ButtonGroup.vue +1 -0
  20. package/components/CollapsibleCard.vue +0 -1
  21. package/components/CruResource.vue +41 -4
  22. package/components/DetailTop.vue +58 -3
  23. package/components/DisableAuthProviderModal.vue +106 -0
  24. package/{rancher-components/components/Utils/DraggableZone → components}/DraggableZone.vue +0 -0
  25. package/components/ExplorerMembers.vue +253 -30
  26. package/components/ExplorerProjectsNamespaces.vue +77 -33
  27. package/components/GrowlManager.vue +3 -3
  28. package/components/IconOrSvg.vue +149 -0
  29. package/components/LogItem.vue +69 -0
  30. package/components/PodSecurityAdmission.vue +302 -0
  31. package/components/PromptModal.vue +1 -0
  32. package/components/ResourceDetail/Masthead.vue +54 -2
  33. package/components/ResourceDetail/index.vue +12 -5
  34. package/components/ResourceList/Masthead.vue +11 -1
  35. package/components/ResourceList/ResourceLoadingIndicator.vue +12 -2
  36. package/components/ResourceList/index.vue +53 -12
  37. package/components/ResourceList/resource-list.config.js +7 -0
  38. package/components/ResourceTable.vue +31 -6
  39. package/components/SimpleBox.vue +1 -1
  40. package/components/SortableTable/THead.vue +15 -5
  41. package/components/SortableTable/index.vue +21 -10
  42. package/components/Tabbed/index.vue +20 -15
  43. package/components/__tests__/.DS_Store +0 -0
  44. package/components/__tests__/AsyncButton.test.ts +140 -0
  45. package/components/__tests__/BackLink.test.ts +33 -0
  46. package/components/__tests__/ButtonGroup.test.ts +124 -0
  47. package/components/__tests__/ClusterBadge.test.ts +32 -0
  48. package/components/__tests__/CollapsibleCard.test.ts +64 -0
  49. package/components/__tests__/ConsumptionGauge.test.ts +88 -0
  50. package/components/__tests__/CruResource.test.ts +3 -2
  51. package/components/__tests__/FixedBanner.test.ts +129 -0
  52. package/components/__tests__/GrowlManager.test.ts +147 -0
  53. package/components/__tests__/NamespaceFilter.test.ts +33 -25
  54. package/components/__tests__/PercentageBar.test.ts +32 -0
  55. package/components/__tests__/PodSecurityAdmission.test.ts +398 -0
  56. package/components/auth/AuthBanner.vue +20 -10
  57. package/components/auth/RoleDetailEdit.vue +26 -17
  58. package/components/auth/SelectPrincipal.vue +36 -5
  59. package/components/form/ArrayList.vue +3 -35
  60. package/components/form/ArrayListGrouped.vue +13 -4
  61. package/components/form/ArrayListSelect.vue +5 -5
  62. package/components/form/Error.vue +8 -0
  63. package/components/form/KeyValue.vue +39 -7
  64. package/components/form/LabeledSelect.vue +5 -2
  65. package/components/form/Labels.vue +46 -16
  66. package/components/form/Members/ClusterPermissionsEditor.vue +17 -17
  67. package/components/form/Members/MembershipEditor.vue +12 -12
  68. package/components/form/NameNsDescription.vue +1 -1
  69. package/components/form/NodeScheduling.vue +1 -1
  70. package/components/form/Probe.vue +3 -3
  71. package/components/form/ResourceQuota/Project.vue +6 -6
  72. package/components/form/ResourceTabs/index.vue +1 -6
  73. package/components/form/Security.vue +7 -6
  74. package/components/form/Select.vue +3 -2
  75. package/components/form/SelectOrCreateAuthSecret.vue +22 -29
  76. package/components/form/ServicePorts.vue +8 -0
  77. package/components/form/WorkloadPorts.vue +7 -1
  78. package/components/form/__tests__/ArrayList.test.ts +74 -0
  79. package/components/form/__tests__/ArrayListGrouped.test.ts +6 -4
  80. package/components/formatter/Checked.vue +1 -1
  81. package/components/formatter/ClusterLink.vue +5 -0
  82. package/components/formatter/IconIsDefault.vue +2 -2
  83. package/components/formatter/InternalExternalIP.vue +11 -8
  84. package/components/formatter/LiveDuration.vue +78 -0
  85. package/components/formatter/WorkloadHealthScale.vue +5 -3
  86. package/components/nav/Header.vue +6 -3
  87. package/components/nav/NamespaceFilter.vue +146 -63
  88. package/components/nav/TopLevelMenu.vue +22 -19
  89. package/components/nav/WindowManager/ContainerLogs.vue +83 -126
  90. package/components/nav/WindowManager/ContainerShell.vue +9 -7
  91. package/components/nav/WindowManager/Window.vue +2 -0
  92. package/components/nav/WindowManager/index.vue +10 -0
  93. package/config/elemental-types.js +9 -0
  94. package/config/features.js +2 -0
  95. package/config/home-links.js +4 -1
  96. package/config/pod-security-admission.ts +82 -0
  97. package/config/product/apps.js +1 -1
  98. package/config/product/auth.js +6 -5
  99. package/config/product/explorer.js +6 -6
  100. package/config/product/fleet.js +1 -1
  101. package/config/product/manager.js +6 -2
  102. package/config/secret.js +0 -1
  103. package/config/settings.ts +26 -9
  104. package/config/table-headers.js +22 -11
  105. package/config/types.js +4 -1
  106. package/content/docs/zh-hans/getting-started.md +113 -137
  107. package/content/docs/zh-hans/whats-new.md +8 -46
  108. package/creators/pkg/package-lock.json +37 -0
  109. package/creators/pkg/package.json +1 -1
  110. package/detail/catalog.cattle.io.app.vue +1 -1
  111. package/detail/pod.vue +1 -1
  112. package/detail/provisioning.cattle.io.cluster.vue +35 -9
  113. package/detail/service.vue +2 -9
  114. package/detail/workload/index.vue +0 -1
  115. package/dialog/AddClusterMemberDialog.vue +22 -28
  116. package/dialog/AddProjectMemberDialog.vue +53 -9
  117. package/dialog/DiagnosticTimingsDialog.vue +8 -7
  118. package/dialog/DrainNode.vue +44 -48
  119. package/dialog/ForceMachineRemoveDialog.vue +5 -7
  120. package/dialog/GenericPrompt.vue +15 -20
  121. package/dialog/RollbackWorkloadDialog.vue +15 -46
  122. package/dialog/RotateCertificatesDialog.vue +5 -7
  123. package/dialog/RotateEncryptionKeyDialog.vue +5 -9
  124. package/dialog/SaveAsRKETemplateDialog.vue +5 -13
  125. package/dialog/ScaleMachineDownDialog.vue +1 -1
  126. package/dialog/ScalePoolDownDialog.vue +121 -0
  127. package/edit/__tests__/management.cattle.io.setting.test.ts +3 -3
  128. package/edit/auth/azuread.vue +16 -16
  129. package/edit/auth/github.vue +8 -0
  130. package/edit/auth/googleoauth.vue +10 -1
  131. package/edit/auth/ldap/index.vue +10 -0
  132. package/edit/auth/oidc.vue +10 -0
  133. package/edit/auth/saml.vue +10 -0
  134. package/edit/autoscaling.horizontalpodautoscaler/index.vue +1 -1
  135. package/edit/cloudcredential.vue +3 -7
  136. package/edit/logging-flow/Match.vue +39 -8
  137. package/edit/logging-flow/index.vue +27 -4
  138. package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +107 -0
  139. package/edit/management.cattle.io.project.vue +8 -1
  140. package/edit/management.cattle.io.setting.vue +5 -2
  141. package/edit/management.cattle.io.user.vue +7 -1
  142. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +23 -7
  143. package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +2 -2
  144. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +14 -6
  145. package/edit/namespace.vue +18 -4
  146. package/edit/networking.k8s.io.ingress/Certificate.vue +1 -0
  147. package/edit/networking.k8s.io.ingress/IngressClass.vue +8 -6
  148. package/edit/networking.k8s.io.ingress/RulePath.vue +12 -6
  149. package/edit/networking.k8s.io.ingress/index.vue +8 -6
  150. package/edit/persistentvolume/index.vue +30 -27
  151. package/edit/persistentvolume/plugins/cephfs.vue +29 -29
  152. package/edit/persistentvolume/plugins/csi.vue +102 -62
  153. package/edit/persistentvolume/plugins/fc.vue +19 -19
  154. package/edit/persistentvolume/plugins/iscsi.vue +45 -45
  155. package/edit/persistentvolume/plugins/rbd.vue +39 -39
  156. package/edit/persistentvolumeclaim.vue +78 -75
  157. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +11 -7
  158. package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +10 -1
  159. package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +87 -27
  160. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -6
  161. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +93 -0
  162. package/edit/provisioning.cattle.io.cluster/import.vue +1 -1
  163. package/edit/provisioning.cattle.io.cluster/index.vue +29 -6
  164. package/edit/provisioning.cattle.io.cluster/rke2.vue +440 -152
  165. package/edit/secret/index.vue +3 -7
  166. package/edit/service.vue +3 -1
  167. package/edit/storage.k8s.io.storageclass/index.vue +100 -16
  168. package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +114 -0
  169. package/edit/workload/__tests__/index.test.ts +98 -0
  170. package/edit/workload/index.vue +58 -8
  171. package/edit/workload/mixins/workload.js +107 -70
  172. package/edit/workload/storage/ContainerMountPaths.vue +0 -10
  173. package/edit/workload/storage/emptyDir.vue +88 -0
  174. package/edit/workload/storage/ephemeralVolume/index.vue +1 -1
  175. package/edit/workload/storage/index.vue +8 -0
  176. package/edit/workload/storage/persistentVolumeClaim/index.vue +1 -1
  177. package/layouts/default.vue +57 -44
  178. package/list/__tests__/workload.test.ts +5 -2
  179. package/list/catalog.cattle.io.app.vue +1 -0
  180. package/list/cis.cattle.io.clusterscan.vue +1 -0
  181. package/list/fleet.cattle.io.bundle.vue +5 -6
  182. package/list/fleet.cattle.io.cluster.vue +6 -3
  183. package/list/fleet.cattle.io.clusterregistrationtoken.vue +5 -6
  184. package/list/fleet.cattle.io.gitrepo.vue +4 -9
  185. package/list/helm.cattle.io.projecthelmchart.vue +1 -5
  186. package/list/logging.banzaicloud.io.clusterflow.vue +4 -1
  187. package/list/logging.banzaicloud.io.flow.vue +6 -5
  188. package/list/management.cattle.io.cluster.vue +1 -0
  189. package/list/management.cattle.io.feature.vue +3 -4
  190. package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +47 -0
  191. package/list/management.cattle.io.setting.vue +2 -2
  192. package/list/management.cattle.io.user.vue +4 -10
  193. package/list/monitoring.coreos.com.alertmanagerconfig.vue +2 -7
  194. package/list/node.vue +8 -5
  195. package/list/persistentvolume.vue +3 -3
  196. package/list/persistentvolumeclaim.vue +3 -4
  197. package/list/provisioning.cattle.io.cluster.vue +18 -19
  198. package/list/service.vue +6 -14
  199. package/list/workload.vue +43 -38
  200. package/machine-config/azure.vue +429 -60
  201. package/machine-config/pnap.vue +288 -0
  202. package/mixins/auth-config.js +1 -3
  203. package/mixins/browser-tab-visibility.js +8 -14
  204. package/mixins/chart.js +1 -1
  205. package/mixins/create-edit-view/impl.js +4 -0
  206. package/mixins/create-edit-view/index.js +4 -2
  207. package/mixins/resource-fetch-namespaced.js +98 -0
  208. package/mixins/resource-fetch.js +79 -45
  209. package/mixins/resource-manager.js +1 -23
  210. package/models/apps.controllerrevision.js +7 -0
  211. package/models/apps.daemonset.js +18 -0
  212. package/models/apps.deployment.js +44 -0
  213. package/models/apps.replicaset.js +7 -0
  214. package/models/apps.statefulset.js +18 -0
  215. package/models/batch.job.js +7 -14
  216. package/models/cluster/node.js +10 -2
  217. package/models/cluster.x-k8s.io.machine.js +26 -4
  218. package/models/cluster.x-k8s.io.machinedeployment.js +12 -2
  219. package/models/event.js +7 -0
  220. package/models/logging.banzaicloud.io.flow.js +4 -0
  221. package/models/management.cattle.io.cluster.js +1 -1
  222. package/models/management.cattle.io.clusterroletemplatebinding.js +1 -1
  223. package/models/management.cattle.io.globalrole.js +2 -2
  224. package/models/management.cattle.io.node.js +37 -2
  225. package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +4 -0
  226. package/models/management.cattle.io.project.js +30 -11
  227. package/models/management.cattle.io.setting.js +1 -1
  228. package/models/management.cattle.io.user.js +37 -1
  229. package/models/namespace.js +42 -5
  230. package/models/persistentvolume.js +14 -2
  231. package/models/pod.js +15 -0
  232. package/models/projectroletemplatebinding.js +7 -0
  233. package/models/provisioning.cattle.io.cluster.js +61 -10
  234. package/models/rke-machine.cattle.io.pnapmachinetemplate.js +15 -0
  235. package/models/service.js +14 -13
  236. package/models/storage.k8s.io.storageclass.js +33 -18
  237. package/models/workload.js +38 -7
  238. package/nuxt.config.js +27 -17
  239. package/package.json +7 -7
  240. package/pages/about.vue +14 -2
  241. package/pages/c/_cluster/apps/charts/index.vue +4 -3
  242. package/pages/c/_cluster/apps/charts/install.vue +59 -22
  243. package/pages/c/_cluster/auth/config/_id.vue +6 -0
  244. package/pages/c/_cluster/auth/config/index.vue +8 -6
  245. package/pages/c/_cluster/auth/group.principal/assign-edit.vue +1 -1
  246. package/pages/c/_cluster/auth/roles/index.vue +1 -1
  247. package/pages/c/_cluster/explorer/index.vue +12 -6
  248. package/pages/c/_cluster/longhorn/index.vue +1 -1
  249. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +15 -4
  250. package/pages/c/_cluster/monitoring/index.vue +1 -1
  251. package/pages/c/_cluster/neuvector/index.vue +1 -1
  252. package/pages/c/_cluster/settings/performance.vue +48 -2
  253. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +34 -1
  254. package/pages/c/_cluster/uiplugins/index.vue +28 -2
  255. package/pages/diagnostic.vue +5 -4
  256. package/pages/home.vue +105 -30
  257. package/pages/prefs.vue +23 -12
  258. package/pages/rio/mesh.vue +1 -1
  259. package/pkg/dynamic-importer.lib.js +8 -0
  260. package/pkg/vue.config.js +4 -0
  261. package/plugins/dashboard-store/__tests__/mutations.spec.js +406 -0
  262. package/plugins/dashboard-store/actions.js +32 -25
  263. package/plugins/dashboard-store/getters.js +50 -33
  264. package/plugins/dashboard-store/mutations.js +134 -28
  265. package/plugins/dashboard-store/resource-class.js +21 -41
  266. package/plugins/steve/actions.js +30 -0
  267. package/plugins/steve/caches/resourceCache.js +60 -0
  268. package/plugins/steve/getters.js +44 -1
  269. package/plugins/steve/mutations.js +97 -36
  270. package/plugins/steve/resourceWatcher.js +277 -0
  271. package/plugins/steve/schema.utils.js +25 -0
  272. package/plugins/steve/subscribe.js +288 -115
  273. package/plugins/steve/worker/index.js +17 -0
  274. package/plugins/steve/worker/web-worker.advanced.js +302 -0
  275. package/plugins/steve/{web-worker.steve-sub-worker.js → worker/web-worker.basic.js} +3 -44
  276. package/rancher-components/Card/Card.vue +3 -3
  277. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +1 -0
  278. package/rancher-components/StringList/StringList.test.ts +45 -420
  279. package/rancher-components/StringList/StringList.vue +1 -10
  280. package/rancher-components/components/Banner/Banner.test.ts +44 -0
  281. package/rancher-components/components/Banner/Banner.vue +129 -61
  282. package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +13 -22
  283. package/rancher-components/components/Form/Checkbox/Checkbox.vue +8 -6
  284. package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +9 -9
  285. package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +0 -1
  286. package/rancher-components/components/StringList/StringList.test.ts +7 -7
  287. package/rancher-components/components/StringList/StringList.vue +21 -15
  288. package/scripts/test-plugins-build.sh +8 -0
  289. package/static/loading-indicator.html +1 -1
  290. package/store/index.js +54 -3
  291. package/store/plugins.js +0 -17
  292. package/store/pnap.js +128 -0
  293. package/store/prefs.js +4 -2
  294. package/store/type-map.js +55 -13
  295. package/types/pod-security-admission.ts +36 -0
  296. package/types/shell/index.d.ts +496 -396
  297. package/utils/__tests__/object.test.ts +17 -1
  298. package/utils/__tests__/pod-security-admission.test.ts +61 -0
  299. package/utils/async.ts +36 -0
  300. package/utils/color.js +45 -0
  301. package/utils/crypto/browserHashUtils.js +18 -0
  302. package/utils/dynamic-importer.js +8 -0
  303. package/utils/install-redirect.js +1 -1
  304. package/utils/object.js +24 -0
  305. package/utils/pod-security-admission.ts +39 -0
  306. package/utils/socket.js +61 -24
  307. package/utils/string.js +2 -0
  308. package/utils/svg-filter.js +301 -0
  309. package/utils/time.js +49 -0
  310. package/utils/validators/cidr.js +4 -0
  311. package/utils/validators/formRules/__tests__/index.test.ts +23 -3
  312. package/utils/validators/formRules/index.ts +14 -0
  313. package/config/product/harvester-manager.js +0 -162
  314. package/edit/harvesterhci.io.management.cluster.vue +0 -153
  315. package/list/harvesterhci.io.management.cluster.vue +0 -241
  316. package/machine-config/harvester.vue +0 -693
  317. package/models/harvesterhci.io.management.cluster.js +0 -228
  318. package/pages/c/_cluster/harvesterManager/index.vue +0 -24
  319. package/rancher-components/Card/Card.test.ts +0 -39
  320. package/rancher-components/Utils/DraggableZone/DraggableZone.vue +0 -181
  321. package/rancher-components/Utils/DraggableZone/index.ts +0 -1
  322. 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
@@ -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
@@ -2794,6 +2923,7 @@ managementNode:
2794
2923
 
2795
2924
  members:
2796
2925
  clusterMembers: Cluster Members
2926
+ clusterAndProject: Cluster and Project Members
2797
2927
  createActionLabel: Add
2798
2928
  clusterPermissions:
2799
2929
  noDescription: User created - no description
@@ -2820,6 +2950,7 @@ members:
2820
2950
  label: Custom
2821
2951
  description: Choose individual roles for this user.
2822
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.
2823
2954
 
2824
2955
  membershipEditor:
2825
2956
  label: Members
@@ -2998,6 +3129,7 @@ monitoring:
2998
3129
  editYaml: Edit AlertmanagerConfig
2999
3130
  detail: Receiver in AlertmanagerConfig
3000
3131
  disabledReceiverButton: The receiver form is available after the AlertmanagerConfig is created
3132
+ error: An error occurred saving the AlertmanagerConfig
3001
3133
  email:
3002
3134
  username: Auth Username
3003
3135
  password: Secret with Auth Password
@@ -3360,6 +3492,8 @@ persistentVolume:
3360
3492
  label: Plugin configuration
3361
3493
  plugin:
3362
3494
  label: Volume Plugin
3495
+ inTree: in-tree plugin
3496
+ unsupported: (Unsupported)
3363
3497
  capacity:
3364
3498
  label: Capacity
3365
3499
  customize:
@@ -3407,6 +3541,7 @@ persistentVolume:
3407
3541
  placeholder: e.g. sp1
3408
3542
  csi:
3409
3543
  label: CSI (Unsupported)
3544
+ suffix: (CSI)
3410
3545
  driver:
3411
3546
  label: Driver
3412
3547
  placeholder: e.g. driver.longhorn.io
@@ -3439,6 +3574,21 @@ persistentVolume:
3439
3574
  controllerPublishSecretNamespace:
3440
3575
  label: Controller Publish Secret Namespace
3441
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)
3442
3592
  cephfs:
3443
3593
  label: Ceph Filesystem (Unsupported)
3444
3594
  path:
@@ -3699,6 +3849,7 @@ podDisruptionBudget:
3699
3849
  maxUnavailable:
3700
3850
  label: Max. unavailable Pods
3701
3851
 
3852
+
3702
3853
  # Rancher Extensions
3703
3854
  plugins:
3704
3855
  labels:
@@ -3792,6 +3943,27 @@ plugins:
3792
3943
  crd:
3793
3944
  title: Remove the Rancher Extensions Custom Resource Definition
3794
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}
3795
3967
  prefs:
3796
3968
  title: Preferences
3797
3969
  theme:
@@ -3837,6 +4009,9 @@ prefs:
3837
4009
  'true': Include Prerelease Versions
3838
4010
  'false': Show Releases Only
3839
4011
  label: Helm Charts
4012
+ confirmationSetting:
4013
+ title: Confirmation Setting
4014
+ scalingDownPrompt: Do not ask for confirmation when scaling down node pools.
3840
4015
 
3841
4016
  principal:
3842
4017
  loading: Loading&hellip;
@@ -4015,11 +4190,13 @@ promptRemove:
4015
4190
  other { and <b>{count} others</b>.}
4016
4191
  }
4017
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?"
4018
4194
  protip: "Tip: Hold the {alternateLabel} key while clicking delete to bypass this confirmation"
4019
4195
  confirmName: "Enter <b>{nameToMatch}</b> below to confirm:"
4020
4196
  deleteAssociatedNamespaces: "Also delete the namespaces in this project:"
4021
4197
  willDeleteAssociatedNamespaces: "This will also delete all namespaces in the project: "
4022
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."
4023
4200
 
4024
4201
  promptRemoveApp:
4025
4202
  removeCrd: "Delete the CRD associated with this app"
@@ -4274,6 +4451,8 @@ resourceList:
4274
4451
  create: Create
4275
4452
  createFromYaml: Create from YAML
4276
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}."
4277
4456
  resourceLoadingIndicator:
4278
4457
  loading: Loading
4279
4458
 
@@ -4457,6 +4636,9 @@ serviceTypes:
4457
4636
  nodeport: Node Port
4458
4637
 
4459
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.
4460
4642
  anyNode: Any Node
4461
4643
  labelsAnnotations:
4462
4644
  label: Labels & Annotations
@@ -4519,6 +4701,7 @@ servicesPage:
4519
4701
  helpText: ""
4520
4702
  label: Selectors
4521
4703
  matchingPods:
4704
+ description: Selector keys and values are intended to match labels and values on existing Pods.
4522
4705
  matchesSome: |-
4523
4706
  {matched, plural,
4524
4707
  =0 {Matches 0 of {total, number} pods. If no selector is created, manual endpoints must be made.}
@@ -4528,23 +4711,23 @@ servicesPage:
4528
4711
  serviceTypes:
4529
4712
  clusterIp:
4530
4713
  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.
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.
4532
4715
  label: Cluster IP
4533
4716
  externalName:
4534
4717
  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."
4718
+ description: Create a Service that uses a DNS name instead of selectors. This is an advanced use case.
4536
4719
  label: External Name
4537
4720
  headless:
4538
4721
  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.
4722
+ description: Create a Service without a cluster IP or load balancer. This is an advanced use case.
4540
4723
  label: Headless
4541
4724
  loadBalancer:
4542
4725
  abbrv: LB
4543
- 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.
4544
4727
  label: Load Balancer
4545
4728
  nodePort:
4546
4729
  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;`."
4730
+ description: "Expose the service on each node's IP at a static port."
4548
4731
  label: Node Port
4549
4732
  typeOpts:
4550
4733
  label: Service Type
@@ -4696,7 +4879,7 @@ storageClass:
4696
4879
  zonal: Zonal
4697
4880
  regional: Regional
4698
4881
  longhorn:
4699
- title: Longhorn
4882
+ title: Longhorn (CSI)
4700
4883
  addLabel: Add Parameter
4701
4884
  vsphere-volume:
4702
4885
  title: VMWare vSphere Volume
@@ -4723,7 +4906,7 @@ storageClass:
4723
4906
  custom:
4724
4907
  addLabel: Add Parameter
4725
4908
  glusterfs:
4726
- title: Gluster Volume (Unsupported)
4909
+ title: Gluster Volume
4727
4910
  restUrl:
4728
4911
  label: REST URL
4729
4912
  placeholder: e.g. http://127.0.0.1:8081
@@ -4752,7 +4935,7 @@ storageClass:
4752
4935
  label: Volume Type
4753
4936
  placeholder: "e.g. replicate:3"
4754
4937
  cinder:
4755
- title: Openstack Cinder Volume (Unsupported)
4938
+ title: Openstack Cinder Volume
4756
4939
  volumeType:
4757
4940
  label: Volume Type
4758
4941
  placeholder: e.g. fast
@@ -4763,7 +4946,7 @@ storageClass:
4763
4946
  label: "Manual: Choose specific zones"
4764
4947
  placeholder: e.g. nova
4765
4948
  rbd:
4766
- title: Ceph RBD (Unsupported)
4949
+ title: Ceph RBD
4767
4950
  monitors:
4768
4951
  label: Monitors
4769
4952
  placeholder: e.g. 10.16.153.105:6789
@@ -4798,7 +4981,7 @@ storageClass:
4798
4981
  label: Image Features
4799
4982
  placeholder: e.g. layering
4800
4983
  quobyte:
4801
- title: Quobyte Volume (Unsupported)
4984
+ title: Quobyte Volume
4802
4985
  quobyteApiServer:
4803
4986
  label: Quobyte API Server
4804
4987
  placeholder: "e.g. http://138.68.74.142:7860"
@@ -4824,7 +5007,7 @@ storageClass:
4824
5007
  label: Quobyte Tenant
4825
5008
  placeholder: e.g. DEFAULT
4826
5009
  portworx-volume:
4827
- title: Portworx Volume (Unsupported)
5010
+ title: Portworx Volume
4828
5011
  filesystem:
4829
5012
  label: Filesystem
4830
5013
  placeholder: e.g. ext4
@@ -4847,7 +5030,7 @@ storageClass:
4847
5030
  label: Ephemeral
4848
5031
  placeholder: e.g. true
4849
5032
  scaleio:
4850
- title: ScaleIO Volume (Unsupported)
5033
+ title: ScaleIO Volume
4851
5034
  gateway:
4852
5035
  label: Gateway
4853
5036
  placeholder: e.g. https://192.168.99.200:443/api
@@ -4873,7 +5056,7 @@ storageClass:
4873
5056
  label: Filesystem Type
4874
5057
  placeholder: e.g. xfs
4875
5058
  storageos:
4876
- title: StorageOS (Unsupported)
5059
+ title: StorageOS
4877
5060
  pool:
4878
5061
  label: Pool
4879
5062
  placeholder: e.g. default
@@ -4890,50 +5073,94 @@ storageClass:
4890
5073
  label: Admin Secret Name
4891
5074
  placeholder: e.g. storageos-secret
4892
5075
  no-provisioner:
4893
- 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.
4894
5088
 
4895
5089
  tableHeaders:
5090
+ assuredConcurrencyShares: Assured Concurrency Shares
4896
5091
  accessKey: Access Key
5092
+ addressType: Address Type
5093
+ accessModes: Access Modes
4897
5094
  address: Address
4898
5095
  age: Age
4899
5096
  apiGroup: API Groups
5097
+ apikey: API Key
5098
+ available: Available
5099
+ attachedVM: Attached VM
5100
+
4900
5101
  authRoles:
4901
5102
  globalDefault: New User Default
4902
5103
  clusterDefault: Cluster Creator Default
4903
5104
  projectDefault: Project Creator Default
4904
5105
  branch: Branch
5106
+ backupTarget: Backup Target
4905
5107
  builtIn: Built In
4906
5108
  bundlesReady: Bundles Ready
4907
5109
  bundleDeploymentsReady: Deployments
4908
5110
  builtin: Built-In
4909
5111
  chart: Chart
5112
+ capacity: Capacity
5113
+ current: Current
4910
5114
  clusterCreatorDefault: Cluster Creator Default
4911
5115
  clusterFlow: Cluster Flow
4912
5116
  clusterOutput: Cluster Output
4913
5117
  cluster: Cluster
4914
5118
  clusters: Clusters
5119
+ cluster-Name: Cluster
4915
5120
  clustersReady: Clusters Ready
4916
5121
  clusterGroups: Cluster Groups
4917
5122
  commit: Commit
4918
5123
  condition: Condition
5124
+ completions: Completions
5125
+ count: Count
5126
+ createdAt: Created At
4919
5127
  customVerbs: Custom Verbs
4920
5128
  description: Description
4921
- duration: Duration
4922
5129
  expires: Expires
4923
- providers: Providers
4924
5130
  cpu: CPU
5131
+ currentReplicas: Current Replicas
4925
5132
  date: Date
5133
+ data: Data
4926
5134
  default: Default
5135
+ desired: Desired
5136
+ defaultVersion: Default version
4927
5137
  destination: Target
5138
+ deployed: Deployed
4928
5139
  download: Download
5140
+ duration: Duration
5141
+ diskState: Disk State
5142
+ drivers: Drivers
5143
+ distinguisherMethod: Distinguisher Method
4929
5144
  effect: Effect
4930
5145
  endpoints: Endpoints
5146
+ firstSeen: First Seen
4931
5147
  fleetBundleType: Type
4932
5148
  flow: Flow
5149
+ fingerprint: Fingerprint
4933
5150
  gitRepos: Git Repos
5151
+ groups: Groups
5152
+ groupName: Group Name
5153
+ groupRoleNames: Group Role Names
5154
+ global-Default: Global-Default
4934
5155
  host: Host
5156
+ hostIp: Host IP
5157
+ holder: Holder
5158
+ hpaReference: Workload
4935
5159
  health: Health
5160
+ handSize: Hand Size
5161
+ ipAddress: IP Address
4936
5162
  id: ID
5163
+ iP: IP
4937
5164
  image: Image
4938
5165
  imageSize: Size
4939
5166
  ingressClass: Ingress Class
@@ -4941,28 +5168,39 @@ tableHeaders:
4941
5168
  ingressTarget: Target
4942
5169
  internalExternalIp: External/Internal IP
4943
5170
  ipaddress: IP Address
5171
+ internalIpSameAsExternal: Same as External
4944
5172
  jobs: Jobs
4945
5173
  key: Key
4946
5174
  keys: Data
5175
+ labels: Labels
4947
5176
  lastUpdated: Last Updated
5177
+ lastSchedule: Last Schedule
4948
5178
  lastSeen: Last Seen
5179
+ lastSeenTooltip: The time at which the most recent occurrence of this event was recorded
4949
5180
  loggingOutputProviders: Provider
4950
5181
  machines: Machines
4951
5182
  machineNodeName: Node
4952
5183
  manual: Manual
4953
5184
  matches: Matches
5185
+ matchingPrecedence: Matching Precedence
4954
5186
  maxKubernetesVersion: Max Kubernetes Version
4955
5187
  message: Message
4956
5188
  minKubernetesVersion: Min Kubernetes Version
5189
+ minReplicas: Minimum Replicas
5190
+ maxReplicas: Maximum Replicas
5191
+ missingPL: MissingPL
4957
5192
  memory: Memory
5193
+ monitored: Monitored
4958
5194
  name: Name
4959
5195
  nameDisplay: Display Name
4960
5196
  nameUnlinked: Name
4961
5197
  namespace: Namespace
4962
5198
  namespaceName: Name
4963
5199
  namespaceNameUnlinked: Name
5200
+ networkType: Type
5201
+ networkVlan: Vlan ID
4964
5202
  node: Node
4965
- nodeName: Name
5203
+ nodeName: Node Name
4966
5204
  nodesReady: Nodes Ready
4967
5205
  nodePort: Node Port
4968
5206
  object: Object
@@ -4971,14 +5209,23 @@ tableHeaders:
4971
5209
  p95: 95%tile
4972
5210
  persistentVolumeClaim: Persistent Volume Claim
4973
5211
  persistentVolumeSource: Source
5212
+ phase: Phase
5213
+ progress: Progress
4974
5214
  podImages: Image
4975
5215
  podRestarts: Restarts
4976
5216
  pods: Pods
5217
+ pod-Selector: Pod-Selector
5218
+ providers: Providers
5219
+ providerID: Provider ID
4977
5220
  port: Port
5221
+ ports: Ports
4978
5222
  project: Project
4979
5223
  protocol: Protocol
4980
5224
  provider: Provider
5225
+ priorityLevel: Priority Level
4981
5226
  publicPorts: Public Ports
5227
+ queues: Queues
5228
+ queueLengthLimit: Queue Length Limit
4982
5229
  ram: RAM
4983
5230
  rbac:
4984
5231
  create: Create
@@ -5004,12 +5251,20 @@ tableHeaders:
5004
5251
  resources: Resources
5005
5252
  resourcesReady: Resources Ready
5006
5253
  restarts: Restarts
5254
+ restart: Restart Required
5007
5255
  role: Role
5008
5256
  roles: Roles
5009
5257
  routes: Routes
5258
+ routeConnectivity: Route Connectivity
5259
+ readyToUse: Ready To Use
5010
5260
  scale: Scale
5011
5261
  scope: Scope
5012
5262
  selector: Selector
5263
+ secrets: Secrets
5264
+ schedule: Schedule
5265
+ service: Service
5266
+ serviceAccounts: Service Accounts
5267
+ secret-Name: Secret-Name
5013
5268
  simpleName: Name
5014
5269
  simpleScale: Scale
5015
5270
  simpleType: Type
@@ -5017,51 +5272,35 @@ tableHeaders:
5017
5272
  started: Started
5018
5273
  state: State
5019
5274
  status: Status
5275
+ targetVm: Target VM
5020
5276
  storage_class_provisioner: Provisioner
5277
+ storage: Storage Size
5278
+ storageClass: Storage Class
5279
+ source: Source
5021
5280
  subject: Subject
5022
5281
  subType: Kind
5023
5282
  success: Success
5024
5283
  summary: Summary
5284
+ subobject: Subobject
5025
5285
  taints: Taints
5026
5286
  target: Target
5027
5287
  targetKind: Target Type
5028
5288
  targetPort: Target
5029
5289
  type: Type
5030
5290
  updated: Updated
5291
+ up-to-date: Up To Date
5031
5292
  upgrade: Upgradable
5032
5293
  url: URL
5294
+ users: Users
5033
5295
  userDisplayName: Display Name
5034
5296
  userId: ID
5035
5297
  userStatus: Status
5036
5298
  username: Local Username
5037
5299
  value: Value
5038
5300
  version: Version
5301
+ volume: Volume
5302
+ volumeMode: Volume Mode
5039
5303
  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
5304
  target:
5066
5305
  router:
5067
5306
  label: Router
@@ -5175,6 +5414,8 @@ validation:
5175
5414
  noType: No type to validate
5176
5415
  number:
5177
5416
  requiredInt: '"{key}" must be integer'
5417
+ isPositive: '"{key}" must be positive'
5418
+ isOctal: '"{key}" must have no leading zeros'
5178
5419
  between: '"{key}" should be between {min} and {max}'
5179
5420
  exactly: '"{key}" should be exactly {val}'
5180
5421
  max: '"{key}" should be at most {val}'
@@ -5402,6 +5643,10 @@ workload:
5402
5643
  noPorts: There are no ports configured.
5403
5644
  noServiceAccess: You do not have permission to create or manage services
5404
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.'
5405
5650
  createService: Service Type
5406
5651
  noCreateService: Do not create a service
5407
5652
  containerPort: Private Container Port
@@ -5660,6 +5905,7 @@ workload:
5660
5905
  gcePersistentDisk: Google Persistent Disk
5661
5906
  driver.longhorn.io: Longhorn
5662
5907
  vsphereVolume: VMWare vSphere Volume
5908
+ emptyDir: Empty Dir
5663
5909
  addClaim: Add Claim
5664
5910
  addMount: Add Mount
5665
5911
  addVolume: Add Volume
@@ -5719,6 +5965,14 @@ workload:
5719
5965
  title: 'Storage'
5720
5966
  volumeName: Volume Name
5721
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"
5722
5976
  typeDescriptions:
5723
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.
5724
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.
@@ -5768,15 +6022,7 @@ workload:
5768
6022
  pod: Pod
5769
6023
  containers: Containers
5770
6024
 
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
6025
+
5780
6026
 
5781
6027
  ##############################
5782
6028
  # Model Properties
@@ -5988,6 +6234,26 @@ typeLabel:
5988
6234
  one { Workspace }
5989
6235
  other { Workspaces }
5990
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
+ }
5991
6257
  # pruh-mee-thee-eyes https://www.prometheus.io/docs/introduction/faq/#what-is-the-plural-of-prometheus
5992
6258
  monitoring.coreos.com.prometheus: |-
5993
6259
  {count, plural,
@@ -6011,7 +6277,7 @@ typeLabel:
6011
6277
  }
6012
6278
  monitoring.coreos.com.alertmanagerconfig: |-
6013
6279
  {count, plural,
6014
- one { AlertmanagerConfigs }
6280
+ one { AlertmanagerConfig }
6015
6281
  other { AlertmanagerConfigs }
6016
6282
  }
6017
6283
  monitoring.coreos.com.podmonitor: |-
@@ -6054,10 +6320,10 @@ typeLabel:
6054
6320
  one { Cluster }
6055
6321
  other { Clusters }
6056
6322
  }
6057
- 'management.cattle.io.user': |-
6323
+ management.cattle.io.user: |-
6058
6324
  {count, plural,
6059
6325
  one { User }
6060
- other { Users }
6326
+ other { Users}
6061
6327
  }
6062
6328
  namespace: |-
6063
6329
  {count, plural,
@@ -6069,6 +6335,136 @@ typeLabel:
6069
6335
  one { Node }
6070
6336
  other { Nodes }
6071
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
+ }
6072
6468
  group.principal: |-
6073
6469
  {count, plural,
6074
6470
  one { Group }
@@ -6089,11 +6485,186 @@ typeLabel:
6089
6485
  one { Harvester Cluster }
6090
6486
  other { Harvester Clusters }
6091
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
+ }
6092
6498
  fleet.cattle.io.bundle: |-
6093
6499
  {count, plural,
6094
6500
  one { Bundle }
6095
6501
  other { Bundles }
6096
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
+ }
6097
6668
  fleet.cattle.io.clusterregistrationtoken: |-
6098
6669
  {count, plural,
6099
6670
  one { Cluster Registration Token }
@@ -6142,7 +6713,7 @@ unit:
6142
6713
  other { days }
6143
6714
  }
6144
6715
  workloadPorts:
6145
- addPort: Add Port
6716
+ addPort: Add Port or Service
6146
6717
  remove: Remove
6147
6718
  addHost: Add Host
6148
6719
 
@@ -6156,13 +6727,28 @@ keyValue:
6156
6727
 
6157
6728
  registryMirror:
6158
6729
  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.'
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.'
6160
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
6161
6746
 
6162
6747
  registryConfig:
6163
6748
  header: Registry Authentication
6164
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.'
6165
6750
  addLabel: Add Registry
6751
+ description: "Define the TLS and credential configuration for each registry hostname and mirror."
6166
6752
 
6167
6753
  ##############################
6168
6754
  ### Advanced Settings
@@ -6174,6 +6760,7 @@ advancedSettings:
6174
6760
  show: Show
6175
6761
  hide: Hide
6176
6762
  none: None
6763
+ modified: Modified
6177
6764
  edit:
6178
6765
  label: Edit Setting
6179
6766
  changeSetting: "Change Setting:"
@@ -6253,6 +6840,7 @@ featureFlags:
6253
6840
  performance:
6254
6841
  label: UI Performance Settings
6255
6842
  settingName: Performance
6843
+ experimental: This setting is experimental and may be removed or updated in future versions.
6256
6844
  incrementalLoad:
6257
6845
  label: Incremental Loading
6258
6846
  setting: You can configure the threshold above which incremental loading will be used.
@@ -6261,7 +6849,6 @@ performance:
6261
6849
  checkboxLabel: Enable incremental loading
6262
6850
  inputLabel: Resource Threshold
6263
6851
  manualRefresh:
6264
- banner: This setting is experimental and may be removed or updated in future versions.
6265
6852
  label: Manual Refresh
6266
6853
  setting: You can configure a threshold above which manual refresh will be enabled.
6267
6854
  buttonTooltip: Refresh list
@@ -6277,7 +6864,6 @@ performance:
6277
6864
  gc:
6278
6865
  label: Resource Garbage Collection
6279
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.
6280
- banner: This setting is experimental and may be removed or updated in future versions.
6281
6867
  checkboxLabel: Enable Garbage Collection
6282
6868
  whenRun:
6283
6869
  description: Update when garbage collection runs
@@ -6296,7 +6882,17 @@ performance:
6296
6882
  count:
6297
6883
  description: Resource types must exceed this amount to be considered for garbage collection.
6298
6884
  inputLabel: Resource Count
6299
-
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
6300
6896
 
6301
6897
  banner:
6302
6898
  label: Fixed Banners