Website: [https://harness.io/](https://harness.io/)
npm install @harnessio/backstage-plugin-feature-flagsWebsite: https://harness.io/
Welcome to the Harness Feature Flags plugin for Backstage!


1. Open terminal and navigate to the _root of your Backstage app_. Then run
``
yarn add --cwd packages/app @harnessio/backstage-plugin-feature-flags
yarn install
`
If you are looking to get started with Backstage, check out backstage.io/docs.
For testing purposes, you can also clone this repository to try out the plugin. It contains an example Backstage app setup which is pre-installed with Harness plugins. However, you must create a new Backstage app if you are looking to get started with Backstage.
2. Configure proxy for harness in your app-config.yaml under the proxy config. Add your Harness Personal Access Token or Service Account Token for x-api-key. See the Harness docs for generating an API Key.
`yamlIn app-config.yaml
proxy:
# ... existing proxy settings
'/harness':
target: 'https://app.harness.io/'
headers:
'x-api-key': '...
`
Notes:
- Plugin uses token configured here to make Harness API calls. Make sure this token has the necessary permissions
- Set the value of target to your on-prem URL if you are using the Harness on-prem offering
3. Inside your Backstage's EntityPage.tsx, add the new featureFlagList component to render whenever the service is using Harness Feature Flags. Something like this -
`tsx
// In packages/app/src/components/catalog/EntityPage.tsx
import {
isHarnessFeatureFlagAvailable,
EntityHarnessFeatureFlagContent,
} from '@harnessio/backstage-plugin-feature-flags';
...
const featureFlagList = (
missing="info"
description="You need to add an annotation to your component if you want to enable Feature Flags for it. You can read more about annotations in Backstage by clicking the button below."
action={
variant="contained"
color="primary"
href="https://backstage.io/docs/features/software-catalog/well-known-annotations"
>
Read more
}
/>
);
...
const serviceEntityPage = (
{featureFlagList}
);
...
`
4. Add required harness specific annotations to your software component's respective catalog-info.yaml file. Here is an example: https://github.com/harness/backstage-plugins/blob/main/examples/catalog-harness-cicd.yaml
`yaml
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
# ...
annotations:
# mandatory annotation
harness.io/project-url:
# optional annotations
# harness.io/ci-pipelineIds:
# harness.io/cd-serviceId:
spec:
type: service
# ...
`
Note: Refer to this page on how to get these values from your Harness account.
By default, the plugin will take all the pipelines inside the configured Harness project and show their executions. However, if your service has quiet a few pipelines, you can additionally configure the pipelines as well as associated services to show those specific execution details for the display.
- (Optional) Harness URL
If you have a separate Harness hosted URL other than https://app.harness.io, you can configure baseUrl for harness in app-config.yaml This step is optional. The default value of harness.baseUrl is https://app.harness.io/
`yamlIn app-config.yaml
harness:
baseUrl: https://app.harness.io/
``
- Connect a Backstage service with a Harness project and view the list of all Feature Flags.
- See details about a Feature Flags - state(on/off), type and status environment, last modified and created.
- Filter the Feature Flags and their corresponding information according to the Environments.