Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@harnessio/backstage-plugin-harness-ccm
Advanced tools
Website: [https://harness.io/](https://harness.io/)
Website: https://harness.io/
Welcome to the Harness CCM plugin for Backstage!
yarn add --cwd packages/app @harnessio/backstage-plugin-harness-ccm
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.
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 has perspective view
permission 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
EntityPage.tsx
, import the EntityCcmContent
and isHarnessCcmAvailable
from @harnessio/backstage-plugin-harness-ccm
and add <EntityHarnessCcmContent />
. Something like this -// In packages/app/src/components/catalog/EntityPage.tsx
import {
isHarnessCcmAvailable,
EntityCcmContent,
} from '@harnessio/backstage-plugin-harness-ccm';
const ccmContent = (
// ...
<EntitySwitch.Case if={isHarnessCcmAvailable}>
<EntityHarnessCcmContent />
</EntitySwitch.Case>
// ...
);
catalog-info.yaml
file.Here is an example: catalog-info-new.yaml
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
# ...
annotations:
# annotation
harness.io/perspective-url: <harness_ccm_perspective_url>
FAQs
Website: [https://harness.io/](https://harness.io/)
We found that @harnessio/backstage-plugin-harness-ccm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.