plugins: add title, icon, and NFS page variants to migrated plugins

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-03-25 17:05:23 +01:00
parent fa0593e6e5
commit d156cf48bb
14 changed files with 44 additions and 1 deletions
+2 -1
View File
@@ -66,7 +66,8 @@
"@backstage/plugin-kubernetes-common": "workspace:^",
"@backstage/plugin-kubernetes-react": "workspace:^",
"@backstage/plugin-permission-react": "workspace:^",
"@material-ui/core": "^4.12.2"
"@material-ui/core": "^4.12.2",
"@remixicon/react": "^4.6.0"
},
"devDependencies": {
"@backstage/cli": "workspace:^",
+3
View File
@@ -15,6 +15,7 @@
*/
import { createFrontendPlugin } from '@backstage/frontend-plugin-api';
import { RiShipLine } from '@remixicon/react';
import { kubernetesPage } from './pages';
import { entityKubernetesContent } from './entityContents';
import { rootCatalogKubernetesRouteRef } from '../plugin';
@@ -27,6 +28,8 @@ import {
export default createFrontendPlugin({
pluginId: 'kubernetes',
title: 'Kubernetes',
icon: <RiShipLine />,
info: { packageJson: () => import('../../package.json') },
extensions: [
kubernetesPage,