Skip to content

Commit

Permalink
DEL: remove last instances of Kubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurin-Notemann committed May 21, 2024
1 parent 29149c2 commit 218c268
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 26 deletions.
5 changes: 0 additions & 5 deletions packages/app/src/components/catalog/EntityPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ import {

import { TechDocsAddons } from '@backstage/plugin-techdocs-react';
import { ReportIssue } from '@backstage/plugin-techdocs-module-addons-contrib';
import { EntityKubernetesContent } from '@backstage/plugin-kubernetes';
import {
EntityCircleCIContent,
isCircleCIAvailable,
Expand Down Expand Up @@ -186,10 +185,6 @@ const serviceEntityPage = (
<EntityLayout.Route path="/docs" title="Docs">
{techdocsContent}
</EntityLayout.Route>

<EntityLayout.Route path="/kubernetes" title="Kubernetes">
<EntityKubernetesContent refreshIntervalMs={30000} />
</EntityLayout.Route>
</EntityLayout>
);

Expand Down
4 changes: 0 additions & 4 deletions packages/backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ import search from './plugins/search';
import { PluginEnvironment } from './types';
import { ServerPermissionClient } from '@backstage/plugin-permission-node';
import { DefaultIdentityClient } from '@backstage/plugin-auth-node';
import kubernetes from './plugins/kubernetes';


function makeCreateEnv(config: Config) {
const root = getRootLogger();
Expand Down Expand Up @@ -87,7 +85,6 @@ async function main() {
const techdocsEnv = useHotMemoize(module, () => createEnv('techdocs'));
const searchEnv = useHotMemoize(module, () => createEnv('search'));
const appEnv = useHotMemoize(module, () => createEnv('app'));
const kubernetesEnv = useHotMemoize(module, () => createEnv('kubernetes'));


const apiRouter = Router();
Expand All @@ -97,7 +94,6 @@ async function main() {
apiRouter.use('/techdocs', await techdocs(techdocsEnv));
apiRouter.use('/proxy', await proxy(proxyEnv));
apiRouter.use('/search', await search(searchEnv));
apiRouter.use('/kubernetes', await kubernetes(kubernetesEnv));


// Add backends ABOVE this line; this 404 handler is the catch-all fallback
Expand Down
17 changes: 0 additions & 17 deletions packages/backend/src/plugins/kubernetes.ts

This file was deleted.

0 comments on commit 218c268

Please sign in to comment.