@rancher/shell 0.2.2 → 0.2.4

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 (634) hide show
  1. package/assets/brand/csp/dark/rancher-logo.svg +148 -0
  2. package/assets/brand/csp/favicon.png +0 -0
  3. package/assets/brand/csp/metadata.json +3 -0
  4. package/assets/brand/csp/rancher-logo.svg +130 -0
  5. package/assets/styles/app.scss +2 -1
  6. package/assets/styles/global/_layout.scss +53 -0
  7. package/assets/styles/themes/_csp.scss +25 -0
  8. package/assets/styles/themes/_dark.scss +2 -1
  9. package/assets/styles/themes/_light.scss +2 -1
  10. package/assets/styles/vendor/vue-select.scss +0 -5
  11. package/assets/translations/en-us.yaml +45 -28
  12. package/chart/istio.vue +81 -22
  13. package/chart/logging/index.vue +20 -6
  14. package/chart/monitoring/alerting/index.vue +4 -1
  15. package/chart/monitoring/index.vue +41 -9
  16. package/chart/monitoring/prometheus/index.vue +33 -29
  17. package/chart/monitoring/steps/uninstall-v1.vue +8 -4
  18. package/chart/rancher-backup/S3.vue +43 -8
  19. package/chart/rancher-backup/index.vue +23 -5
  20. package/chart/rancher-gatekeeper.vue +10 -2
  21. package/cloud-credential/aws.vue +8 -2
  22. package/cloud-credential/digitalocean.vue +4 -1
  23. package/cloud-credential/gcp.vue +9 -2
  24. package/cloud-credential/generic.vue +6 -1
  25. package/cloud-credential/harvester.vue +4 -1
  26. package/cloud-credential/linode.vue +4 -1
  27. package/cloud-credential/s3.vue +4 -1
  28. package/components/.DS_Store +0 -0
  29. package/components/ActionDropdown.vue +4 -1
  30. package/components/ActionMenu.vue +17 -4
  31. package/components/AdvancedSection.vue +6 -1
  32. package/components/Alert.vue +5 -1
  33. package/components/AssignTo.vue +24 -6
  34. package/components/AsyncButton.vue +10 -0
  35. package/components/AwsComplianceBanner.vue +4 -1
  36. package/components/BackLink.vue +5 -1
  37. package/components/BannerGraphic.vue +16 -4
  38. package/components/BrandImage.vue +4 -1
  39. package/components/ButtonDropdown.vue +10 -3
  40. package/components/ButtonGroup.vue +17 -4
  41. package/components/Carousel.vue +26 -8
  42. package/components/ChartHeading.vue +5 -1
  43. package/components/ChartReadme.vue +17 -5
  44. package/components/ClusterBadge.vue +5 -1
  45. package/components/ClusterProviderIcon.vue +15 -3
  46. package/components/Collapse.vue +17 -5
  47. package/components/CollapsibleCard.vue +10 -4
  48. package/components/CommunityLinks.vue +32 -9
  49. package/components/CompoundStatusBadge.vue +4 -1
  50. package/components/ContainerResourceLimit.vue +12 -3
  51. package/components/CopyToClipboardText.vue +10 -2
  52. package/components/CountBox.vue +13 -3
  53. package/components/CountGauge.vue +28 -5
  54. package/components/CruResource.vue +88 -23
  55. package/components/CruResourceFooter.vue +1 -1
  56. package/components/DashboardMetrics.vue +12 -3
  57. package/components/DashboardOptions.vue +14 -3
  58. package/components/DetailText.vue +28 -6
  59. package/components/DetailTop.vue +57 -12
  60. package/components/Dialog.vue +17 -5
  61. package/components/EmberPage.vue +23 -5
  62. package/components/EmberPageView.vue +4 -1
  63. package/components/EtcdInfoBanner.vue +5 -1
  64. package/components/ExplorerMembers.vue +7 -9
  65. package/components/ExplorerProjectsNamespaces.vue +42 -10
  66. package/components/FileDiff.vue +5 -1
  67. package/components/FixedBanner.vue +27 -7
  68. package/components/Flag.vue +8 -2
  69. package/components/Glance.vue +11 -2
  70. package/components/GlobalRoleBindings.vue +24 -5
  71. package/components/GradientBox.vue +5 -1
  72. package/components/GrafanaDashboard.vue +19 -5
  73. package/components/GrowlManager.vue +27 -6
  74. package/components/HardwareResourceGauge.vue +8 -2
  75. package/components/HarvesterServiceAddOnConfig.vue +4 -1
  76. package/components/IconMessage.vue +8 -2
  77. package/components/Import.vue +37 -8
  78. package/components/IndentedPanel.vue +4 -1
  79. package/components/InfoBox.vue +8 -2
  80. package/components/KeyValueView.vue +29 -7
  81. package/components/LandingPagePreference.vue +13 -2
  82. package/components/LazyImage.vue +5 -1
  83. package/components/Loading.vue +13 -3
  84. package/components/LocaleSelector.vue +10 -2
  85. package/components/Markdown.vue +5 -1
  86. package/components/MessageLink.vue +19 -4
  87. package/components/ModalWithCard.vue +24 -8
  88. package/components/MoveModal.vue +35 -7
  89. package/components/PercentageBar.vue +9 -2
  90. package/components/ProgressBarMulti.vue +4 -1
  91. package/components/PromptChangePassword.vue +17 -4
  92. package/components/PromptModal.vue +7 -1
  93. package/components/PromptRemove.vue +31 -10
  94. package/components/PromptRestore.vue +35 -10
  95. package/components/Questions/Array.vue +4 -1
  96. package/components/Questions/Boolean.vue +4 -1
  97. package/components/Questions/Enum.vue +4 -1
  98. package/components/Questions/Float.vue +4 -1
  99. package/components/Questions/Int.vue +4 -1
  100. package/components/Questions/QuestionMap.vue +4 -1
  101. package/components/Questions/Reference.vue +8 -2
  102. package/components/Questions/String.vue +4 -1
  103. package/components/Questions/index.vue +10 -2
  104. package/components/Random.vue +11 -3
  105. package/components/RelatedResources.vue +8 -2
  106. package/components/RelatedWorkloadsTable.vue +5 -1
  107. package/components/ResourceCancelModal.vue +15 -3
  108. package/components/ResourceDetail/Masthead.vue +31 -7
  109. package/components/ResourceList/Masthead.vue +6 -4
  110. package/components/ResourceList/ResourceLoadingIndicator.vue +8 -2
  111. package/components/ResourceList/index.vue +11 -8
  112. package/components/ResourceSummary.vue +13 -3
  113. package/components/ResourceTable.vue +59 -11
  114. package/components/ResourceYaml.vue +8 -2
  115. package/components/RoleBindings.vue +20 -3
  116. package/components/SelectIconGrid.vue +29 -7
  117. package/components/SimpleBox.vue +14 -3
  118. package/components/SingleClusterInfo.vue +40 -9
  119. package/components/SortableTable/THead.vue +29 -8
  120. package/components/SortableTable/filtering.js +7 -0
  121. package/components/SortableTable/index.vue +204 -45
  122. package/components/Tabbed/Tab.vue +9 -2
  123. package/components/Tabbed/index.vue +32 -7
  124. package/components/TableSparkLine.vue +4 -1
  125. package/components/Tip.vue +4 -1
  126. package/components/Wizard.vue +105 -23
  127. package/components/YamlEditor.vue +5 -1
  128. package/components/__tests__/.DS_Store +0 -0
  129. package/components/auth/AllowedPrincipals.vue +21 -5
  130. package/components/auth/AuthBanner.vue +21 -5
  131. package/components/auth/AzureWarning.vue +5 -1
  132. package/components/auth/Principal.vue +37 -9
  133. package/components/auth/RoleDetailEdit.vue +34 -10
  134. package/components/auth/SelectPrincipal.vue +20 -3
  135. package/components/auth/login/github.vue +5 -1
  136. package/components/auth/login/ldap.vue +10 -2
  137. package/components/auth/login/oauth.vue +6 -1
  138. package/components/auth/login/oidc.vue +6 -1
  139. package/components/auth/login/saml.vue +6 -1
  140. package/components/fleet/FleetBundles.vue +9 -2
  141. package/components/fleet/FleetClusters.vue +29 -6
  142. package/components/fleet/FleetIntro.vue +5 -2
  143. package/components/fleet/FleetRepos.vue +23 -4
  144. package/components/fleet/FleetStatus.vue +16 -4
  145. package/components/fleet/FleetSummary.vue +10 -2
  146. package/components/fleet/ForceDirectedTreeChart/index.vue +5 -3
  147. package/components/fleet/ResourcesSummary.vue +5 -1
  148. package/components/form/ArrayList.vue +31 -8
  149. package/components/form/ArrayListGrouped.vue +9 -3
  150. package/components/form/ArrayListSelect.vue +6 -1
  151. package/components/form/BannerSettings.vue +8 -2
  152. package/components/form/ChangePassword.vue +50 -10
  153. package/components/form/ColorInput.vue +28 -5
  154. package/components/form/Command.vue +5 -2
  155. package/components/form/EnvVars.vue +4 -1
  156. package/components/form/Error.vue +10 -2
  157. package/components/form/FileImageSelector.vue +1 -1
  158. package/components/form/FileSelector.vue +8 -2
  159. package/components/form/Footer.vue +14 -4
  160. package/components/form/GithubPicker.vue +16 -9
  161. package/components/form/HookOption.vue +5 -1
  162. package/components/form/InputWithSelect.vue +1 -1
  163. package/components/form/KeyValue.vue +81 -19
  164. package/components/form/LabeledSelect.vue +55 -8
  165. package/components/form/Labels.vue +1 -1
  166. package/components/form/LifecycleHooks.vue +10 -2
  167. package/components/form/MatchExpressions.vue +11 -3
  168. package/components/form/Members/ClusterPermissionsEditor.vue +21 -4
  169. package/components/form/Members/MembershipEditor.vue +11 -2
  170. package/components/form/NameNsDescription.vue +16 -10
  171. package/components/form/Networking.vue +3 -3
  172. package/components/form/NodeAffinity.vue +4 -1
  173. package/components/form/NodeScheduling.vue +5 -1
  174. package/components/form/Password.vue +32 -7
  175. package/components/form/PlusMinus.vue +18 -3
  176. package/components/form/PodAffinity.vue +12 -5
  177. package/components/form/PodSecurity.vue +20 -4
  178. package/components/form/Ports.vue +37 -11
  179. package/components/form/Probe.vue +18 -4
  180. package/components/form/ProjectMemberEditor.vue +24 -4
  181. package/components/form/ResourceQuota/NamespaceRow.vue +4 -1
  182. package/components/form/ResourceQuota/Project.vue +7 -1
  183. package/components/form/ResourceQuota/ProjectRow.vue +11 -2
  184. package/components/form/ResourceSelector.vue +145 -0
  185. package/components/form/ResourceTabs/index.vue +38 -7
  186. package/components/form/RuleSelector.vue +15 -4
  187. package/components/form/SecretSelector.vue +4 -1
  188. package/components/form/Security.vue +2 -2
  189. package/components/form/Select.vue +8 -3
  190. package/components/form/SelectOrCreateAuthSecret.vue +43 -9
  191. package/components/form/ServiceNameSelect.vue +2 -2
  192. package/components/form/ServicePorts.vue +58 -17
  193. package/components/form/Tolerations.vue +34 -7
  194. package/components/form/ValueFromResource.vue +10 -2
  195. package/components/form/WorkloadPorts.vue +36 -8
  196. package/components/form/__tests__/MatchExpressions.test.ts +1 -2
  197. package/components/formatter/AppSummaryGraph.vue +24 -6
  198. package/components/formatter/BadgeStateFormatter.vue +4 -1
  199. package/components/formatter/Checked.vue +4 -1
  200. package/components/formatter/ClusterLink.vue +4 -1
  201. package/components/formatter/Date.vue +1 -1
  202. package/components/formatter/DelayedValue.vue +4 -1
  203. package/components/formatter/Endpoints.vue +5 -1
  204. package/components/formatter/ExternalLink.vue +5 -1
  205. package/components/formatter/FleetSummaryGraph.vue +20 -5
  206. package/components/formatter/IconText.vue +4 -1
  207. package/components/formatter/ImagePercentageBar.vue +5 -1
  208. package/components/formatter/IngressFullPath.vue +6 -1
  209. package/components/formatter/IngressTarget.vue +22 -5
  210. package/components/formatter/InternalExternalIP.vue +12 -2
  211. package/components/formatter/KeyValue.vue +5 -1
  212. package/components/formatter/Link.vue +30 -6
  213. package/components/formatter/LinkDetail.vue +4 -1
  214. package/components/formatter/LinkDetailImage.vue +1 -1
  215. package/components/formatter/ListLink.vue +10 -2
  216. package/components/formatter/ListLinkDetail.vue +6 -1
  217. package/components/formatter/LiveDate.vue +13 -3
  218. package/components/formatter/LiveExpiryDate.vue +18 -4
  219. package/components/formatter/LivePodRestarts.vue +4 -1
  220. package/components/formatter/MachineSummaryGraph.vue +25 -6
  221. package/components/formatter/Number.vue +4 -1
  222. package/components/formatter/PodsUsage.vue +4 -1
  223. package/components/formatter/Principal.vue +5 -1
  224. package/components/formatter/PrincipalGroupBindings.vue +4 -1
  225. package/components/formatter/ReceiverIcons.vue +9 -3
  226. package/components/formatter/RunBookLink.vue +6 -1
  227. package/components/formatter/Scale.vue +45 -10
  228. package/components/formatter/ScanResult.vue +4 -1
  229. package/components/formatter/SecretData.vue +5 -2
  230. package/components/formatter/SecretType.vue +4 -1
  231. package/components/formatter/ServiceTargets.vue +16 -4
  232. package/components/formatter/Shortened.vue +8 -2
  233. package/components/formatter/VirtualServiceGateways.vue +8 -2
  234. package/components/formatter/Weight.vue +19 -4
  235. package/components/formatter/WorkloadDetailEndpoints.vue +5 -1
  236. package/components/formatter/WorkloadHealthScale.vue +42 -8
  237. package/components/graph/AspectPreserver.vue +14 -3
  238. package/components/graph/Bar.vue +14 -3
  239. package/components/graph/Circle.vue +36 -7
  240. package/components/graph/HalfCircle.vue +6 -1
  241. package/components/graph/LinePlot.vue +3 -6
  242. package/components/graph/ProgressArc.vue +8 -2
  243. package/components/nav/GlobalLoading.vue +4 -1
  244. package/components/nav/Group.vue +39 -9
  245. package/components/nav/Header.vue +154 -37
  246. package/components/nav/Jump.vue +6 -2
  247. package/components/nav/NamespaceFilter.vue +112 -24
  248. package/components/nav/TopLevelMenu.vue +108 -24
  249. package/components/nav/Type.vue +18 -4
  250. package/components/nav/WindowManager/ChartReadme.vue +4 -1
  251. package/components/nav/WindowManager/ContainerLogs.vue +92 -19
  252. package/components/nav/WindowManager/ContainerShell.vue +26 -6
  253. package/components/nav/WindowManager/Window.vue +8 -2
  254. package/components/nav/WindowManager/index.vue +17 -4
  255. package/config/labels-annotations.js +5 -42
  256. package/config/private-label.js +5 -2
  257. package/config/product/explorer.js +8 -2
  258. package/config/roles.ts +2 -1
  259. package/config/{settings.js → settings.ts} +33 -50
  260. package/config/types.js +2 -0
  261. package/content/docs/en-us/getting-started.md +3 -3
  262. package/content/docs/en-us/whats-new.md +9 -123
  263. package/core/plugins.js +11 -8
  264. package/creators/app/{files/.eslintignore → .eslintignore} +0 -0
  265. package/creators/app/{files/.eslintrc.js → .eslintrc.js} +0 -0
  266. package/creators/app/{files/.vscode → .vscode}/settings.json +0 -0
  267. package/creators/app/{files/babel.config.js → babel.config.js} +0 -0
  268. package/creators/app/init +17 -16
  269. package/creators/app/{files/nuxt.config.js → nuxt.config.js} +0 -0
  270. package/creators/app/package.json +1 -7
  271. package/creators/app/{files/tsconfig.json → tsconfig.json} +1 -2
  272. package/creators/pkg/{files/babel.config.js → babel.config.js} +0 -0
  273. package/creators/pkg/{files/index.ts → index.ts} +0 -0
  274. package/creators/pkg/init +1 -1
  275. package/creators/pkg/nuxt.config.js +6 -0
  276. package/creators/pkg/package-lock.json +37 -0
  277. package/creators/pkg/package.json +1 -1
  278. package/creators/pkg/{files/tsconfig.json → tsconfig.json} +12 -13
  279. package/creators/pkg/{files/vue.config.js → vue.config.js} +0 -0
  280. package/detail/autoscaling.horizontalpodautoscaler/index.vue +12 -3
  281. package/detail/catalog.cattle.io.app.vue +41 -8
  282. package/detail/catalog.cattle.io.clusterrepo.vue +4 -1
  283. package/detail/cis.cattle.io.clusterscan.vue +23 -5
  284. package/detail/configmap.vue +18 -4
  285. package/detail/constraints.gatekeeper.sh.constraint.vue +4 -1
  286. package/detail/fleet.cattle.io.cluster.vue +14 -3
  287. package/detail/fleet.cattle.io.clustergroup.vue +9 -2
  288. package/detail/fleet.cattle.io.gitrepo.vue +16 -3
  289. package/detail/harvesterhci.io.management.cluster.vue +5 -1
  290. package/detail/helm.cattle.io.projecthelmchart.vue +49 -13
  291. package/detail/management.cattle.io.fleetworkspace.vue +19 -4
  292. package/detail/management.cattle.io.roletemplate.vue +4 -1
  293. package/detail/management.cattle.io.user.vue +26 -5
  294. package/detail/namespace.vue +6 -4
  295. package/detail/networking.k8s.io.ingress.vue +16 -3
  296. package/detail/node.vue +83 -18
  297. package/detail/pod.vue +27 -5
  298. package/detail/provisioning.cattle.io.cluster.vue +195 -43
  299. package/detail/secret.vue +78 -19
  300. package/detail/service.vue +9 -2
  301. package/detail/workload/index.vue +81 -17
  302. package/dialog/AddClusterMemberDialog.vue +25 -6
  303. package/dialog/AddCustomBadgeDialog.vue +43 -10
  304. package/dialog/AddProjectMemberDialog.vue +27 -7
  305. package/dialog/AddonConfigConfirmationDialog.vue +17 -4
  306. package/dialog/DiagnosticTimingsDialog.vue +27 -6
  307. package/dialog/DrainNode.vue +46 -11
  308. package/dialog/ForceMachineRemoveDialog.vue +35 -8
  309. package/dialog/GenericPrompt.vue +28 -7
  310. package/dialog/RollbackWorkloadDialog.vue +45 -11
  311. package/dialog/RotateCertificatesDialog.vue +31 -6
  312. package/dialog/RotateEncryptionKeyDialog.vue +41 -10
  313. package/dialog/SaveAsRKETemplateDialog.vue +31 -7
  314. package/dialog/ScaleMachineDownDialog.vue +13 -3
  315. package/edit/__tests__/management.cattle.io.setting.test.ts +87 -0
  316. package/edit/auth/azuread.vue +20 -6
  317. package/edit/auth/github.vue +52 -11
  318. package/edit/auth/googleoauth.vue +81 -17
  319. package/edit/auth/ldap/config.vue +164 -31
  320. package/edit/auth/ldap/index.vue +29 -7
  321. package/edit/auth/oidc.vue +36 -8
  322. package/edit/auth/saml.vue +57 -12
  323. package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +9 -2
  324. package/edit/autoscaling.horizontalpodautoscaler/index.vue +23 -6
  325. package/edit/autoscaling.horizontalpodautoscaler/metric-target.vue +8 -2
  326. package/edit/autoscaling.horizontalpodautoscaler/metrics-row.vue +16 -4
  327. package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +13 -3
  328. package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +9 -2
  329. package/edit/autoscaling.horizontalpodautoscaler/resource-metric.vue +6 -1
  330. package/edit/catalog.cattle.io.clusterrepo.vue +15 -3
  331. package/edit/cis.cattle.io.clusterscan.vue +53 -11
  332. package/edit/cis.cattle.io.clusterscanbenchmark.vue +15 -3
  333. package/edit/cis.cattle.io.clusterscanprofile.vue +13 -3
  334. package/edit/configmap.vue +5 -1
  335. package/edit/constraints.gatekeeper.sh.constraint/index.vue +40 -9
  336. package/edit/fleet.cattle.io.cluster.vue +6 -2
  337. package/edit/fleet.cattle.io.clustergroup.vue +12 -3
  338. package/edit/fleet.cattle.io.gitrepo.vue +25 -5
  339. package/edit/group.principal.vue +6 -1
  340. package/edit/harvesterhci.io.management.cluster.vue +22 -5
  341. package/edit/k8s.cni.cncf.io.networkattachmentdefinition.vue +11 -2
  342. package/edit/logging-flow/Match.vue +2 -2
  343. package/edit/logging-flow/index.vue +67 -14
  344. package/edit/logging.banzaicloud.io.output/index.vue +37 -8
  345. package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +7 -2
  346. package/edit/logging.banzaicloud.io.output/providers/azurestorage.vue +19 -4
  347. package/edit/logging.banzaicloud.io.output/providers/cloudwatch.vue +24 -4
  348. package/edit/logging.banzaicloud.io.output/providers/datadog.vue +20 -5
  349. package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +21 -5
  350. package/edit/logging.banzaicloud.io.output/providers/file.vue +6 -1
  351. package/edit/logging.banzaicloud.io.output/providers/forward.vue +8 -3
  352. package/edit/logging.banzaicloud.io.output/providers/gcs.vue +25 -5
  353. package/edit/logging.banzaicloud.io.output/providers/gelf.vue +46 -8
  354. package/edit/logging.banzaicloud.io.output/providers/kafka.vue +26 -6
  355. package/edit/logging.banzaicloud.io.output/providers/kinesisStream.vue +7 -2
  356. package/edit/logging.banzaicloud.io.output/providers/logdna.vue +20 -4
  357. package/edit/logging.banzaicloud.io.output/providers/logz.vue +8 -3
  358. package/edit/logging.banzaicloud.io.output/providers/loki.vue +34 -8
  359. package/edit/logging.banzaicloud.io.output/providers/newrelic.vue +1 -1
  360. package/edit/logging.banzaicloud.io.output/providers/s3.vue +25 -5
  361. package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +33 -7
  362. package/edit/logging.banzaicloud.io.output/providers/syslog.vue +57 -12
  363. package/edit/management.cattle.io.clusterroletemplatebinding.vue +10 -2
  364. package/edit/management.cattle.io.fleetworkspace.vue +17 -4
  365. package/edit/management.cattle.io.project.vue +7 -1
  366. package/edit/management.cattle.io.roletemplate.vue +4 -1
  367. package/edit/management.cattle.io.setting.vue +71 -30
  368. package/edit/management.cattle.io.user.vue +4 -1
  369. package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +24 -6
  370. package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +24 -5
  371. package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +29 -6
  372. package/edit/monitoring.coreos.com.alertmanagerconfig/tls.vue +12 -3
  373. package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +50 -9
  374. package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +31 -6
  375. package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +29 -6
  376. package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +8 -2
  377. package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +36 -7
  378. package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +24 -6
  379. package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +16 -6
  380. package/edit/monitoring.coreos.com.prometheusrule/index.vue +10 -2
  381. package/edit/monitoring.coreos.com.receiver/auth.vue +36 -7
  382. package/edit/monitoring.coreos.com.receiver/index.vue +53 -11
  383. package/edit/monitoring.coreos.com.receiver/tls.vue +22 -4
  384. package/edit/monitoring.coreos.com.receiver/types/email.vue +48 -8
  385. package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +32 -6
  386. package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +22 -4
  387. package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -1
  388. package/edit/monitoring.coreos.com.receiver/types/webhook.banner.vue +5 -1
  389. package/edit/monitoring.coreos.com.receiver/types/webhook.vue +31 -6
  390. package/edit/monitoring.coreos.com.route.vue +71 -15
  391. package/edit/namespace.vue +35 -7
  392. package/edit/networking.istio.io.destinationrule/LoadBalancer.vue +12 -3
  393. package/edit/networking.istio.io.destinationrule/index.vue +5 -3
  394. package/edit/networking.k8s.io.ingress/Certificate.vue +10 -2
  395. package/edit/networking.k8s.io.ingress/Certificates.vue +6 -1
  396. package/edit/networking.k8s.io.ingress/DefaultBackend.vue +16 -4
  397. package/edit/networking.k8s.io.ingress/Rule.vue +21 -5
  398. package/edit/networking.k8s.io.ingress/RulePath.vue +27 -6
  399. package/edit/networking.k8s.io.ingress/Rules.vue +7 -1
  400. package/edit/networking.k8s.io.ingress/index.vue +52 -9
  401. package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +20 -4
  402. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +8 -2
  403. package/edit/networking.k8s.io.networkpolicy/index.vue +36 -8
  404. package/edit/node.vue +13 -3
  405. package/edit/persistentvolume/index.vue +48 -8
  406. package/edit/persistentvolume/plugins/awsElasticBlockStore.vue +19 -3
  407. package/edit/persistentvolume/plugins/azureDisk.vue +20 -3
  408. package/edit/persistentvolume/plugins/azureFile.vue +18 -3
  409. package/edit/persistentvolume/plugins/cephfs.vue +35 -6
  410. package/edit/persistentvolume/plugins/cinder.vue +24 -4
  411. package/edit/persistentvolume/plugins/csi.vue +72 -12
  412. package/edit/persistentvolume/plugins/fc.vue +23 -4
  413. package/edit/persistentvolume/plugins/flexVolume.vue +30 -5
  414. package/edit/persistentvolume/plugins/flocker.vue +12 -2
  415. package/edit/persistentvolume/plugins/gcePersistentDisk.vue +19 -3
  416. package/edit/persistentvolume/plugins/glusterfs.vue +12 -2
  417. package/edit/persistentvolume/plugins/hostPath.vue +12 -2
  418. package/edit/persistentvolume/plugins/iscsi.vue +54 -9
  419. package/edit/persistentvolume/plugins/local.vue +6 -1
  420. package/edit/persistentvolume/plugins/longhorn.vue +13 -2
  421. package/edit/persistentvolume/plugins/nfs.vue +12 -2
  422. package/edit/persistentvolume/plugins/photonPersistentDisk.vue +12 -2
  423. package/edit/persistentvolume/plugins/portworxVolume.vue +12 -2
  424. package/edit/persistentvolume/plugins/quobyte.vue +24 -4
  425. package/edit/persistentvolume/plugins/rbd.vue +47 -8
  426. package/edit/persistentvolume/plugins/scaleIO.vue +54 -9
  427. package/edit/persistentvolume/plugins/storageos.vue +30 -5
  428. package/edit/persistentvolume/plugins/vsphereVolume.vue +24 -4
  429. package/edit/persistentvolumeclaim.vue +69 -15
  430. package/edit/policy.poddisruptionbudget.vue +149 -0
  431. package/edit/provisioning.cattle.io.cluster/ACE.vue +6 -1
  432. package/edit/provisioning.cattle.io.cluster/AgentEnv.vue +4 -1
  433. package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +61 -15
  434. package/edit/provisioning.cattle.io.cluster/DrainOptions.vue +24 -4
  435. package/edit/provisioning.cattle.io.cluster/Labels.vue +4 -1
  436. package/edit/provisioning.cattle.io.cluster/MachinePool.vue +31 -8
  437. package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +16 -3
  438. package/edit/provisioning.cattle.io.cluster/RegistryMirrors.vue +4 -1
  439. package/edit/provisioning.cattle.io.cluster/S3Config.vue +35 -6
  440. package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +21 -5
  441. package/edit/provisioning.cattle.io.cluster/import.vue +23 -5
  442. package/edit/provisioning.cattle.io.cluster/index.vue +9 -0
  443. package/edit/provisioning.cattle.io.cluster/rke2.vue +203 -64
  444. package/edit/resources.cattle.io.backup.vue +42 -8
  445. package/edit/resources.cattle.io.restore.vue +53 -11
  446. package/edit/secret/basic.vue +12 -2
  447. package/edit/secret/index.vue +29 -7
  448. package/edit/secret/registry.vue +22 -4
  449. package/edit/secret/ssh.vue +10 -2
  450. package/edit/secret/tls.vue +10 -2
  451. package/edit/service.vue +12 -3
  452. package/edit/serviceaccount.vue +6 -3
  453. package/edit/storage.k8s.io.storageclass/index.vue +15 -3
  454. package/edit/storage.k8s.io.storageclass/provisioners/custom.vue +6 -1
  455. package/edit/storage.k8s.io.storageclass/provisioners/driver.longhorn.io.vue +6 -1
  456. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/aws-ebs.vue +20 -3
  457. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/azure-disk.vue +12 -2
  458. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/azure-file.vue +18 -3
  459. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/cinder.vue +13 -2
  460. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/gce-pd.vue +14 -2
  461. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/glusterfs.vue +54 -9
  462. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/portworx-volume.vue +42 -7
  463. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/quobyte.vue +48 -8
  464. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/rbd.vue +66 -11
  465. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/scaleio.vue +48 -8
  466. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/storageos.vue +30 -5
  467. package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/vsphere-volume.vue +36 -6
  468. package/edit/token.vue +48 -10
  469. package/edit/workload/Job.vue +20 -5
  470. package/edit/workload/Upgrading.vue +28 -7
  471. package/edit/workload/index.vue +244 -48
  472. package/edit/workload/storage/azureDisk.vue +5 -1
  473. package/edit/workload/storage/azureFile.vue +5 -1
  474. package/edit/workload/storage/csi/driver.longhorn.io.vue +6 -1
  475. package/edit/workload/storage/csi/index.vue +9 -2
  476. package/edit/workload/storage/ephemeralVolume/index.vue +38 -8
  477. package/edit/workload/storage/gcePersistentDisk.vue +10 -2
  478. package/edit/workload/storage/hostPath.vue +18 -3
  479. package/edit/workload/storage/persistentVolumeClaim/index.vue +4 -1
  480. package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +26 -5
  481. package/edit/workload/storage/vsphereVolume.vue +10 -2
  482. package/layouts/blank.vue +1 -1
  483. package/layouts/default.vue +60 -65
  484. package/layouts/error.vue +25 -5
  485. package/layouts/home.vue +17 -4
  486. package/layouts/plain.vue +13 -3
  487. package/layouts/unauthenticated.vue +1 -1
  488. package/list/catalog.cattle.io.app.vue +15 -2
  489. package/list/catalog.cattle.io.clusterrepo.vue +5 -0
  490. package/list/cis.cattle.io.clusterscan.vue +6 -0
  491. package/list/fleet.cattle.io.bundle.vue +14 -2
  492. package/list/fleet.cattle.io.cluster.vue +10 -1
  493. package/list/fleet.cattle.io.clustergroup.vue +14 -2
  494. package/list/fleet.cattle.io.clusterregistrationtoken.vue +11 -3
  495. package/list/fleet.cattle.io.gitrepo.vue +6 -0
  496. package/list/group.principal.vue +11 -1
  497. package/list/harvesterhci.io.management.cluster.vue +25 -6
  498. package/list/helm.cattle.io.projecthelmchart.vue +23 -5
  499. package/list/logging.banzaicloud.io.clusterflow.vue +11 -1
  500. package/list/logging.banzaicloud.io.flow.vue +11 -1
  501. package/list/management.cattle.io.cluster.vue +12 -1
  502. package/list/management.cattle.io.feature.vue +71 -15
  503. package/list/management.cattle.io.setting.vue +44 -10
  504. package/list/management.cattle.io.user.vue +12 -1
  505. package/list/monitoring.coreos.com.alertmanagerconfig.vue +6 -0
  506. package/list/namespace.vue +8 -0
  507. package/list/node.vue +14 -2
  508. package/list/persistentvolume.vue +13 -1
  509. package/list/persistentvolumeclaim.vue +6 -0
  510. package/list/provisioning.cattle.io.cluster.vue +23 -4
  511. package/list/service.vue +6 -0
  512. package/list/ui.cattle.io.navlink.vue +20 -3
  513. package/list/workload.vue +15 -2
  514. package/machine-config/amazonec2.vue +12 -3
  515. package/machine-config/azure.vue +16 -7
  516. package/machine-config/digitalocean.vue +4 -1
  517. package/machine-config/generic.vue +4 -1
  518. package/machine-config/harvester.vue +23 -6
  519. package/machine-config/linode.vue +4 -1
  520. package/machine-config/vmwarevsphere.vue +91 -21
  521. package/mixins/__tests__/create-edit-view.test.ts +19 -0
  522. package/mixins/brand.js +12 -3
  523. package/mixins/form-validation.js +108 -33
  524. package/models/clusterroletemplatebinding.js +2 -5
  525. package/models/management.cattle.io.cluster.js +7 -1
  526. package/models/secret.js +9 -1
  527. package/models/workload.js +3 -3
  528. package/nuxt.config.js +28 -10
  529. package/package.json +2 -2
  530. package/pages/about.vue +41 -9
  531. package/pages/account/index.vue +20 -5
  532. package/pages/auth/login.vue +83 -22
  533. package/pages/auth/logout.vue +1 -1
  534. package/pages/auth/setup.vue +48 -12
  535. package/pages/auth/verify.vue +1 -1
  536. package/pages/c/_cluster/_product/members/index.vue +3 -1
  537. package/pages/c/_cluster/_product/namespaces.vue +4 -1
  538. package/pages/c/_cluster/apps/charts/chart.vue +124 -27
  539. package/pages/c/_cluster/apps/charts/index.vue +35 -8
  540. package/pages/c/_cluster/apps/charts/install.vue +200 -48
  541. package/pages/c/_cluster/auth/config/_id.vue +4 -1
  542. package/pages/c/_cluster/auth/config/index.vue +6 -2
  543. package/pages/c/_cluster/auth/group.principal/assign-edit.vue +10 -5
  544. package/pages/c/_cluster/auth/roles/index.vue +33 -7
  545. package/pages/c/_cluster/explorer/ConfigBadge.vue +4 -1
  546. package/pages/c/_cluster/explorer/index.vue +109 -24
  547. package/pages/c/_cluster/explorer/tools/index.vue +76 -17
  548. package/pages/c/_cluster/explorer/tools/pages/_page.vue +4 -1
  549. package/pages/c/_cluster/fleet/index.vue +9 -2
  550. package/pages/c/_cluster/gatekeeper/index.vue +4 -1
  551. package/pages/c/_cluster/istio/index.vue +20 -8
  552. package/pages/c/_cluster/legacy/pages/_page.vue +4 -1
  553. package/pages/c/_cluster/legacy/project/_page.vue +4 -1
  554. package/pages/c/_cluster/legacy/project/index.vue +4 -1
  555. package/pages/c/_cluster/legacy/project/pipelines.vue +27 -5
  556. package/pages/c/_cluster/logging/index.vue +4 -1
  557. package/pages/c/_cluster/longhorn/index.vue +16 -5
  558. package/pages/c/_cluster/manager/cloudCredential/index.vue +15 -3
  559. package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +1 -1
  560. package/pages/c/_cluster/monitoring/index.vue +14 -5
  561. package/pages/c/_cluster/monitoring/monitor/index.vue +24 -6
  562. package/pages/c/_cluster/monitoring/route-receiver/index.vue +25 -6
  563. package/pages/c/_cluster/neuvector/index.vue +16 -5
  564. package/pages/c/_cluster/settings/DefaultLinksEditor.vue +25 -7
  565. package/pages/c/_cluster/settings/banners.vue +10 -2
  566. package/pages/c/_cluster/settings/brand.vue +75 -17
  567. package/pages/c/_cluster/settings/links.vue +16 -4
  568. package/pages/c/_cluster/settings/performance.vue +22 -5
  569. package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +19 -4
  570. package/pages/c/_cluster/uiplugins/InstallDialog.vue +14 -3
  571. package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +54 -12
  572. package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +18 -4
  573. package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +14 -3
  574. package/pages/c/_cluster/uiplugins/UninstallDialog.vue +9 -2
  575. package/pages/c/_cluster/uiplugins/index.vue +149 -34
  576. package/pages/diagnostic.vue +14 -5
  577. package/pages/docs/_doc.vue +22 -5
  578. package/pages/fail-whale.vue +26 -6
  579. package/pages/home.vue +54 -14
  580. package/pages/prefs.vue +65 -22
  581. package/pages/rio/mesh.vue +6 -2
  582. package/pages/support/index.vue +35 -7
  583. package/plugins/steve/subscribe.js +1 -1
  584. package/promptRemove/management.cattle.io.globalrole.vue +9 -3
  585. package/promptRemove/management.cattle.io.project.vue +14 -5
  586. package/promptRemove/management.cattle.io.roletemplate.vue +9 -3
  587. package/promptRemove/pod.vue +15 -3
  588. package/rancher-components/BadgeState/BadgeState.spec.ts +12 -0
  589. package/rancher-components/BadgeState/BadgeState.vue +107 -0
  590. package/rancher-components/BadgeState/index.ts +1 -0
  591. package/rancher-components/Banner/Banner.test.ts +13 -0
  592. package/rancher-components/Banner/Banner.vue +163 -0
  593. package/rancher-components/Banner/index.ts +1 -0
  594. package/rancher-components/Card/Card.vue +150 -0
  595. package/rancher-components/Card/index.ts +1 -0
  596. package/rancher-components/Form/Checkbox/Checkbox.test.ts +77 -0
  597. package/rancher-components/Form/Checkbox/Checkbox.vue +395 -0
  598. package/rancher-components/Form/Checkbox/index.ts +1 -0
  599. package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +29 -0
  600. package/rancher-components/Form/LabeledInput/LabeledInput.vue +343 -0
  601. package/rancher-components/Form/LabeledInput/index.ts +1 -0
  602. package/rancher-components/Form/Radio/RadioButton.vue +270 -0
  603. package/rancher-components/Form/Radio/RadioGroup.vue +235 -0
  604. package/rancher-components/Form/Radio/index.ts +2 -0
  605. package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +169 -0
  606. package/rancher-components/Form/TextArea/index.ts +1 -0
  607. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.test.ts +107 -0
  608. package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +137 -0
  609. package/rancher-components/Form/ToggleSwitch/index.ts +1 -0
  610. package/rancher-components/Form/index.ts +5 -0
  611. package/rancher-components/LabeledTooltip/LabeledTooltip.vue +137 -0
  612. package/rancher-components/LabeledTooltip/index.ts +1 -0
  613. package/rancher-components/StringList/StringList.test.ts +80 -0
  614. package/rancher-components/StringList/StringList.vue +593 -0
  615. package/rancher-components/StringList/index.ts +1 -0
  616. package/scripts/publish-shell.sh +6 -39
  617. package/scripts/test-plugins-build.sh +5 -9
  618. package/store/prefs.js +1 -1
  619. package/types/form.ts +1 -0
  620. package/types/generic.ts +2 -0
  621. package/types/t.ts +1 -0
  622. package/types/userPreferences.d.ts +14 -0
  623. package/utils/array.ts +21 -0
  624. package/utils/favicon.js +2 -0
  625. package/utils/settings.ts +50 -0
  626. package/utils/validators/formRules/__tests__/index.test.ts +22 -1
  627. package/utils/validators/formRules/index.ts +68 -43
  628. package/creators/update/init +0 -54
  629. package/creators/update/package.json +0 -20
  630. package/creators/update/upgrade +0 -56
  631. package/scripts/record-deps.js +0 -37
  632. package/scripts/typegen.sh +0 -84
  633. package/types/shell/index.d.ts +0 -3046
  634. package/types/vue-shim.d +0 -20
package/list/service.vue CHANGED
@@ -18,6 +18,11 @@ export default {
18
18
  type: Object,
19
19
  required: true,
20
20
  },
21
+
22
+ useQueryParamsForSimpleFiltering: {
23
+ type: Boolean,
24
+ default: false
25
+ }
21
26
  },
22
27
 
23
28
  // fetch nodes before loading this page, as they may be referenced in the Target table column
@@ -51,5 +56,6 @@ export default {
51
56
  :headers="$attrs.headers"
52
57
  :group-by="$attrs.groupBy"
53
58
  :loading="loading"
59
+ :use-query-params-for-simple-filtering="useQueryParamsForSimpleFiltering"
54
60
  />
55
61
  </template>
@@ -21,6 +21,11 @@ export default {
21
21
  type: Boolean,
22
22
  required: false,
23
23
  },
24
+
25
+ useQueryParamsForSimpleFiltering: {
26
+ type: Boolean,
27
+ default: false
28
+ }
24
29
  },
25
30
 
26
31
  computed: { ...mapGetters(['clusterId']) }
@@ -32,24 +37,36 @@ export default {
32
37
  :schema="schema"
33
38
  :rows="rows"
34
39
  :loading="loading"
40
+ :use-query-params-for-simple-filtering="useQueryParamsForSimpleFiltering"
35
41
  >
36
42
  <template #cell:to="{row}">
37
43
  <template v-if="row.spec && row.spec.toService">
38
44
  <n-link :to="{name: 'c-cluster-product-resource-namespace-id', params: { cluster: clusterId, product: 'explorer', resource: 'service', namespace: row.spec.toService.namespace, id: row.spec.toService.name}}">
39
45
  {{ row.spec.toService.namespace }}/{{ row.spec.toService.name }}
40
46
  </n-link>:
41
- <a :href="row.link" :target="row.actualTarget" rel="noopener noreferrer nofollow">
47
+ <a
48
+ :href="row.link"
49
+ :target="row.actualTarget"
50
+ rel="noopener noreferrer nofollow"
51
+ >
42
52
  {{ row.spec.toService.port || 'default' }}
43
53
  <i class="icon icon-external-link" />
44
54
  </a>
45
55
  </template>
46
56
  <template v-else-if="row.link">
47
- <a :href="row.link" :target="row.actualTarget" rel="noopener noreferrer nofollow">
57
+ <a
58
+ :href="row.link"
59
+ :target="row.actualTarget"
60
+ rel="noopener noreferrer nofollow"
61
+ >
48
62
  {{ row.link.replace(/^https:\/\//,'') }}
49
63
  <i class="icon icon-external-link" />
50
64
  </a>
51
65
  </template>
52
- <span v-else class="text-muted">&mdash;</span>
66
+ <span
67
+ v-else
68
+ class="text-muted"
69
+ >&mdash;</span>
53
70
  </template>
54
71
  </ResourceTable>
55
72
  </template>
package/list/workload.vue CHANGED
@@ -18,6 +18,13 @@ export default {
18
18
  components: { ResourceTable },
19
19
  mixins: [ResourceFetch],
20
20
 
21
+ props: {
22
+ useQueryParamsForSimpleFiltering: {
23
+ type: Boolean,
24
+ default: false
25
+ }
26
+ },
27
+
21
28
  async fetch() {
22
29
  try {
23
30
  const schema = this.$store.getters[`cluster/schemaFor`](NODE);
@@ -85,7 +92,7 @@ export default {
85
92
  }
86
93
 
87
94
  for ( const row of typeRows ) {
88
- if (!this.allTypes || row.showAsWorkload) {
95
+ if (!this.allTypes || !row.ownedByWorkload) {
89
96
  out.push(row);
90
97
  }
91
98
  }
@@ -151,5 +158,11 @@ export default {
151
158
  </script>
152
159
 
153
160
  <template>
154
- <ResourceTable :loading="$fetchState.pending" :schema="schema" :rows="filteredRows" :overflow-y="true" />
161
+ <ResourceTable
162
+ :loading="$fetchState.pending"
163
+ :schema="schema"
164
+ :rows="filteredRows"
165
+ :overflow-y="true"
166
+ :use-query-params-for-simple-filtering="useQueryParamsForSimpleFiltering"
167
+ />
155
168
  </template>
@@ -523,7 +523,10 @@ export default {
523
523
  <div class="col span-12">
524
524
  <h3>
525
525
  {{ t('cluster.machineConfig.amazonEc2.securityGroup.title') }}
526
- <span v-if="!value.vpcId" class="text-muted text-small">
526
+ <span
527
+ v-if="!value.vpcId"
528
+ class="text-muted text-small"
529
+ >
527
530
  {{ t('cluster.machineConfig.amazonEc2.securityGroup.vpcId') }}
528
531
  </span>
529
532
  </h3>
@@ -567,7 +570,10 @@ export default {
567
570
  :mode="mode"
568
571
  :label="t('cluster.machineConfig.amazonEc2.encryptEbsVolume')"
569
572
  />
570
- <div v-if="value.encryptEbsVolume" class="mt-10">
573
+ <div
574
+ v-if="value.encryptEbsVolume"
575
+ class="mt-10"
576
+ >
571
577
  <LabeledSelect
572
578
  v-if="canReadKms"
573
579
  v-model="value.kmsKey"
@@ -597,7 +603,10 @@ export default {
597
603
  :mode="mode"
598
604
  :label="t('cluster.machineConfig.amazonEc2.requestSpotInstance')"
599
605
  />
600
- <div v-if="value.requestSpotInstance" class="mt-10">
606
+ <div
607
+ v-if="value.requestSpotInstance"
608
+ class="mt-10"
609
+ >
601
610
  <UnitInput
602
611
  v-model="value.spotPrice"
603
612
  output-as="string"
@@ -191,10 +191,19 @@ export default {
191
191
  </script>
192
192
 
193
193
  <template>
194
- <Loading v-if="$fetchState.pending" :delayed="true" />
194
+ <Loading
195
+ v-if="$fetchState.pending"
196
+ :delayed="true"
197
+ />
195
198
  <div v-else-if="errors.length">
196
- <div v-for="(err, idx) in errors" :key="idx">
197
- <Banner color="error" :label="stringify(err)" />
199
+ <div
200
+ v-for="(err, idx) in errors"
201
+ :key="idx"
202
+ >
203
+ <Banner
204
+ color="error"
205
+ :label="stringify(err)"
206
+ />
198
207
  </div>
199
208
  </div>
200
209
  <div v-else>
@@ -245,7 +254,7 @@ export default {
245
254
  />
246
255
  </div>
247
256
  </div>
248
- <hr class="mt-20" />
257
+ <hr class="mt-20">
249
258
  <div class="row mt-20">
250
259
  <div class="col span-6">
251
260
  <LabeledInput
@@ -290,7 +299,7 @@ export default {
290
299
  />
291
300
  </div>
292
301
  </div>
293
- <hr class="mt-20" />
302
+ <hr class="mt-20">
294
303
  <div class="row mt-20">
295
304
  <div class="col span-6">
296
305
  <LabeledInput
@@ -302,7 +311,7 @@ export default {
302
311
  />
303
312
  </div>
304
313
  </div>
305
- <hr class="mt-20" />
314
+ <hr class="mt-20">
306
315
  <div class="row mt-20">
307
316
  <div class="col span-6">
308
317
  <LabeledInput
@@ -383,7 +392,7 @@ export default {
383
392
  />
384
393
  </div>
385
394
  </div>
386
- <hr class="mt-20" />
395
+ <hr class="mt-20">
387
396
  <div class="row mt-20">
388
397
  <div class="col span-6">
389
398
  <LabeledSelect
@@ -137,7 +137,10 @@ export default {
137
137
  </script>
138
138
 
139
139
  <template>
140
- <Loading v-if="$fetchState.pending" :delayed="true" />
140
+ <Loading
141
+ v-if="$fetchState.pending"
142
+ :delayed="true"
143
+ />
141
144
  <div v-else-if="errors.length">
142
145
  <div
143
146
  v-for="(err, idx) in errors"
@@ -75,7 +75,10 @@ export default {
75
75
  </script>
76
76
 
77
77
  <template>
78
- <Loading v-if="$fetchState.pending" :delayed="true" />
78
+ <Loading
79
+ v-if="$fetchState.pending"
80
+ :delayed="true"
81
+ />
79
82
  <div v-else-if="errors.length">
80
83
  <div
81
84
  v-for="(err, idx) in errors"
@@ -26,6 +26,8 @@ import { podAffinity as podAffinityValidator } from '@shell/utils/validators/pod
26
26
  import { stringify, exceptionToErrorsArray } from '@shell/utils/error';
27
27
  import { HCI as HCI_ANNOTATIONS } from '@shell/config/labels-annotations';
28
28
 
29
+ const STORAGE_NETWORK = 'storage-network.settings.harvesterhci.io';
30
+
29
31
  export function isReady() {
30
32
  function getStatusConditionOfType(type, defaultValue = []) {
31
33
  const conditions = Array.isArray(get(this, 'status.conditions')) ? this.status.conditions : defaultValue;
@@ -151,7 +153,7 @@ export default {
151
153
  this.userDataOptions = userDataOptions;
152
154
  this.networkDataOptions = networkDataOptions;
153
155
  this.images = res.images.value?.data;
154
- this.networkOptions = (res.networks.value?.data || []).map((O) => {
156
+ this.networkOptions = (res.networks.value?.data || []).filter(O => O.metadata?.annotations?.[STORAGE_NETWORK] !== 'true').map((O) => {
155
157
  let value;
156
158
  let label;
157
159
 
@@ -437,7 +439,10 @@ export default {
437
439
 
438
440
  <template>
439
441
  <div>
440
- <Loading v-if="$fetchState.pending" :delayed="true" />
442
+ <Loading
443
+ v-if="$fetchState.pending"
444
+ :delayed="true"
445
+ />
441
446
  <div v-else>
442
447
  <div class="row mt-20">
443
448
  <div class="col span-6">
@@ -513,7 +518,10 @@ export default {
513
518
  </div>
514
519
  </div>
515
520
 
516
- <div v-if="isImportCluster" class="row mt-20">
521
+ <div
522
+ v-if="isImportCluster"
523
+ class="row mt-20"
524
+ >
517
525
  <div class="col span-6">
518
526
  <LabeledSelect
519
527
  v-model="value.imageName"
@@ -543,7 +551,10 @@ export default {
543
551
  </div>
544
552
  </div>
545
553
 
546
- <div v-else class="row mt-20">
554
+ <div
555
+ v-else
556
+ class="row mt-20"
557
+ >
547
558
  <div class="col span-6">
548
559
  <LabeledInput
549
560
  v-model="value.imageName"
@@ -654,8 +665,14 @@ export default {
654
665
  </portal>
655
666
  </div>
656
667
  <div v-if="errors.length">
657
- <div v-for="(err, idx) in errors" :key="idx">
658
- <Banner color="error" :label="stringify(err.Message || err)" />
668
+ <div
669
+ v-for="(err, idx) in errors"
670
+ :key="idx"
671
+ >
672
+ <Banner
673
+ color="error"
674
+ :label="stringify(err.Message || err)"
675
+ />
659
676
  </div>
660
677
  </div>
661
678
  </div>
@@ -123,7 +123,10 @@ export default {
123
123
  </script>
124
124
 
125
125
  <template>
126
- <Loading v-if="$fetchState.pending" :delayed="true" />
126
+ <Loading
127
+ v-if="$fetchState.pending"
128
+ :delayed="true"
129
+ />
127
130
  <div v-else-if="errors.length">
128
131
  <div
129
132
  v-for="(err, idx) in errors"
@@ -659,7 +659,10 @@ export default {
659
659
  </script>
660
660
 
661
661
  <template>
662
- <Loading v-if="$fetchState.pending" :delayed="true" />
662
+ <Loading
663
+ v-if="$fetchState.pending"
664
+ :delayed="true"
665
+ />
663
666
  <div v-else-if="errors.length">
664
667
  <div
665
668
  v-for="(err, idx) in errors"
@@ -672,8 +675,15 @@ export default {
672
675
  </div>
673
676
  </div>
674
677
  <div v-else>
675
- <Card class="m-0 mt-20" :show-highlight-border="false" :show-actions="false">
676
- <h4 slot="title" class="text-default-text mb-5">
678
+ <Card
679
+ class="m-0 mt-20"
680
+ :show-highlight-border="false"
681
+ :show-actions="false"
682
+ >
683
+ <h4
684
+ slot="title"
685
+ class="text-default-text mb-5"
686
+ >
677
687
  {{ t('cluster.machineConfig.vsphere.scheduling.label') }}
678
688
  <p class="text-muted text-small">
679
689
  {{ t('cluster.machineConfig.vsphere.scheduling.description') }}
@@ -741,8 +751,15 @@ export default {
741
751
  </div>
742
752
  </div>
743
753
  </Card>
744
- <Card class="m-0 mt-20" :show-highlight-border="false" :show-actions="false">
745
- <h4 slot="title" class="text-default-text mb-5">
754
+ <Card
755
+ class="m-0 mt-20"
756
+ :show-highlight-border="false"
757
+ :show-actions="false"
758
+ >
759
+ <h4
760
+ slot="title"
761
+ class="text-default-text mb-5"
762
+ >
746
763
  {{ t('cluster.machineConfig.vsphere.instanceOptions.label') }}
747
764
  <p class="text-muted text-small">
748
765
  {{ t('cluster.machineConfig.vsphere.instanceOptions.description') }}
@@ -790,7 +807,10 @@ export default {
790
807
  </div>
791
808
  </div>
792
809
  <div class="row mt-10">
793
- <div class="col" :class="showContentLibrary ? 'span-4' : 'span-6'">
810
+ <div
811
+ class="col"
812
+ :class="showContentLibrary ? 'span-4' : 'span-6'"
813
+ >
794
814
  <LabeledSelect
795
815
  v-model="value.creationType"
796
816
  :mode="mode"
@@ -799,7 +819,10 @@ export default {
799
819
  :disabled="disabled"
800
820
  />
801
821
  </div>
802
- <div v-if="showTemplate" class="col span-6">
822
+ <div
823
+ v-if="showTemplate"
824
+ class="col span-6"
825
+ >
803
826
  <LabeledSelect
804
827
  v-model="value.cloneFrom"
805
828
  :loading="templatesLoading"
@@ -811,7 +834,10 @@ export default {
811
834
  :tooltip="templateTooltip"
812
835
  />
813
836
  </div>
814
- <div v-if="showContentLibrary" class="col span-4">
837
+ <div
838
+ v-if="showContentLibrary"
839
+ class="col span-4"
840
+ >
815
841
  <LabeledSelect
816
842
  v-model="value.contentLibrary"
817
843
  :loading="contentLibrariesLoading"
@@ -821,7 +847,10 @@ export default {
821
847
  :disabled="disabled"
822
848
  />
823
849
  </div>
824
- <div v-if="showContentLibrary" class="col span-4">
850
+ <div
851
+ v-if="showContentLibrary"
852
+ class="col span-4"
853
+ >
825
854
  <LabeledSelect
826
855
  v-model="value.cloneFrom"
827
856
  :loading="libraryTemplatesLoading"
@@ -832,7 +861,10 @@ export default {
832
861
  :disabled="disabled"
833
862
  />
834
863
  </div>
835
- <div v-if="showVirtualMachines" class="col span-6">
864
+ <div
865
+ v-if="showVirtualMachines"
866
+ class="col span-6"
867
+ >
836
868
  <LabeledSelect
837
869
  v-model="value.cloneFrom"
838
870
  :loading="virtualMachinesLoading"
@@ -842,7 +874,10 @@ export default {
842
874
  :disabled="disabled"
843
875
  />
844
876
  </div>
845
- <div v-if="showIso" class="col span-6">
877
+ <div
878
+ v-if="showIso"
879
+ class="col span-6"
880
+ >
846
881
  <LabeledInput
847
882
  v-model="value.boot2dockerUrl"
848
883
  :mode="mode"
@@ -852,7 +887,10 @@ export default {
852
887
  />
853
888
  </div>
854
889
  </div>
855
- <div v-if="showIso" class="row mt-10">
890
+ <div
891
+ v-if="showIso"
892
+ class="row mt-10"
893
+ >
856
894
  <div class="col span-12">
857
895
  <LabeledInput
858
896
  v-model="value.cloudinit"
@@ -866,7 +904,10 @@ export default {
866
904
  </p>
867
905
  </div>
868
906
  </div>
869
- <div v-if="showCloudConfigYaml" class="row mt-10">
907
+ <div
908
+ v-if="showCloudConfigYaml"
909
+ class="row mt-10"
910
+ >
870
911
  <div class="col span-12">
871
912
  <label class="text-label mt-0">{{ t('cluster.machineConfig.vsphere.instanceOptions.cloudConfigYaml') }}</label>
872
913
  <YamlEditor
@@ -910,8 +951,16 @@ export default {
910
951
  </div>
911
952
  </div>
912
953
  </Card>
913
- <Card v-if="haveTags" class="m-0 mt-20" :show-highlight-border="false" :show-actions="false">
914
- <h4 slot="title" class="text-default-text mb-5">
954
+ <Card
955
+ v-if="haveTags"
956
+ class="m-0 mt-20"
957
+ :show-highlight-border="false"
958
+ :show-actions="false"
959
+ >
960
+ <h4
961
+ slot="title"
962
+ class="text-default-text mb-5"
963
+ >
915
964
  {{ t('cluster.machineConfig.vsphere.tags.label') }}
916
965
  <p class="text-muted text-small">
917
966
  {{ t('cluster.machineConfig.vsphere.tags.description') }}
@@ -927,8 +976,16 @@ export default {
927
976
  />
928
977
  </div>
929
978
  </Card>
930
- <Card v-if="haveAttributes" class="m-0 mt-20" :show-highlight-border="false" :show-actions="false">
931
- <h4 slot="title" class="text-default-text mb-5">
979
+ <Card
980
+ v-if="haveAttributes"
981
+ class="m-0 mt-20"
982
+ :show-highlight-border="false"
983
+ :show-actions="false"
984
+ >
985
+ <h4
986
+ slot="title"
987
+ class="text-default-text mb-5"
988
+ >
932
989
  {{ t('cluster.machineConfig.vsphere.customAttributes.label') }}
933
990
  <p class="text-muted text-small">
934
991
  {{ t('cluster.machineConfig.vsphere.customAttributes.description') }}
@@ -948,8 +1005,15 @@ export default {
948
1005
  />
949
1006
  </div>
950
1007
  </Card>
951
- <Card class="m-0 mt-20" :show-highlight-border="false" :show-actions="false">
952
- <h4 slot="title" class="text-default-text mb-5">
1008
+ <Card
1009
+ class="m-0 mt-20"
1010
+ :show-highlight-border="false"
1011
+ :show-actions="false"
1012
+ >
1013
+ <h4
1014
+ slot="title"
1015
+ class="text-default-text mb-5"
1016
+ >
953
1017
  {{ t('cluster.machineConfig.vsphere.vAppOptions.label') }}
954
1018
  <p class="text-muted text-small">
955
1019
  {{ t('cluster.machineConfig.vsphere.vAppOptions.description') }}
@@ -967,7 +1031,10 @@ export default {
967
1031
  />
968
1032
  </div>
969
1033
  </div>
970
- <div v-if="showManual" class="row mb-10">
1034
+ <div
1035
+ v-if="showManual"
1036
+ class="row mb-10"
1037
+ >
971
1038
  <div class="col span-4">
972
1039
  <LabeledInput
973
1040
  v-model="value.vappTransport"
@@ -999,7 +1066,10 @@ export default {
999
1066
  />
1000
1067
  </div>
1001
1068
  </div>
1002
- <div v-if="showManual" class="row">
1069
+ <div
1070
+ v-if="showManual"
1071
+ class="row"
1072
+ >
1003
1073
  <div class="col span-12">
1004
1074
  <KeyValue
1005
1075
  v-model="vappProperty"
@@ -0,0 +1,19 @@
1
+ import { _EDIT } from '@shell/config/query-params';
2
+ import Vue from 'vue';
3
+ import { mount, VueClass } from '@vue/test-utils';
4
+ import CreateEditView from '@shell/mixins/create-edit-view';
5
+
6
+ describe('createEditView should', () => {
7
+ it('add value', () => {
8
+ const Component = {
9
+ render() {},
10
+ mixins: [CreateEditView],
11
+ props: { value: { id: '123' } }
12
+ };
13
+
14
+ // TODO: Investigate type to be used for the .vm property to access the component instance instead of using any
15
+ const instance = mount(Component as unknown as VueClass<Vue>).vm as any;
16
+
17
+ expect(instance.mode).toContain(_EDIT);
18
+ });
19
+ });
package/mixins/brand.js CHANGED
@@ -3,6 +3,7 @@ import { getVendor } from '@shell/config/private-label';
3
3
  import { SETTING } from '@shell/config/settings';
4
4
  import { findBy } from '@shell/utils/array';
5
5
  import { createCssVars } from '@shell/utils/color';
6
+ import { _ALL_IF_AUTHED } from '@shell/plugins/dashboard-store/actions';
6
7
 
7
8
  export default {
8
9
  async fetch() {
@@ -13,7 +14,15 @@ export default {
13
14
  }
14
15
  } catch (e) {}
15
16
 
16
- this.globalSettings = await this.$store.dispatch('management/findAll', { type: MANAGEMENT.SETTING });
17
+ // Ensure we read the settings even when we are not authenticated
18
+ try {
19
+ this.globalSettings = await this.$store.dispatch('management/findAll', {
20
+ type: MANAGEMENT.SETTING,
21
+ opt: {
22
+ load: _ALL_IF_AUTHED, url: `/v1/${ MANAGEMENT.SETTING }`, redirectUnauthorized: false
23
+ }
24
+ });
25
+ } catch (e) {}
17
26
  },
18
27
 
19
28
  data() {
@@ -85,7 +94,7 @@ export default {
85
94
  const brandSetting = findBy(this.globalSettings, 'id', SETTING.BRAND);
86
95
 
87
96
  if (brandSetting) {
88
- brandSetting.value = 'suse';
97
+ brandSetting.value = 'csp';
89
98
  brandSetting.save();
90
99
  } else {
91
100
  const schema = this.$store.getters['management/schemaFor'](MANAGEMENT.SETTING);
@@ -93,7 +102,7 @@ export default {
93
102
 
94
103
  if (url) {
95
104
  this.$store.dispatch('management/create', {
96
- type: MANAGEMENT.SETTING, metadata: { name: SETTING.BRAND }, value: 'suse', default: ''
105
+ type: MANAGEMENT.SETTING, metadata: { name: SETTING.BRAND }, value: 'csp', default: ''
97
106
  }).then(setting => setting.save());
98
107
  }
99
108
  }