@digital-ai/plugin-dai-deploy
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

Digital.ai Deploy Plugin

  • Welcome to the Digital.ai (Dai) Deploy plugin for Backstage!
  • With Dai Deploy Plugin you can monitor all your active and archived deployments, the status of deployments, and view the task details of various deployments.

This is a combination of 2 plugins - the frontend and the backend.

Setup

The following section helps you add the Digital.ai Deploy frontend plugin.

Prerequisites

You need to set up the Dai Deploy backend plugin before you move forward with any of these steps.

Installing and Configuring the Frontend Plugin

The frontend plugin needs to be added to your application. To do so:

1. Run the following command from the Backstage root directory:

yarn --cwd packages/app add @digital-ai/plugin-dai-deploy

2. Add the DaiDeployEntityDeploymentsContent extension to your entity pages:

// For example in the CI/CD section
// packages/app/src/components/catalog/EntityPage.tsx
import {
  DaiDeployEntityDeploymentsContent
} from '@digital-ai/plugin-dai-deploy';

const cicdContent = (
  <EntitySwitch>
    // ...
    <EntitySwitch.Case>
        <DaiDeployEntityDeploymentsContent />
    </EntitySwitch.Case>
    // ...
  </EntitySwitch>

// For example to create a new section "Deploy" in entity page
// packages/app/src/components/catalog/EntityPage.tsx
import {
  DaiDeployEntityDeploymentsContent
} from '@digital-ai/plugin-dai-deploy';

const serviceEntityPage = (
  <EntityLayout>
// ...
<EntityLayout.Route path="/deploy" title="Deploy">
      	<DaiDeployEntityDeploymentsContent />
               </EntityLayout.Route>
// ...
  </EntityLayout>

const websiteEntityPage = (
  <EntityLayout>
// ...
<EntityLayout.Route path="/deploy" title="Deploy">
      <DaiDeployEntityDeploymentsContent />
    </EntityLayout.Route>
// ...
  </EntityLayout>

3. Add an annotation to your catalog-info.yaml files. For example

apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
  # ...
  annotations:
     dai-deploy/ci-id: '<ci-name>'
spec:
  type: service
  # ...

Note: ci-name is your application name in Deploy.

Links

For more information, see Overview and Adding Deploy to Your Backstage IDP

/@digital-ai/plugin-dai-deploy/

    Package Sidebar

    Install

    npm i @digital-ai/plugin-dai-deploy

    Homepage

    digital.ai/

    Weekly Downloads

    3

    Version

    0.1.2

    License

    MIT

    Unpacked Size

    95.5 kB

    Total Files

    16

    Last publish

    Collaborators

    • dai-npmjs-bot
    • grantcroker-dai
    • geekzoo-dai
    • jcaldas
    • gvolarevic-dai
    • msnively
    • agavaldas