This tutorial describes how to export a existing Backstage plugin as a Dynamic plugin to be loaded into Red Hat Developer Hub.
For this demo I choose the Announcements plugin for Backstage as it is composed by multiple components including front-end UI, backend and search-backend.
Reference documentation:
- Official guide from the product documentation
- A simple getting started project for building Dynamic Plugins with Red Hat Developer Hub
Clone the Backstage community-plugins repo to you workstation.
Note: The following procedure does not change the original plugin code base. It leverages the @janus-idp/cli to export and package the original plugin as a dynamic plugin.
cd community-plugins/workspaces/announcements/plugins
yarn install
yarn tsc
yarn build:all
cd announcements
npx @janus-idp/cli@latest package export-dynamic-plugin --clean
#packaging as an NPM artifact (to publish to a Private NPM Registry)
cd dist-dynamic
npm pack
#packaging as an OCI artifact (to publish to an OCI Container Registry)
npx @janus-idp/cli@latest package package-dynamic-plugins --tag quay.io/repository/backstage-community-plugin-announcements-dynamic:latest
cd ../..
cd announcements-backend
npx @janus-idp/cli@latest package export-dynamic-plugin --clean --embed-package @backstage-community/plugin-search-backend-module-announcements --embed-package @backstage/plugin-signals-node
#packaging as an NPM artifact (to publish to a Private NPM Registry)
cd dist-dynamic
npm pack
#packaging as an OCI artifact (to publish to an OCI Container Registry)
cd ../
npx @janus-idp/cli@latest package package-dynamic-plugins --tag quay.io/repository/backstage-community-plugin-announcements-backend-dynamic:latest
cd ../..
cd search-backend-module-announcements
npx @janus-idp/cli@latest package export-dynamic-plugin --clean --embed-package @backstage-community/plugin-announcements-common --embed-package @backstage-community/plugin-announcements-node
#packaging as an NPM artifact (to publish to a Private NPM Registry)
cd dist-dynamic
npm pack
#packaging as an OCI artifact (to publish to an OCI Container Registry)
cd ../
npx @janus-idp/cli@latest package package-dynamic-plugins --tag quay.io/repository/backstage-community-search-backend-module-announcements-dynamic:latest
cd ../..
add to your dynamic-plugins-config.yaml
plugins:
#...
- package: oci://quay.io/redhat_na_ssa/rhdh-dynamic-plugins/backstage-community-plugin-announcements-dynamic:0.1.4!backstage-community-plugin-announcements-dynamic
disabled: false
- package: oci://quay.io/redhat_na_ssa/rhdh-dynamic-plugins/backstage-community-plugin-search-backend-module-announcements-backend-dynamic:0.1.4!backstage-community-plugin-search-backend-module-announcements-backend-dynamic
disabled: false
- package: oci://quay.io/redhat_na_ssa/rhdh-dynamic-plugins/backstage-community-plugin-search-backend-module-announcements-dynamic:0.1.3!backstage-community-plugin-search-backend-module-announcements-dynamic
disabled: false
Add the following snippet to the app-config
dynamicPlugins:
frontend:
backstage-community.plugin-announcements:
dynamicRoutes:
- path: /announcements
importName: AnnouncementsPage
menuItem:
text: 'Announcements'
icon: star #this comes from https://github.com/redhat-developer/rhdh/blob/main/packages/app/src/components/DynamicRoot/CommonIcons.tsx#L23-L47
# add announcements widgets to the Home Page cards
mountPoints:
- mountPoint: home.page/cards
importName: NewAnnouncementBanner
config:
layouts:
xl: { h: 1, y: 1 }
lg: { h: 1, y: 1 }
md: { h: 1, y: 1 }
sm: { h: 1 }
xs: { h: 1 }
xxs: { h: 1 }
- mountPoint: home.page/cards
importName: AnnouncementsCard
config:
layouts:
xl: { w: 5, h: 4, x: 8, y: 10}
lg: { w: 5, h: 4, x: 8, y: 10}
md: { w: 5, h: 4, x: 8, y: 10}
sm: { w: 12, h: 4 }
xs: { w: 12, h: 4 }
xxs: { w: 12, h: 4 }
- mountPoint: search.page.results
importName: AnnouncementSearchResultListItem
#- mountPoint: search.page.filters
# importName: TechdocsSearchFilter
- mountPoint: search.page.types
importName: Announcement
config:
props:
name: Announcements
icon: announcementSearchResultListItem.announcement