Azure DevOps Backend
Simple plugin that proxies requests to the Azure DevOps API.
Setup
The following sections will help you get the Azure DevOps Backend plugin setup and running.
Credentials
In order to support Multiple Organizations as well as Service Principals and Managed Identity the Azure DevOps plugin relies on the integrations.azure section of your app-config.yaml being properly configured to be able to access the needed credentials. More details on this can be found in the Azure DevOps Locations documentation.
Single Organization Configuration
For those with a single organization the Azure DevOps plugin requires the following YAML configuration to be added to your app-config.yaml:
azureDevOps:
host: dev.azure.com
organization: my-company
Configuration Details:
hostcan be the same as the ones used for theintegrationsectionorganizationis your Azure DevOps Services (cloud) Organization name or for Azure DevOps Server (on-premise) this will be your Collection name
Note: The credentials in this setup would still need to be defined in your
integrations.azuresection of yourapp-config.yamlas noted in the Credentials section above.
Up and Running
Here's how to get the backend up and running:
-
First we need to add the
@backstage/plugin-azure-devops-backendpackage to your backend:# From your Backstage root directory yarn --cwd packages/backend add @backstage/plugin-azure-devops-backend -
Then we will create a new file named
packages/backend/src/plugins/azure-devops.ts, and add the following to it:import { createRouter } from '@backstage/plugin-azure-devops-backend'; import { Router } from 'express'; import type { PluginEnvironment } from '../types'; export default function createPlugin( env: PluginEnvironment, ): Promise<Router> { return createRouter({ logger: env.logger, config: env.config, reader: env.reader, }); } -
Next we wire this into the overall backend router, edit
packages/backend/src/index.ts:import azureDevOps from './plugins/azure-devops'; // ... async function main() { // ... // Add this line under the other lines that follow the useHotMemoize pattern const azureDevOpsEnv = useHotMemoize(module, () => createEnv('azure-devops')); // ... // Insert this line under the other lines that add their routers to apiRouter in the same way apiRouter.use('/azure-devops', await azureDevOps(azureDevOpsEnv)); -
Now run
yarn start-backendfrom the repo root -
Finally open
http://localhost:7007/api/azure-devops/healthin a browser and it should return{"status":"ok"}
New Backend System
The Azure DevOps backend plugin has support for the new backend system, here's how you can set that up:
In your packages/backend/src/index.ts make the following changes:
import { createBackend } from '@backstage/backend-defaults';
const backend = createBackend();
// ... other feature additions
+ backend.add(import('@backstage/plugin-azure-devops-backend'));
backend.start();
Processor
The Azure DevOps backend plugin includes the AzureDevOpsAnnotatorProcessor which will automatically add the needed annotations for you. Here's how to install it:
import { CatalogBuilder } from '@backstage/plugin-catalog-backend';
import { ScaffolderEntitiesProcessor } from '@backstage/plugin-catalog-backend-module-scaffolder-entity-model';
import { Router } from 'express';
import { PluginEnvironment } from '../types';
+ import { AzureDevOpsAnnotatorProcessor } from '@backstage/plugin-azure-devops-backend';
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
builder.addProcessor(new ScaffolderEntitiesProcessor());
+ builder.addProcessor(AzureDevOpsAnnotatorProcessor.fromConfig(env.config));
const { processingEngine, router } = await builder.build();
await processingEngine.start();
return router;
}
To use this with the New Backend System you'll want to create a backend module extension for the Catalog if you haven't already. Here's a basic example of this assuming you are only adding the AzureDevOpsAnnotatorProcessor, this would go in your packages/backend/index.ts:
import { createBackend } from '@backstage/backend-defaults';
+ import { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node/alpha';
+ import { coreServices, createBackendModule } from '@backstage/backend-plugin-api';
+ import { AzureDevOpsAnnotatorProcessor } from '@backstage/plugin-azure-devops-backend';
+ const catalogModuleCustomExtensions = createBackendModule({
+ pluginId: 'catalog', // name of the plugin that the module is targeting
+ moduleId: 'custom-extensions',
+ register(env) {
+ env.registerInit({
+ deps: {
+ catalog: catalogProcessingExtensionPoint,
+ config: coreServices.rootConfig,
+ },
+ async init({ catalog, config }) {
+ catalog.addProcessor(AzureDevOpsAnnotatorProcessor.fromConfig(config));
+ },
+ });
+ },
+ });
const backend = createBackend();
// ... other feature additions
+ backend.add(catalogModuleCustomExtensions());
backend.start();