Skip to content

IBM Engineering Workflow Management (EWM) - Usage

To use the IBM Engineering Workflow Management (EWM) plug-in, the plug-in must be loaded and an instance created before you can configure the plug-in integration. Configuration properties are defined using the product user interface or a JSON file.

Integration type

The EWM plug-in supports scheduled events integration. There is only one scheduled event which is described in the following table.

NameDescription
SyncEWMIssuesEventQueries the IBM EWM server for new or updated work items. If a work item already exists, it is updated.

Integration

There are two methods to integrate the plug-in:

  • Using the user interface

  • Using a JSON file

Using the user interface

To install the plug-in, perform the following steps:

  1. In IBM DevOps Velocity, click Settings > Integrations > Available.
  2. In the Action column for the EWM plug-in, click Install.

To integrate the plug-in, perform the following steps:

  1. From the Plugins page, click Settings > Integrations > Plugins.
  2. Under the Action column for the plug-in,click Add Integration.
  3. On the Add Integration page enter values for the fields used to configure the integration and define communication.
  4. Click Save.

Using a JSON file

The JSON file contains the information for creating a value stream and integrating with the IBM Engineering WorkFlow Management (EWM) server. The following table describes the information for the creating a DevOps Velocity value stream map.

  1. Download the value stream map. The value stream map is a JSON file used to define integrations.
  2. Edit the JSON file to include the plug-in configuration properties.
  3. Save and upload the JSON file. This replaces the current JSON file with the new content.
  4. View the new integration on the Integrations page.

Configuration properties

The following tables describe the properties used to configure the integration. Each table contains the field name when using the user interface and the property name when using a JSON file.

  • The General Configuration Properties table describes configuration properties used by all plug-in integrations.
  • The IBM Engineering WorkFlow Management (EWM) Configuration Properties table describes the IBM Engineering WorkFlow Management (EWM) configuration properties that define the connection and communications with the IBM Engineering WorkFlow Management (EWM) server. When using the JSON method to integrate the plug-in these properties are coded within the properties configuration property.

Some properties might not be displayed in the user interface, to see all properties enable the Show Hidden Properties field.

General Configuration Properties

NameDescriptionRequiredProperty Name
NAThe version of the plug-in that you want to use. To view available versions, see the UrbanCode DockerHub. If a value is not specified, the latest version is used.Noimage
Integration NameAn assigned name to the value stream.Yesname
Logging LevelThe level of Log4j messages to display in the log file. Valid values are: all, debug, info, warn, error, fatal, off, and trace.NologgingLevel
NAList of configuration properties used to connect and communicate with the IBM Engineering WorkFlow Management (EWM) server. Enclose the properties within braces.Yesproperties
The name of the tenant.Yestenant_id
NAUnique identifier assigned to the plug-in. The value for the IBM Engineering WorkFlow Management (EWM) Server plug-in is ucv-ext-ewm/tagsYestype

IBM Engineering WorkFlow Management (EWM) Configuration Properties

NameTypeDescriptionRequiredProject Name
PasswordSecureThe password used to authenticate with IBM EWM server.Yespassword
ProjectsArrayComma separated list of projects from which to import work items.Yesprojects
Server URLStringThe URL of the IBM EWM server. For example: https://server.com/ccm.YesserverUrl
SinceStringThe number of months for which data is to be pulled. The default is 12 months.Nosince
User Access KeySecureThe user access key used to authenticate with the DevOps Velocity server.NoucvAccessKey
User IDStringThe user name used to authenticate with the IBM EWM server.YesuserId
Proxy PasswordSecureThe password used to authenticate with the proxy server.NoproxyPassword
Proxy ServerStringThe URL of the proxy server including the port number.NoproxyServer
Proxy User NameStringThe user name used to authenticate with the proxy server.NoproxyUsername

Example

The following example can be used as as template to include the Engineering Workflow Management plug-in integration into the JSON file. Copy and paste the template into the JSON file and make the appropriate changes.

json

"integrations": [
    {
        "type": "ucv-ext-ewm",
        "name": "*integration_name*",
        "logginglevel": "info",
        "tenant_id": "*tenant_id*",
        "properties": {
            "serverUrl":"*url_ewm_server*",
            "projects" : "*project_name*",
            "userId"   : "*user_id*",
            "password" : "*password*",
            "since"    : "60",
            "ucvAccessKey":"a-valid-user-access-key"
        }
    }
]

Demonstration

View a video demonstrating the use of the EWM plug-in.