Backstage is a powerful tool for presenting a clean and consistent developer experience within an organization. As Signadot is fundamentally a tool for improving the developer experience, I wanted to give a brief outline of Backstage, and how it can improve engineer's lives, especially when using Kubernetes.
Backstage is a powerful tool for presenting a clean and consistent developer experience within an organization. As Signadot is fundamentally a tool for improving the developer experience, I wanted to give a brief outline of Backstage, and how it can improve engineer’s lives, especially when using Kubernetes.
Backstage is an open-source platform developed by Spotify that serves as a developer portal for all the tooling, services, and documentation within an organization. It’s designed to be a unifying interface for both developers and operations engineers, providing a centralized location for managing various aspects of software development and infrastructure.
Backstage represents a significant step towards consolidating the fragmented tooling landscape that many organizations face. By offering a single access point for all development-related activities, it aims to improve efficiency, collaboration, and understanding across teams.
The success of Backstage within an organization would likely depend on thoughtful implementation and alignment with existing processes and culture. The extensibility through plugins is a strong point, but it also requires careful management to ensure that the platform remains coherent and user-friendly.
In essence, Backstage is a comprehensive platform that seeks to unify various aspects of software development and operations within a single interface. Its open-source nature aligns well with the growing trend towards transparency and collaboration in the tech industry. While promising, its effectiveness would be contingent on the specific needs, culture, and practices of the organization implementing it. It’s a tool that warrants consideration, especially for organizations looking to streamline their development processes and foster a more cohesive and efficient development environment.
Kubernetes in Backstage is designed to enable developers to effortlessly monitor the health of their services, irrespective of the deployment environment. This could range from a local host for testing to production environments spread across multiple clusters globally.
The salient features of this integration include:

a quick insight into your running clusters
The decision to integrate Backstage within your organization’s technological ecosystem must be approached with a nuanced understanding of both its capabilities and potential challenges. While the deployment of Backstage for a small number of developers may be relatively straightforward, scaling it to an enterprise level introduces complexities that warrant careful consideration:
Here’s a brief guide on how to use Kubernetes with Backstage, tailored for an enterprise setting:
Install the Frontend Plugin: Begin by adding the Kubernetes frontend plugin to your Backstage application. This can be done from the Backstage root directory using the following command:
yarn add —cwd packages/app @backstage/plugin-kubernetes
Import the Plugin: Next, import the plugin in your app by adding the “Kubernetes” tab to the respective catalog pages. You can set an optional refresh interval for the content, with a default of 10 seconds.
Install the Backend Plugin: Navigate to the packages/backend of your Backstage app and install the @backstage/plugin-kubernetes-backend package:
yarn add —cwd packages/backend @backstage/plugin-kubernetes-backend
Create a Backend File: Create a file called kubernetes.ts inside packages/backend/src/plugins/ and add the necessary code to build and return the router.
Import the Backend Plugin: Import the plugin into packages/backend/src/index.ts and add the required lines of code to integrate it with your existing Backstage backend.
Custom Cluster Configuration (Optional): If the existing cluster locators don’t suit your needs, you can implement a custom KubernetesClustersSupplier. This allows for custom refresh intervals and cluster details fetching.
Configure the Plugins: After installing the plugins in the code, you’ll need to configure them according to your specific requirements.
Troubleshoot if Necessary: If the Kubernetes information is not displaying as expected, you may need to troubleshoot the issue.
This integration is designed to enhance visibility and control for developers and administrators alike, but it should be implemented with consideration of your organization’s specific needs and compliance requirements.
Developer Experience (DX) tools, such as Backstage, can significantly improve a team’s development velocity by addressing the unique needs of service owners, engineers, and platform teams. Backstage, an open platform for building developer portals, provides a centralized hub for managing Kubernetes resources, including workloads, pods, and containers. With its Kubernetes plugin, Backstage enables seamless interaction with the Kubernetes cluster, simplifying the complexity of managing various objects and functions within the infrastructure.
By reducing the manual lines of code and providing a clear path for managing various aspects of the application, from development to production, Backstage serves as a valuable tool for organizations looking to enhance their development velocity. Its integration with Kubernetes, coupled with the flexibility to adapt to the specific needs and preferences of service owners and engineers, makes it a robust solution for modern development environments.
Get the latest updates from Signadot