0.4.0 • Published 1 year ago

@kpt/backstage-plugin-cad v0.4.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Configuration as Data Plugin

Welcome to the Configuration as Data plugin! This plugin powers the WYSIWYG Configuration GUI over GitOps using kpt and its new Package Orchestrator, porch.

New to Configuration as Data?

Configuration as Data is an approach to management of configuration (incl. configuration of infrastructure, policy, services, applications, etc.) which:

  • makes configuration data the source of truth, stored separately from the live state
  • uses a uniform, serializable data model to represent configuration
  • separates code that acts on the configuration from the data and from packages / bundles of the data
  • abstracts configuration file structure and storage from operations that act upon the configuration data; clients manipulating configuration data don’t need to directly interact with storage (git, container images)

Read Configuration as Data Design Document to learn more.

Installation

To install Configuration as Data Plugin to Backstage, you will need to install both the Frontend and Backend plugins. Once completed, you will be able to access the UI by browsing to /config-as-data.

Adding the frontend plugin

The first step is to add the Configuration as Data plugin to your Backstage application.

# From your Backstage root directory
yarn add --cwd packages/app @kpt/backstage-plugin-cad

Once the package is installed, import the plugin in your app by adding the config-as-data route to App.tsx.

import { CadPage } from '@kpt/backstage-plugin-cad';
// ...

const routes = (
  <FlatRoutes>
    // ...
    <Route path="/config-as-data" element={<CadPage />} />
  </FlatRoutes>
);

Adding the backend plugin

Add and configure the cad-backend plugin according to its instructions.

Optional: Adding a link to the plugin on the Sidebar

Add a link to the Sidebar to easily access Configuration as Data. In packages/app/src/components/Root.tsx add:

import LibraryBooks from '@material-ui/icons/LibraryBooks';

<SidebarScrollWrapper>
  <SidebarItem icon={LibraryBooks} to="config-as-data" text="Config as Data" />
  // Other sidebar items...
</SidebarScrollWrapper>;