Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@harnessio/backstage-plugin-harness-iacm

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@harnessio/backstage-plugin-harness-iacm

# Harness IACM plugin

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
263
increased by52.02%
Maintainers
0
Weekly downloads
 
Created
Source

harness-iacm

Harness IACM plugin

Website: https://harness.io/

Welcome to the Harness IACM plugin for Backstage!

Screenshots

Getting started

Setup steps

  1. Open terminal and navigate to the root of your Backstage app. Then run
yarn add --cwd packages/app @harnessio/backstage-plugin-iacm

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.

  1. 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.
# In app-config.yaml

proxy:
  # ... existing proxy settings
  '/harness/prod':
    target: 'https://app.harness.io/'
    headers:
      'x-api-key': '<YOUR PAT/SAT>'
# ...

Notes:

  • Plugin uses token configured here to make Harness API calls. Make sure the user creating this API token has necessary permissions, which include project view permission along with pipeline view and execute permissions and same applies for service accounts as well it must have a role assigned that has the roles with adequate permissions as described before.

  • Set the value of target to your on-prem URL if you are using the Harness on-prem offering

  1. Inside your Backstage's EntityPage.tsx, import the EntityIacmContent and isHarnessIacmAvailable from @harnessio/backstage-plugin-iacm and add <EntityHarnessIacmContent />. Something like this -
// In packages/app/src/components/catalog/EntityPage.tsx

import {
  isHarnessIacmAvailable,
  EntityIacmContent,
} from '@harnessio/backstage-plugin-iacm';

const iacmContent = (
  // ...
  <EntitySwitch.Case if={isHarnessIacmAvailable}>
    <EntityHarnessIacmContent />
  </EntitySwitch.Case>
  // ...
);
Instructions in case of multiple IACM based plugins (Click to expand)
// In packages/app/src/components/catalog/EntityPage.tsx

import {
  isHarnessIacmAvailable,
  EntityIacmContent,
} from '@harnessio/backstage-plugin-iacm';


const serviceEntityPage = (
  // ...
  <EntityLayout.Route
    path="/harness-iacm"
    title="Harness IACM"
    if={isHarnessIacmAvailable}
  >
    <EntityIacmContent />
  </EntityLayout.Route>
  // ...
);
  1. Add required harness specific annotations to your software component's respective catalog-info.yaml file.

Here is an example: catalog-info-new.yaml

apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
  # ...
  annotations:
    # annotation
    harness.io/workspace-url: |
      labelA: <harness_iacm_workspace_url>
      labelB: <harness_iacm_workspace_url>
  # here labelA / labelB denotes the value you will see in dropdown in workspace list. 

Features

  • Connect a Backstage service with a Harness workspace and view workspace resources.
  • Navigate directly to specific pipeline from backstage

FAQs

Package last updated on 10 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc