@rancher/shell 3.0.5-rc.2 → 3.0.5-rc.5

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 (289) hide show
  1. package/assets/data/aws-regions.json +2 -0
  2. package/assets/images/icons/document.svg +3 -0
  3. package/assets/images/vendor/cognito.svg +1 -0
  4. package/assets/styles/app.scss +1 -0
  5. package/assets/styles/base/_basic.scss +10 -0
  6. package/assets/styles/base/_spacing.scss +29 -0
  7. package/assets/styles/global/_layout.scss +1 -2
  8. package/assets/styles/themes/_dark.scss +25 -0
  9. package/assets/styles/themes/_light.scss +65 -0
  10. package/assets/translations/en-us.yaml +377 -37
  11. package/assets/translations/zh-hans.yaml +8 -15
  12. package/chart/monitoring/index.vue +1 -1
  13. package/components/AsyncButton.vue +2 -0
  14. package/components/Certificates.vue +5 -0
  15. package/components/CodeMirror.vue +3 -3
  16. package/components/CruResource.vue +103 -15
  17. package/components/ExplorerProjectsNamespaces.vue +7 -2
  18. package/components/FilterPanel.vue +156 -0
  19. package/components/FixedBanner.vue +19 -5
  20. package/components/{fleet/ForceDirectedTreeChart/index.vue → ForceDirectedTreeChart.vue} +47 -41
  21. package/components/IconOrSvg.vue +14 -35
  22. package/components/PaginatedResourceTable.vue +7 -0
  23. package/components/PromptRemove.vue +5 -1
  24. package/components/Resource/Detail/Card/PodsCard/Bubble.vue +13 -0
  25. package/components/Resource/Detail/Card/PodsCard/composable.ts +30 -0
  26. package/components/Resource/Detail/Card/PodsCard/index.vue +118 -0
  27. package/components/Resource/Detail/Card/ResourceUsageCard/composable.ts +51 -0
  28. package/components/Resource/Detail/Card/ResourceUsageCard/index.vue +79 -0
  29. package/components/Resource/Detail/Card/Scaler.vue +89 -0
  30. package/components/Resource/Detail/Card/StateCard/composables.ts +112 -0
  31. package/components/Resource/Detail/Card/StateCard/index.vue +39 -0
  32. package/components/Resource/Detail/Card/VerticalGap.vue +11 -0
  33. package/components/Resource/Detail/Card/__tests__/Card.test.ts +36 -0
  34. package/components/Resource/Detail/Card/__tests__/PodsCard.test.ts +84 -0
  35. package/components/Resource/Detail/Card/__tests__/ResourceUsageCard.test.ts +72 -0
  36. package/components/Resource/Detail/Card/__tests__/Scaler.test.ts +87 -0
  37. package/components/Resource/Detail/Card/__tests__/StateCard.test.ts +53 -0
  38. package/components/Resource/Detail/Card/__tests__/VerticalGap.test.ts +14 -0
  39. package/components/Resource/Detail/Card/__tests__/index.test.ts +36 -0
  40. package/components/Resource/Detail/Card/index.vue +56 -0
  41. package/components/Resource/Detail/Metadata/Annotations/__tests__/index.test.ts +19 -0
  42. package/components/Resource/Detail/Metadata/Annotations/composable.ts +12 -0
  43. package/components/Resource/Detail/Metadata/Annotations/index.vue +26 -0
  44. package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/index.test.ts +103 -0
  45. package/components/Resource/Detail/Metadata/IdentifyingInformation/composable.ts +281 -0
  46. package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +111 -0
  47. package/components/Resource/Detail/Metadata/KeyValue.vue +130 -0
  48. package/components/Resource/Detail/Metadata/Labels/__tests__/index.test.ts +18 -0
  49. package/components/Resource/Detail/Metadata/Labels/composable.ts +12 -0
  50. package/components/Resource/Detail/Metadata/Labels/index.vue +27 -0
  51. package/components/Resource/Detail/Metadata/Rectangle.vue +32 -0
  52. package/components/Resource/Detail/Metadata/__tests__/KeyValue.test.ts +107 -0
  53. package/components/Resource/Detail/Metadata/__tests__/Rectangle.test.ts +24 -0
  54. package/components/Resource/Detail/Metadata/__tests__/index.test.ts +91 -0
  55. package/components/Resource/Detail/Metadata/composables.ts +29 -0
  56. package/components/Resource/Detail/Metadata/index.vue +66 -0
  57. package/components/Resource/Detail/Page.vue +22 -0
  58. package/components/Resource/Detail/PercentageBar.vue +40 -0
  59. package/components/Resource/Detail/ResourceRow.vue +119 -0
  60. package/components/Resource/Detail/SpacedRow.vue +14 -0
  61. package/components/Resource/Detail/StatusBar.vue +59 -0
  62. package/components/Resource/Detail/StatusRow.vue +61 -0
  63. package/components/Resource/Detail/TitleBar/Title.vue +13 -0
  64. package/components/Resource/Detail/TitleBar/Top.vue +14 -0
  65. package/components/Resource/Detail/TitleBar/__tests__/Title.test.ts +17 -0
  66. package/components/Resource/Detail/TitleBar/__tests__/Top.test.ts +17 -0
  67. package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +142 -0
  68. package/components/Resource/Detail/TitleBar/composable.ts +31 -0
  69. package/components/Resource/Detail/TitleBar/index.vue +124 -0
  70. package/components/Resource/Detail/Top/index.vue +34 -0
  71. package/components/Resource/Detail/__tests__/Page.test.ts +32 -0
  72. package/components/ResourceDetail/Masthead.vue +0 -1
  73. package/components/ResourceDetail/__tests__/index.test.ts +114 -0
  74. package/components/ResourceDetail/index.vue +64 -562
  75. package/components/ResourceDetail/legacy.vue +545 -0
  76. package/components/ResourceList/index.vue +2 -1
  77. package/components/ResourceTable.vue +41 -7
  78. package/components/SlideInPanelManager.vue +77 -10
  79. package/components/SortableTable/index.vue +13 -2
  80. package/components/SortableTable/selection.js +22 -9
  81. package/components/StatusBadge.vue +6 -4
  82. package/components/SubtleLink.vue +25 -0
  83. package/components/Tabbed/index.vue +6 -0
  84. package/components/Wizard.vue +12 -1
  85. package/components/YamlEditor.vue +1 -1
  86. package/components/__tests__/AsyncButton.test.ts +39 -0
  87. package/components/__tests__/CruResource.test.ts +63 -0
  88. package/components/__tests__/FilterPanel.test.ts +81 -0
  89. package/components/__tests__/PromptModal.test.ts +0 -2
  90. package/components/auth/AuthBanner.vue +2 -3
  91. package/components/auth/RoleDetailEdit.vue +45 -3
  92. package/components/auth/login/oidc.vue +6 -1
  93. package/components/fleet/FleetApplications.vue +181 -0
  94. package/components/fleet/FleetHelmOps.vue +115 -0
  95. package/components/fleet/FleetIntro.vue +58 -28
  96. package/components/fleet/FleetNoWorkspaces.vue +5 -1
  97. package/components/fleet/FleetOCIStorageSecret.vue +171 -0
  98. package/components/fleet/FleetRepos.vue +38 -76
  99. package/components/fleet/FleetResources.vue +50 -22
  100. package/components/fleet/FleetSummary.vue +26 -51
  101. package/components/fleet/__tests__/FleetOCIStorageSecret.test.ts +213 -0
  102. package/components/fleet/__tests__/FleetSummary.test.ts +39 -39
  103. package/components/fleet/dashboard/Empty.vue +73 -0
  104. package/components/fleet/dashboard/ResourceCard.vue +183 -0
  105. package/components/fleet/dashboard/ResourceCardSummary.vue +199 -0
  106. package/components/fleet/dashboard/ResourceDetails.vue +196 -0
  107. package/components/fleet/dashboard/ResourcePanel.vue +376 -0
  108. package/components/form/ArrayList.vue +139 -117
  109. package/components/form/BannerSettings.vue +145 -96
  110. package/components/form/KeyValue.vue +10 -7
  111. package/components/form/LabeledSelect.vue +9 -2
  112. package/components/form/MatchExpressions.vue +5 -1
  113. package/components/form/NameNsDescription.vue +1 -1
  114. package/components/form/ResourceSelector.vue +26 -23
  115. package/components/form/ResourceTabs/index.vue +2 -1
  116. package/components/form/Select.vue +9 -2
  117. package/components/form/SimpleSecretSelector.vue +8 -2
  118. package/components/form/UnitInput.vue +13 -0
  119. package/components/form/ValueFromResource.vue +31 -19
  120. package/components/form/__tests__/ArrayList.test.ts +32 -0
  121. package/components/form/__tests__/KeyValue.test.ts +36 -0
  122. package/components/form/__tests__/LabeledSelect.test.ts +33 -0
  123. package/components/form/__tests__/Select.test.ts +34 -1
  124. package/components/form/__tests__/UnitInput.test.ts +23 -1
  125. package/components/formatter/ClusterLink.vue +5 -8
  126. package/components/formatter/Description.vue +30 -0
  127. package/components/formatter/FleetApplicationClustersReady.vue +77 -0
  128. package/components/formatter/FleetApplicationSource.vue +71 -0
  129. package/components/formatter/FleetSummaryGraph.vue +7 -0
  130. package/components/formatter/__tests__/ClusterLink.test.ts +2 -32
  131. package/components/nav/Header.vue +8 -7
  132. package/components/nav/NamespaceFilter.vue +1 -1
  133. package/components/nav/TopLevelMenu.helper.ts +55 -34
  134. package/components/nav/TopLevelMenu.vue +11 -0
  135. package/components/nav/Type.vue +4 -1
  136. package/components/nav/WindowManager/index.vue +1 -0
  137. package/composables/useI18n.ts +12 -11
  138. package/config/labels-annotations.js +14 -11
  139. package/config/product/auth.js +1 -0
  140. package/config/product/explorer.js +16 -13
  141. package/config/product/fleet.js +70 -17
  142. package/config/product/manager.js +1 -28
  143. package/config/query-params.js +3 -1
  144. package/config/roles.ts +1 -0
  145. package/config/router/routes.js +20 -2
  146. package/config/secret.ts +15 -0
  147. package/config/settings.ts +14 -15
  148. package/config/table-headers.js +59 -27
  149. package/config/types.js +2 -0
  150. package/core/plugin-helpers.ts +3 -2
  151. package/detail/catalog.cattle.io.app.vue +0 -1
  152. package/detail/fleet.cattle.io.cluster.vue +28 -15
  153. package/detail/fleet.cattle.io.gitrepo.vue +10 -1
  154. package/detail/fleet.cattle.io.helmop.vue +157 -0
  155. package/detail/provisioning.cattle.io.cluster.vue +13 -3
  156. package/detail/service.vue +0 -1
  157. package/detail/workload/index.vue +21 -34
  158. package/dialog/ExtensionCatalogUninstallDialog.vue +14 -8
  159. package/dialog/HelmOpForceUpdateDialog.vue +132 -0
  160. package/dialog/RedeployWorkloadDialog.vue +164 -0
  161. package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +56 -67
  162. package/edit/__tests__/service.test.ts +2 -1
  163. package/edit/auth/oidc.vue +159 -93
  164. package/edit/fleet.cattle.io.gitrepo.vue +26 -33
  165. package/edit/fleet.cattle.io.helmop.vue +997 -0
  166. package/edit/management.cattle.io.fleetworkspace.vue +43 -10
  167. package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -14
  168. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +57 -62
  169. package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +3 -14
  170. package/edit/networking.k8s.io.networkpolicy/__tests__/PolicyRuleTarget.test.ts +72 -41
  171. package/edit/networking.k8s.io.networkpolicy/__tests__/utils/mock.json +17 -1
  172. package/edit/networking.k8s.io.networkpolicy/index.vue +18 -30
  173. package/edit/provisioning.cattle.io.cluster/index.vue +21 -73
  174. package/edit/service.vue +13 -28
  175. package/list/fleet.cattle.io.gitrepo.vue +1 -1
  176. package/list/fleet.cattle.io.helmop.vue +108 -0
  177. package/list/namespace.vue +5 -2
  178. package/list/workload.vue +6 -1
  179. package/mixins/auth-config.js +8 -1
  180. package/mixins/preset.js +100 -0
  181. package/mixins/resource-fetch-api-pagination.js +57 -43
  182. package/mixins/resource-fetch.js +15 -6
  183. package/mixins/resource-table-watch.js +45 -0
  184. package/models/__tests__/chart.test.ts +273 -0
  185. package/models/__tests__/fleet.cattle.io.gitrepo.test.ts +1 -1
  186. package/models/__tests__/workload.test.ts +1 -0
  187. package/models/chart.js +144 -2
  188. package/models/cluster/node.js +1 -0
  189. package/models/cluster.js +32 -2
  190. package/models/fleet-application.js +385 -0
  191. package/models/fleet.cattle.io.bundle.js +9 -8
  192. package/models/fleet.cattle.io.gitrepo.js +41 -365
  193. package/models/fleet.cattle.io.helmop.js +228 -0
  194. package/models/management.cattle.io.authconfig.js +1 -0
  195. package/models/management.cattle.io.cluster.js +0 -20
  196. package/models/management.cattle.io.fleetworkspace.js +12 -0
  197. package/models/management.cattle.io.node.js +7 -22
  198. package/models/management.cattle.io.nodepool.js +12 -0
  199. package/models/namespace.js +5 -0
  200. package/models/provisioning.cattle.io.cluster.js +18 -64
  201. package/models/service.js +24 -9
  202. package/models/workload.js +84 -49
  203. package/package.json +2 -1
  204. package/pages/auth/verify.vue +13 -1
  205. package/pages/c/_cluster/apps/charts/AddRepoLink.vue +37 -0
  206. package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +80 -0
  207. package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +54 -0
  208. package/pages/c/_cluster/apps/charts/StatusLabel.vue +33 -0
  209. package/pages/c/_cluster/apps/charts/index.vue +302 -484
  210. package/pages/c/_cluster/apps/charts/install.vue +0 -1
  211. package/pages/c/_cluster/explorer/EventsTable.vue +1 -1
  212. package/pages/c/_cluster/explorer/index.vue +11 -0
  213. package/pages/c/_cluster/fleet/__tests__/index.test.ts +426 -0
  214. package/pages/c/_cluster/fleet/application/_resource/_id.vue +14 -0
  215. package/pages/c/_cluster/fleet/application/_resource/create.vue +14 -0
  216. package/pages/c/_cluster/fleet/application/create.vue +340 -0
  217. package/pages/c/_cluster/fleet/application/index.vue +139 -0
  218. package/pages/c/_cluster/fleet/graph/config.js +277 -0
  219. package/pages/c/_cluster/fleet/index.vue +772 -330
  220. package/pages/c/_cluster/longhorn/index.vue +2 -2
  221. package/pages/c/_cluster/settings/banners.vue +56 -2
  222. package/pages/c/_cluster/settings/performance.vue +7 -26
  223. package/pages/explorer/resource/detail/configmap.vue +19 -0
  224. package/pages/home.vue +11 -52
  225. package/plugins/clean-html.js +2 -0
  226. package/plugins/dashboard-store/__tests__/actions.test.ts +4 -1
  227. package/plugins/dashboard-store/actions.js +153 -30
  228. package/plugins/dashboard-store/getters.js +108 -24
  229. package/plugins/dashboard-store/mutations.js +61 -12
  230. package/plugins/dashboard-store/resource-class.js +36 -4
  231. package/plugins/steve/__tests__/getters.test.ts +18 -11
  232. package/plugins/steve/__tests__/steve-class.test.ts +1 -0
  233. package/plugins/steve/__tests__/subscribe.spec.ts +66 -1
  234. package/plugins/steve/actions.js +37 -12
  235. package/plugins/steve/getters.js +39 -10
  236. package/plugins/steve/steve-class.js +5 -0
  237. package/plugins/steve/steve-pagination-utils.ts +213 -50
  238. package/plugins/steve/subscribe.js +229 -42
  239. package/plugins/steve/worker/web-worker.advanced.js +3 -1
  240. package/rancher-components/BadgeState/BadgeState.vue +3 -1
  241. package/rancher-components/Banner/Banner.test.ts +51 -3
  242. package/rancher-components/Banner/Banner.vue +28 -6
  243. package/rancher-components/Form/Checkbox/Checkbox.vue +2 -2
  244. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +5 -1
  245. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +21 -1
  246. package/rancher-components/RcItemCard/RcItemCard.test.ts +189 -0
  247. package/rancher-components/RcItemCard/RcItemCard.vue +425 -0
  248. package/rancher-components/RcItemCard/RcItemCardAction.vue +24 -0
  249. package/rancher-components/RcItemCard/index.ts +2 -0
  250. package/store/auth.js +1 -0
  251. package/store/catalog.js +62 -24
  252. package/store/features.js +0 -1
  253. package/store/index.js +33 -14
  254. package/store/slideInPanel.ts +6 -0
  255. package/store/type-map.js +1 -0
  256. package/store/type-map.utils.ts +45 -2
  257. package/types/fleet.d.ts +36 -1
  258. package/types/kube/kube-api.ts +22 -0
  259. package/types/resources/settings.d.ts +19 -5
  260. package/types/shell/index.d.ts +595 -471
  261. package/types/store/dashboard-store.types.ts +41 -4
  262. package/types/store/pagination.types.ts +25 -3
  263. package/types/store/subscribe.types.ts +50 -0
  264. package/utils/auth.js +32 -3
  265. package/utils/cluster.js +24 -20
  266. package/utils/fleet-types.ts +0 -0
  267. package/utils/fleet.ts +200 -1
  268. package/utils/grafana.js +1 -0
  269. package/utils/object.js +0 -12
  270. package/utils/pagination-utils.ts +32 -3
  271. package/utils/pagination-wrapper.ts +132 -50
  272. package/utils/perf-setting.utils.ts +28 -0
  273. package/utils/selector-typed.ts +205 -0
  274. package/utils/selector.js +29 -6
  275. package/utils/settings.ts +4 -1
  276. package/utils/style.ts +39 -0
  277. package/utils/uiplugins.ts +10 -6
  278. package/utils/v-sphere.ts +5 -1
  279. package/utils/validators/formRules/__tests__/index.test.ts +36 -3
  280. package/utils/validators/formRules/index.ts +10 -3
  281. package/utils/window.js +11 -7
  282. package/components/__tests__/ApplicationCard.test.ts +0 -27
  283. package/components/cards/ApplicationCard.vue +0 -145
  284. package/components/fleet/ForceDirectedTreeChart/chartIcons.js +0 -17
  285. package/components/formatter/RKETemplateName.vue +0 -37
  286. package/config/secret.js +0 -14
  287. package/dialog/SaveAsRKETemplateDialog.vue +0 -139
  288. package/pages/c/_cluster/fleet/GitRepoGraphConfig.js +0 -249
  289. /package/{components/form/SSHKnownHosts → dialog}/__tests__/KnownHostsEditDialog.test.ts +0 -0
@@ -7,6 +7,9 @@ generic:
7
7
  userMenu: user menu
8
8
  actionMenu: action menu
9
9
  namespaceFilter: namespace filter menu
10
+ banners:
11
+ altCloseBanner: Close banner icon
12
+ bannerIcon: Banner icon
10
13
  filterNamespaces: filter namespaces
11
14
  clearSearch: clear search
12
15
  clearFilters: clear filters
@@ -116,6 +119,13 @@ generic:
116
119
  experimental: Experimental
117
120
 
118
121
  deprecated: Deprecated
122
+ upgradeable: Upgradeable
123
+ installed: Installed
124
+ featured: Featured
125
+ shortFeatured: Feat
126
+ category: Category
127
+ tags: Tags
128
+ tag: Tag
119
129
  placeholder: "e.g. {text}"
120
130
  moreInfo: More Info
121
131
  selectors:
@@ -129,8 +139,24 @@ generic:
129
139
  }
130
140
  basic: Basic
131
141
  ariaLabel:
132
- key: Key {index}
133
- value: Value {index}
142
+ keyValue: Key-Value input
143
+ key: Key for row {index}
144
+ value: Value for row {index}
145
+ remove: remove row {index}
146
+ addKeyValue: Add a new Key-Value row
147
+ readKeyValue: read Key-Values from file
148
+ genericAddRow: Add a new row
149
+ arrayList: Array list input
150
+ genericRow: row {index}
151
+ showLess: Show less
152
+ showMore: Show more
153
+ opensInNewTab: Opens in a new tab
154
+
155
+
156
+ graph:
157
+ noPermissions: You do not have permission to Graph view
158
+ loading: Loading chart data...
159
+ rendering: Rendering chart...
134
160
 
135
161
  locale:
136
162
  menu: Locale selector menu
@@ -181,7 +207,6 @@ nav:
181
207
  restoreSnapshot: Restore Snapshot
182
208
  rotateCertificates: Rotate Certificates
183
209
  rotateEncryptionKeys: Rotate Encryption Keys
184
- saveAsRKETemplate: Save as RKE Template
185
210
  takeSnapshot: Take Snapshot
186
211
  seeAllClusters: See all clusters
187
212
  seeAllClustersCollapsed: See all
@@ -216,6 +241,7 @@ nav:
216
241
  Scheduling: Scheduling
217
242
  Storage: Storage
218
243
  Project: Project
244
+ resources: Resources
219
245
  ns:
220
246
  all: All Namespaces
221
247
  clusterLevel: Only Cluster Resources
@@ -657,6 +683,7 @@ authConfig:
657
683
  oidc:
658
684
  genericoidc: Configure an OIDC account
659
685
  keycloakoidc: Configure a Keycloak OIDC account
686
+ cognito: Configure an Amazon Cognito account
660
687
  rancherUrl: Rancher URL
661
688
  clientId: Client ID
662
689
  clientSecret: Client Secret
@@ -675,6 +702,8 @@ authConfig:
675
702
  tokenEndpoint: Token Endpoint
676
703
  userInfoEndpoint: User Info Endpoint
677
704
  acrValue: Authorization Context Reference
705
+ cognitoIssuer: Issuer URL
706
+ cognitoHelp: "You will need to create an application client in Cognito of type <b>Traditional web application</b> with the Return URL set to the URL shown below."
678
707
  scope:
679
708
  label: Scopes
680
709
  placeholder: openid
@@ -717,6 +746,8 @@ assignTo:
717
746
  workspace: Workspace
718
747
 
719
748
  asyncButton:
749
+ alt:
750
+ iconAlt: Async button icon
720
751
  apply:
721
752
  action: Apply
722
753
  success: Applied
@@ -836,6 +867,10 @@ asyncButton:
836
867
  action: Resume Orchestration
837
868
  success: Resumed Orchestration
838
869
  waiting: Resuming Orchestration
870
+ redeploy:
871
+ action: Redeploy
872
+ success: Redeployed
873
+ waiting: Redeploying Workload
839
874
  rollback:
840
875
  action: Roll Back
841
876
  success: Rolled Back
@@ -1001,9 +1036,6 @@ catalog:
1001
1036
  experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
1002
1037
  deprecatedAndExperimentalWarning: '{chartName} has been marked as deprecated and experimental. Use caution when installing this helm chart as it might be removed in the future and might not function as expected.'
1003
1038
  charts:
1004
- browseBtn: Browse
1005
- featuredBtn: Featured
1006
- featuredAriaLabel: Show Featured Charts Carousel and charts grid
1007
1039
  browseAriaLabel: Show only charts grid
1008
1040
  iconAlt: Icon for {app} card/grid item
1009
1041
  refresh: refresh charts
@@ -1029,6 +1061,14 @@ catalog:
1029
1061
  search: Filter charts results
1030
1062
  deprecatedChartsFilter:
1031
1063
  label: Show deprecated apps
1064
+ addNewRepo:
1065
+ label: Add new
1066
+ ariaLabel: Add a new repository
1067
+ appChartCard:
1068
+ footerItem:
1069
+ ariaLabel: Apply filter
1070
+ experimentalStatus:
1071
+ tooltip: Experimental - using this filter is not yet 100% accurate. Proceed with caution.
1032
1072
  install:
1033
1073
  action:
1034
1074
  goToUpgrade: Edit/Upgrade
@@ -1936,9 +1976,8 @@ cluster:
1936
1976
  =1 { {pool_name}: The provided value for {fields} was not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
1937
1977
  other { {pool_name}: The provided values for {fields} were not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
1938
1978
  }
1939
- rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters. We recommend replatforming RKE1 clusters to RKE2 to ensure continued support and security updates. Learn more about the transition <a href="https://www.suse.com/support/kb/doc/?id=000021518" target="_blank" rel="noopener noreferrer nofollow">here</a>.'
1940
- rke1DeprecationShortMessage: Rancher Kubernetes Engine (RKE / RKE1) will reach end of life on July 31, 2025. Rancher 2.12.0 and later will no longer support provisioning or managing downstream RKE1 clusters.
1941
- rkeTemplateUpgrade: Template revision {name} available for upgrade
1979
+ rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) has reached end of life and these clusters are no longer supported. We recommend replatforming RKE1 clusters to RKE2 to ensure continued support and security updates. Learn more about the transition <a href="https://www.suse.com/support/kb/doc/?id=000021518" target="_blank" rel="noopener noreferrer nofollow">here</a>.'
1980
+ rke1Unsupported: RKE1 Clusters are no longer supported
1942
1981
  cloudCredentials:
1943
1982
  renew: Renew Cloud Credentials
1944
1983
  expired: Cloud Credential expired, please Renew Cloud Credentials
@@ -2464,6 +2503,12 @@ etcdInfoBanner:
2464
2503
  failedProposals: "Number of failed proposals:"
2465
2504
 
2466
2505
  fleet:
2506
+ tableHeaders:
2507
+ applicationType: Type
2508
+ applicationSource: Source
2509
+ applicationTarget: Target
2510
+ applicationClustersReady: Clusters Ready
2511
+ applicationResourcesSummary: Resources
2467
2512
  dashboard:
2468
2513
  pageTitle: Continuous Delivery Dashboard
2469
2514
  menuLabel: Dashboard
@@ -2471,15 +2516,31 @@ fleet:
2471
2516
  gitOpsScale: GitOps at scale.
2472
2517
  learnMore: Learn More.
2473
2518
  learnMoreLink: https://fleet.rancher.io
2474
- noRepo: "You don't have any Git Repositories in your Workspaces"
2519
+ noApplications: "You don't have any App Bundles in your Workspaces"
2475
2520
  getStarted: Get started
2476
- thereIsMore: |-
2477
- {count, plural,
2478
- =1 { There is one other workspace with no repositories}
2479
- other { There are { count } other workspaces with no repositories}
2480
- }
2521
+ workspace: Workspace
2522
+ expand: Expand
2523
+ collapse: Collapse
2481
2524
  expandAll: Expand All
2482
2525
  collapseAll: Collapse All
2526
+ state: State
2527
+ viewMode:
2528
+ table: Show table
2529
+ cards: Show cards
2530
+ cards:
2531
+ filters:
2532
+ gitRepos: Show Git Repos
2533
+ helmOps: Show Helm Ops
2534
+ resourceSummary:
2535
+ part1: in
2536
+ part2: |-
2537
+ {count, plural,
2538
+ =1 { cluster }
2539
+ other { clusters }
2540
+ }
2541
+ noClusters: Not targeting any clusters
2542
+ resources: Resources
2543
+ source: Source
2483
2544
  cluster:
2484
2545
  summary: Resource Summary
2485
2546
  nonReady: Non-Ready Bundles
@@ -2506,7 +2567,9 @@ fleet:
2506
2567
  other {# bundles are hidden as they belong to Harvester clusters that can not be used with Continuous Delivery}
2507
2568
  }
2508
2569
  fleetSummary:
2509
- noClustersGitRepo: This git repo is not targeting any clusters
2570
+ noClusters:
2571
+ gitRepo: This GitRepo is not targeting any clusters
2572
+ helmOp: This HelmOp is not targeting any clusters
2510
2573
  state:
2511
2574
  ready: 'Ready'
2512
2575
  info: 'Transitioning'
@@ -2515,8 +2578,30 @@ fleet:
2515
2578
  unknown: 'Unknown'
2516
2579
  notReady: Not Ready
2517
2580
  waitApplied: Wait Applied
2581
+ application:
2582
+ pageTitle: App Bundles
2583
+ menuLabel: App Bundles
2584
+ intro:
2585
+ add: Create App Bundle
2586
+ empty: No App Bundles have been created
2587
+ actions:
2588
+ create: Create App Bundle
2589
+ groupBy: Group By Type
2590
+ subTypes:
2591
+ fleet.cattle.io.gitrepo:
2592
+ description: GitRepo describes a git repository that is watched by Fleet. The resource contains the necessary information to deploy the repo, or parts of it, to target clusters.
2593
+ fleet.cattle.io.helmop:
2594
+ description: HelmOp is a simplified way of creating bundles by directly pointing to a Helm repository or to an OCI registry, without needing to set up a git repository.
2595
+ warningTooltip:
2596
+ clusterGroup: There are no clusters in this Cluster Group
2597
+ cluster: There are no clusters available
2598
+ noPermissions: You have no permissions to create {label}
2518
2599
  gitRepo:
2600
+ intro:
2601
+ add: Create Git Repo
2602
+ empty: No Git Repos have been added
2519
2603
  actions:
2604
+ add: Create Git Repo
2520
2605
  forceUpdate:
2521
2606
  label: Force Update
2522
2607
  promptTitle: Force Update
@@ -2558,7 +2643,7 @@ fleet:
2558
2643
  placeholder: e.g. https://github.com/rancher/fleet-examples.git or git@github.com:rancher/fleet-examples.git
2559
2644
  addRepo: Add Repository
2560
2645
  noRepos: No repositories have been added
2561
- noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
2646
+ noWorkspaces: There are no workspaces.
2562
2647
  resources:
2563
2648
  label: 'Resource Handling'
2564
2649
  keepResources: Always keep resources
@@ -2573,6 +2658,13 @@ fleet:
2573
2658
  tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
2574
2659
  webhookWarning: A webhook is configured in Rancher to reconcile Git updates and GitRepo resources. The Polling Interval will automatically be adjusted to 1 hour.
2575
2660
  minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with GitRepos that contain a large amount of resources please consider increasing this value.
2661
+ ociStorageSecret:
2662
+ title: OCI Registry
2663
+ label: OCI Storage Secret
2664
+ tooltip: If 'None' is selected, Fleet will use the 'ocistorage' fallback secret when existing in current workspace.<br>Every changes of the selected OCI storage secret will not be applied until next Git Repo update.
2665
+ options:
2666
+ chooseExisting: "Choose a secret:"
2667
+ chooseCustom: "Choose a custom secret:"
2576
2668
  add:
2577
2669
  steps:
2578
2670
  metadata:
@@ -2629,13 +2721,155 @@ fleet:
2629
2721
  verify: Require a valid certificate
2630
2722
  specify: Specify additional certificates to be accepted
2631
2723
  skip: Accept any certificate (insecure)
2632
- warningTooltip:
2633
- clusterGroup: There are no clusters in this Cluster Group
2634
- cluster: There are no clusters available
2635
2724
  workspace:
2636
2725
  label: Workspace
2637
2726
  addWorkspace: Create a workspace
2638
2727
  helmRepoURLRegex: Helm Repos (URL Regex)
2728
+ helmOp:
2729
+ intro:
2730
+ add: Create Helm Op
2731
+ empty: No Helm Ops have been added
2732
+ actions:
2733
+ add: Create Helm Op
2734
+ enablePolling:
2735
+ label: Enable Polling
2736
+ disablePolling:
2737
+ label: Disable Polling
2738
+ forceUpdate:
2739
+ label: Force Update
2740
+ promptTitle: Force Update
2741
+ promptNames: 'You are attempting to update: '
2742
+ promptWarning: |-
2743
+ {
2744
+ count, plural,
2745
+ =1 {Force update could be a long running process.}
2746
+ other {Force update could be a long running process.}
2747
+ }
2748
+ unpause:
2749
+ label: Unpause
2750
+ pause:
2751
+ label: Pause
2752
+ add:
2753
+ steps:
2754
+ metadata:
2755
+ label: Metadata
2756
+ title: Specify the Helm Op name and labels/annotations
2757
+ subtext: 'Define metadata details'
2758
+ description: Helm Op basic info
2759
+ chart:
2760
+ label: Chart
2761
+ title: chart
2762
+ subtext: 'Define Helm Chart source details'
2763
+ description: chart
2764
+ values:
2765
+ label: Values
2766
+ title: values
2767
+ subtext: 'Define Helm Values for the chart'
2768
+ description: values
2769
+ targetInfo:
2770
+ label: Target details
2771
+ title: Specify which target to synchronise this repository to
2772
+ subtext: 'Define target details'
2773
+ description: You can configure which clusters will be used as the target of synchronisation with the resources in the repository.
2774
+ advanced:
2775
+ label: Advanced
2776
+ title: Specify advanced settings like authenticaion credentials and polling
2777
+ subtext: 'Define advanced settings'
2778
+ description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
2779
+ info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
2780
+ source:
2781
+ title: Source
2782
+ selectLabel: Type
2783
+ types:
2784
+ tarball: Tarball
2785
+ repo: Repository
2786
+ oci: OCI Registry
2787
+ tarball:
2788
+ label: Absolute URL
2789
+ placeholder: e.g. https://github.com/rancher/fleet/helm-chart/helm-chart-0.0.1.tgz
2790
+ repo:
2791
+ repo:
2792
+ label: URL
2793
+ placeholder: e.g. https://github.com/rancher/fleet/helm-chart
2794
+ chart:
2795
+ label: Chart
2796
+ placeholder: The path to the chart name in the repository
2797
+ oci:
2798
+ chart:
2799
+ label: OCI Registry URL
2800
+ placeholder: e.g. oci://ghcr.io/rancher/fleet/helm-chart or oci://ghcr.io/rancher/fleet/helm-chart:0.0.1
2801
+ version:
2802
+ label: Version
2803
+ placeholder: The Chart version
2804
+ release:
2805
+ title: Release
2806
+ label: Name
2807
+ placeholder: The Helm release name
2808
+ values:
2809
+ title: Values
2810
+ selectLabel: Values
2811
+ description: Configure Values used by Helm that help define the App.
2812
+ types:
2813
+ values: Values
2814
+ valuesFiles: Values Files
2815
+ valuesFrom: Values From
2816
+ yaml:
2817
+ options:
2818
+ edit: Edit YAML
2819
+ diff: Compare Changes
2820
+ values:
2821
+ selectLabel: YAML
2822
+ loading: Loading from chart
2823
+ valuesFiles:
2824
+ selectLabel: Files
2825
+ ariaLabel: Enter path for value File
2826
+ placeholder: ''
2827
+ addLabel: Add File path
2828
+ empty: empty
2829
+ valuesFrom:
2830
+ selectLabel: Values From
2831
+ serviceAccount:
2832
+ label: Service Account Name
2833
+ placeholder: "Optional: Use a service account in the target clusters"
2834
+ targetNamespace:
2835
+ label: Target Namespace
2836
+ placeholder: "Optional: Require all resources to be in this namespace"
2837
+ target:
2838
+ selectLabel: Target
2839
+ advanced: Advanced
2840
+ cluster: Cluster
2841
+ clusterGroup: Cluster Group
2842
+ label: Deploy To
2843
+ labelLocal: Deploy With
2844
+ targetDisplay:
2845
+ advanced: Advanced
2846
+ cluster: "Cluster"
2847
+ clusterGroup: "Group"
2848
+ all: All
2849
+ none: None
2850
+ local: Local
2851
+ resources:
2852
+ label: 'Resource Handling'
2853
+ keepResources: Always keep resources
2854
+ keepResourcesTooltip: When enabled, resources will be kept when deleting a HelmOp or Bundle - only Helm release secrets will be deleted.
2855
+ correctDrift: Enable self-healing
2856
+ correctDriftTooltip: When enabled, Fleet will ensure that the cluster resources are kept in sync with the HelmOp. All resource changes made on the cluster will be lost.
2857
+ polling:
2858
+ label: Polling
2859
+ enable: Enable Polling
2860
+ pollingInterval:
2861
+ label: Polling Interval
2862
+ tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
2863
+ minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with GitRepos that contain a large amount of resources please consider increasing this value.
2864
+ tls:
2865
+ insecure: Accept any certificate (insecure)
2866
+ auth:
2867
+ title: Authentication
2868
+ label: Authentication
2869
+ helm: Helm Authentication
2870
+ caBundle:
2871
+ label: Certificates
2872
+ placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
2639
2873
  clusterGroup:
2640
2874
  selector:
2641
2875
  label: Cluster Selectors
@@ -2647,8 +2881,6 @@ fleet:
2647
2881
  other {Matches {matched, number} of {total, number} existing clusters, including "{sample}"}
2648
2882
  }
2649
2883
  fdc:
2650
- loadingChart: Loading chart data...
2651
- renderingChart: Rendering chart...
2652
2884
  id: ID
2653
2885
  type: Type
2654
2886
  state: State
@@ -2659,6 +2891,7 @@ fleet:
2659
2891
  workspaces:
2660
2892
  tabs:
2661
2893
  restrictions: Allowed Target Namespaces
2894
+ ociRegistry: Default OCI Registry
2662
2895
  timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
2663
2896
  remove:
2664
2897
  warning: "Deleting a Workspace also deletes all resources in the Workspace. This includes GitRepos but also Clusters.<br><br>Deleted Clusters will be removed from {vendor}, and if {vendor} manages the life-cycle of the Cluster it's underlying infrastructure will also be deleted."
@@ -3138,6 +3371,9 @@ istio:
3138
3371
  tracing: Enable Jaeger Tracing (limited)
3139
3372
  v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
3140
3373
 
3374
+ itemCard:
3375
+ ariaLabel:
3376
+ clickable: Click on card for {cardTitle}
3141
3377
  jwt:
3142
3378
  title: JWT Authentication
3143
3379
  actions:
@@ -3209,8 +3445,6 @@ landing:
3209
3445
  title: Commercial Support
3210
3446
  body: Learn about commercial support
3211
3447
  landingPrefs:
3212
- title: You can change what you see when you login via preferences
3213
- userPrefs: Preferences
3214
3448
  body: "You can change where you land when you login"
3215
3449
  ariaLabelTakeMeToCluster: Select which cluster to take me to after login
3216
3450
  options:
@@ -3908,6 +4142,7 @@ nameNsDescription:
3908
4142
  placeholder: Any text you want that better describes this resource
3909
4143
 
3910
4144
  namespace:
4145
+ cancelCreateAriaLabel: Cancel create namespace
3911
4146
  containerResourceLimit: Container Resource Limit
3912
4147
  resourceQuotas: Resource Quotas
3913
4148
  project:
@@ -3949,7 +4184,7 @@ namespaceFilter:
3949
4184
  input: Filter namespace options
3950
4185
  button:
3951
4186
  clear: Remove applied namespace filters
3952
- clearFilter: Clear namespace options filter
4187
+ clearFilter: Clear namespace options filter
3953
4188
 
3954
4189
  namespaceList:
3955
4190
  selectLabel: Namespace
@@ -4084,6 +4319,7 @@ networkpolicy:
4084
4319
  =1 {1 of {totalNamespaces, number} namespaces: "{sampleNamespaces}"}
4085
4320
  other {{matchedNamespaces, number} of {totalNamespaces, number} existing namespaces, including "{sampleNamespaces}"}
4086
4321
  }
4322
+
4087
4323
  node:
4088
4324
  list:
4089
4325
  pool: Pool
@@ -4981,11 +5217,9 @@ promptRollback:
4981
5217
  multipleWorkloadError: "Only one workload can be rolled back at a time."
4982
5218
  singleRevisionBanner: There are no revisions to roll back to.
4983
5219
 
4984
- promptSaveAsRKETemplate:
4985
- title: Convert {cluster} to new RKE Template
4986
- name: Cluster Template Name
4987
- description: Create a new RKE cluster template and initial revision from the current cluster configuration.
4988
- warning: This will modify the cluster, setting it up to use the newly created cluster template and revision. This can not be undone.
5220
+ promptRedeploy:
5221
+ title: Redeploy {type}?
5222
+ attemptingToRedeploy: "You are attempting to redeploy the {type} {names}<br><br>Redeploying will restart the selected workloads and may cause temporary downtime."
4989
5223
 
4990
5224
  promptRotateEncryptionKey:
4991
5225
  title: Rotate Encryption Keys
@@ -5035,6 +5269,7 @@ rbac:
5035
5269
  resources: Resource
5036
5270
  nonResourceUrls: Non-Resource URLs
5037
5271
  apiGroups: API Groups
5272
+ psaWarning: Granting Project Roles the ability to amend PSA labels could lead to a weaker security posture and allow for privilege escalation. This is only recommended for advanced users who understand the risks involved.
5038
5273
  subtypes:
5039
5274
  GLOBAL:
5040
5275
  createButton: Create Global Role
@@ -5241,6 +5476,8 @@ resourceTable:
5241
5476
  notInANodePool: "Not in a Pool"
5242
5477
  nodePool: "<span>Pool:</span> {name}"
5243
5478
  node: "<span>Node:</span> {name}"
5479
+ autoRefresh:
5480
+ label: Auto Refresh
5244
5481
 
5245
5482
  resourceTabs:
5246
5483
  conditions:
@@ -5947,7 +6184,6 @@ tableHeaders:
5947
6184
  endpoints: Endpoints
5948
6185
  expires: Expires
5949
6186
  firstSeen: First Seen
5950
- fleetBundleType: Type
5951
6187
  flow: Flow
5952
6188
  fingerprint: Fingerprint
5953
6189
  gitRepos: Git Repos
@@ -6247,7 +6483,9 @@ validation:
6247
6483
  both: Requires "Output" or "Cluster Output" to be selected.
6248
6484
  global: Requires "Cluster Output" to be selected.
6249
6485
  git:
6250
- repository: Repository URL must be a HTTP(s) or SSH url with no trailing spaces
6486
+ url: URL must be a HTTP(s) or SSH url with no trailing spaces
6487
+ oci:
6488
+ url: URL must be an OCI url with no trailing spaces
6251
6489
  output:
6252
6490
  logdna:
6253
6491
  apiKey: Required an "Api Key" to be set.
@@ -6628,6 +6866,9 @@ workload:
6628
6866
  workload: Workload
6629
6867
  pods: Pods by State
6630
6868
  runs: Runs
6869
+ started: Started
6870
+ duration: Last Scheduled Time
6871
+ image: Image
6631
6872
  error: Pod { name } Security Policy Violation { policy }
6632
6873
  gaugeStates:
6633
6874
  succeeded: Successful
@@ -6941,6 +7182,7 @@ model:
6941
7182
  saml: SAML
6942
7183
  oauth: OAuth
6943
7184
  oidc: OIDC
7185
+ cognito: Amazon Cognito
6944
7186
  name:
6945
7187
  keycloak: Keycloak (SAML)
6946
7188
  keycloakoidc: Keycloak (OIDC)
@@ -6962,6 +7204,8 @@ model:
6962
7204
  googleoauth: Google
6963
7205
  genericoidc: Generic OIDC
6964
7206
  keycloakoidc: Keycloak
7207
+ cognito: Amazon Cognito
7208
+
6965
7209
 
6966
7210
  cluster:
6967
7211
  name: Cluster Name
@@ -7111,11 +7355,21 @@ typeLabel:
7111
7355
  one { Cluster Group }
7112
7356
  other {Cluster Groups }
7113
7357
  }
7358
+ fleet.cattle.io.application: |-
7359
+ {count, plural,
7360
+ one { App Bundle }
7361
+ other { App Bundles }
7362
+ }
7114
7363
  fleet.cattle.io.gitrepo: |-
7115
7364
  {count, plural,
7116
7365
  one { Git Repo }
7117
7366
  other {Git Repos }
7118
7367
  }
7368
+ fleet.cattle.io.helmop: |-
7369
+ {count, plural,
7370
+ one { Helm Op }
7371
+ other { Helm Ops }
7372
+ }
7119
7373
  management.cattle.io.authconfig: |-
7120
7374
  {count, plural,
7121
7375
  one { Authentication Provider }
@@ -7826,15 +8080,12 @@ performance:
7826
8080
  authUserTTL: This timeout cannot be higher than the user session timeout auth-user-session-ttl-minutes, which is currently {current} minutes.
7827
8081
  serverPagination:
7828
8082
  label: Server-side Pagination
7829
- description: By default Lists will fetch all resources and paginate in the browser (create the page given sorting and filtering settings). Change this setting to enable pagination server-side. This should help the responsiveness of the UI in systems with a lot of resources.
7830
- checkboxLabel: Enable Server-side Pagination
8083
+ description: By default Lists will fetch all resources and paginate (create the page given sort and filter settings) locally in the browser. Server-Side Pagination moves this out from the browser to the server. This improves performance of the UI, especially in systems with lots of resources.
7831
8084
  applicable: "Server-side pagination applies to Resource Types"
7832
- incompatibleDescription: "Server-side Pagination is incompatible with Manual Refresh and Incremental Loading. Enabling this will disable them."
7833
- featureFlag: The&nbsp;<a href="{ffUrl}">Feature Flag</a>&nbsp;`ui-sql-cache` must be enabled to use this feature
8085
+ featureFlag: Enabling/Disabling <i class="mr-5">"Server-side Pagination"</i> is now solely done so via the <i class="mr-5">ui-sql-cache</i>&nbsp;<a href="{ffUrl}">Feature Flag</a>
7834
8086
  resources:
7835
8087
  generic: most resources in the cluster's 'More Resources' section
7836
8088
  all: All Resources
7837
- experimental: This setting is experimental and may be removed or updated in future versions. We do not recommend enabling this setting in production environments.
7838
8089
  banner:
7839
8090
  label: Fixed Banners
7840
8091
  settingName: Banners
@@ -7867,6 +8118,12 @@ banner:
7867
8118
  consent: Consent Banner
7868
8119
  consentFootnote: "Tip: Use \\n character for line break"
7869
8120
  individualSetting: 'This banner is managed by the setting "{name}" and can not be modified in the UI'
8121
+ type:
8122
+ html: HTML
8123
+ text: Text
8124
+ htmlWarning: 'Not all HTML elements or attriutes are permitted and the HTML entered here will be sanitized before display. For HTML anchor elements, it is recommended to use the target attribute to have links open in a blank tab.'
8125
+ htmlContent: HTML Content
8126
+ toggleTextHtml: Toggle between text and html
7870
8127
 
7871
8128
  branding:
7872
8129
  label: Branding
@@ -8167,3 +8424,86 @@ gitPicker:
8167
8424
  networkAttachmentDefinition:
8168
8425
  tabs:
8169
8426
  config: Config
8427
+
8428
+ errors:
8429
+ actionNotAvailable: This action is not currently available
8430
+ missingRequired: is required
8431
+ notUnique: is not unique
8432
+ notNullable: must be set
8433
+ invalidOption: is not a valid option
8434
+ invalidCharacters: contains invalid characters
8435
+ minLengthExceeded: is not long enough
8436
+ maxLengthExceeded: is too long
8437
+ minLimitExceeded: is too small
8438
+ maxLimitExceded: is too big
8439
+ messageAndDetail: '{message} ({detail})'
8440
+ messageOrDetail: '{val}'
8441
+ failedInApi:
8442
+ withName:
8443
+ withCodeExplanation:
8444
+ withMessageDetail: 'Validation failed in API: {name} {codeExplanation}: {messageDetail}'
8445
+ withoutMessageDetail: 'Validation failed in API: {name} {codeExplanation}'
8446
+ withMessageDetail: 'Validation failed in API: {name} {messageDetail}'
8447
+ withoutAnythingElse: 'Validation failed in API: {name} '
8448
+ withoutName:
8449
+ withMessageDetail:
8450
+ withCodeExplanation: 'Validation failed in API: {codeExplanation}: {messageDetail}'
8451
+ withoutCodeExplanation: 'Validation failed in API: {messageDetail}'
8452
+ withCode:
8453
+ withCodeExplanation: 'Validation failed in API: {code} {codeExplanation}'
8454
+ withoutCodeExplanation: 'Validation failed in API: {code}'
8455
+ withoutAnything: Validation failed in API.
8456
+ notFound:
8457
+ withUrl: '{msg}: {url}'
8458
+ withoutUrl: '{msg}'
8459
+ component:
8460
+ resource:
8461
+ detail:
8462
+ card:
8463
+ resourceUsage:
8464
+ used: Used
8465
+ amount: '{used} of {available}'
8466
+ cpu: CPU
8467
+ memory: Memory
8468
+ pods: Pods
8469
+ resourcesCard:
8470
+ title: Resources
8471
+ rows:
8472
+ services: Services
8473
+ ingresses: Ingresses
8474
+ referredToBy: Referred to by
8475
+ refersTo: Refers to
8476
+ podsCard:
8477
+ title: Pods
8478
+ ariaResourceName: pods
8479
+ insightsCard:
8480
+ title: Insights
8481
+ rows:
8482
+ conditions: Conditions
8483
+ events: Events
8484
+ scaler:
8485
+ ariaLabel:
8486
+ increase: Increase {resourceName}
8487
+ decrease: Decrease {resourceName}
8488
+ titleBar:
8489
+ showConfiguration: Show Configuration
8490
+ ariaLabel:
8491
+ actionMenu: More actions - { resource }
8492
+ showConfiguration: Show the entire configuration of { resource }
8493
+ metadata:
8494
+ labelsAndAnnotations: Labels and Annotations
8495
+ identifyingInformation:
8496
+ namespace: Namespace
8497
+ project: Project
8498
+ age: Age
8499
+ image: Image
8500
+ ready: Ready
8501
+ up-to-date: Up-to-date
8502
+ available: Available
8503
+ annotations:
8504
+ title: Annotations
8505
+ labels:
8506
+ title: Labels
8507
+ keyValue:
8508
+ noRows: There are no {propertyName} configured on this resource.
8509
+ showConfiguration: Show Configuration