feat(TopologyPlugin): Install the topology plugin, update backstage versions
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage-community/plugin-github-actions": "^0.6.16",
|
||||
"@backstage-community/plugin-tech-radar": "^0.7.4",
|
||||
"@backstage/app-defaults": "^1.5.5",
|
||||
"@backstage/catalog-model": "^1.5.0",
|
||||
"@backstage/cli": "^0.26.6",
|
||||
@@ -28,14 +29,13 @@
|
||||
"@backstage/plugin-catalog-graph": "^0.4.5",
|
||||
"@backstage/plugin-catalog-import": "^0.11.0",
|
||||
"@backstage/plugin-catalog-react": "^1.12.0",
|
||||
"@backstage/plugin-devtools": "^0.1.13",
|
||||
"@backstage/plugin-devtools": "^0.1.14",
|
||||
"@backstage/plugin-kubernetes": "^0.11.10",
|
||||
"@backstage/plugin-org": "^0.6.25",
|
||||
"@backstage/plugin-permission-react": "^0.4.22",
|
||||
"@backstage/plugin-scaffolder": "^1.20.0",
|
||||
"@backstage/plugin-scaffolder": "^1.20.1",
|
||||
"@backstage/plugin-search": "^1.4.11",
|
||||
"@backstage/plugin-search-react": "^1.7.11",
|
||||
"@backstage/plugin-tech-radar": "^0.7.3",
|
||||
"@backstage/plugin-techdocs": "^1.10.5",
|
||||
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.10",
|
||||
"@backstage/plugin-techdocs-react": "^1.2.4",
|
||||
@@ -43,6 +43,7 @@
|
||||
"@backstage/theme": "^0.5.5",
|
||||
"@bestsellerit/backstage-plugin-harbor": "^0.3.1",
|
||||
"@internal/backstage-plugin-devspaces-plugin": "^0.1.0",
|
||||
"@janus-idp/backstage-plugin-topology": "1.20.2",
|
||||
"@janus-idp/plugin-notifications": "^1.3.1",
|
||||
"@material-ui/icons": "^4.11.3",
|
||||
"@mui/material": "next",
|
||||
@@ -62,7 +63,7 @@
|
||||
"yarn": "^1.22.22"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/test-utils": "^1.5.4",
|
||||
"@backstage/test-utils": "^1.5.5",
|
||||
"@playwright/test": "^1.32.3",
|
||||
"@testing-library/dom": "^9.0.0",
|
||||
"@testing-library/jest-dom": "^6.0.0",
|
||||
|
||||
@@ -6,7 +6,7 @@ import {CatalogImportPage, catalogImportPlugin,} from '@backstage/plugin-catalog
|
||||
import {ScaffolderPage, scaffolderPlugin} from '@backstage/plugin-scaffolder';
|
||||
import {orgPlugin} from '@backstage/plugin-org';
|
||||
import {SearchPage} from '@backstage/plugin-search';
|
||||
import {TechRadarPage} from '@backstage/plugin-tech-radar';
|
||||
import {TechRadarPage} from '@backstage-community/plugin-tech-radar';
|
||||
import {TechDocsIndexPage, techdocsPlugin, TechDocsReaderPage,} from '@backstage/plugin-techdocs';
|
||||
import {TechDocsAddons} from '@backstage/plugin-techdocs-react';
|
||||
import {ReportIssue} from '@backstage/plugin-techdocs-module-addons-contrib';
|
||||
|
||||
@@ -9,6 +9,7 @@ import {buildsContent} from "../tabs/BuildsContent";
|
||||
import {workflowsContent} from "../tabs/WorkflowsContent";
|
||||
import {techdocsContent} from "../tabs/TechdocsContent";
|
||||
import {kubernetesContent} from "../tabs/KubernetesContent";
|
||||
import {topologyContent} from "../tabs/TopologyContent";
|
||||
|
||||
export const serviceEntityPage = (
|
||||
<EntityLayout>
|
||||
@@ -73,5 +74,9 @@ export const serviceEntityPage = (
|
||||
{kubernetesContent}
|
||||
</EntityLayout.Route>
|
||||
|
||||
<EntityLayout.Route path="/topology" title="Topology">
|
||||
{topologyContent}
|
||||
</EntityLayout.Route>
|
||||
|
||||
</EntityLayout>
|
||||
);
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import { TopologyPage } from '@janus-idp/backstage-plugin-topology';
|
||||
// import { TopologyPage } from '@redhat/backstage-plugin-topology';
|
||||
import React from "react";
|
||||
|
||||
export const topologyContent = (
|
||||
<TopologyPage />
|
||||
);
|
||||
Reference in New Issue
Block a user