Skip to main content

ClusterAttributes.dashboardApp

Home > @backstage/plugin-kubernetes-common > ClusterAttributes > dashboardApp

Specifies the app that provides the Kubernetes dashboard. This will be used for formatting links to kubernetes objects inside the dashboard.

Signature:

dashboardApp?: string;

Remarks

The supported dashboards are: standard, rancher, openshift, gke, aks, eks Note that it will default to the regular dashboard provided by the Kubernetes project (standard). Note that you can add your own formatter by registering it to the clusterLinksFormatters dictionary.

Example

import { clusterLinksFormatters } from '@backstage/plugin-kubernetes';
clusterLinksFormatters.myDashboard = (options) => ...;