Welcome to the StackStorm plugin!
A Backstage integration for the StackStorm. This plugin allows you to display a list of executions, view execution details, browse installed packs, actions and more.
To get started, first you need a running instance of StackStorm. One of the quickest ways is running StackStorm with Docker.
- Install the plugin with
yarnin the root of your Backstage directory
# From your Backstage root directory
yarn --cwd packages/app add @backstage-community/plugin-stackstorm- Import and use the plugin in
packages/app/src/App.tsx
import { StackstormPage } from '@backstage-community/plugin-stackstorm';
const routes = (
<FlatRoutes>
{/* ...other routes */}
<Route path="/stackstorm" element={<StackstormPage />} />
</FlatRoutes>- Configure
webUrlfor links to the StackStorm Web UI inapp-config.yaml.
stackstorm:
webUrl: 'https://your.stackstorm.webui.com'- Configure
stackstormproxy This plugin uses the Backstage proxy to securely communicate with StackStorm API. Add the following to yourapp-config.yamlto enable this configuration:
proxy:
'/stackstorm':
target: https://your.stackstorm.instance.com/api
headers:
St2-Api-Key: ${ST2_API_KEY}In your production deployment of Backstage, you would also need to ensure that
you've set the ST2_API_KEY environment variable before starting
the backend.
Read more about how to find or generate this key in the StackStorm Authentication Documentation.