Automation Pipelines can integrate with VMware Aria Automation Orchestrator (Orchestrator) to extend its capability by running Orchestrator workflows. VMware Aria Automation Orchestrator includes many predefined workflows that can integrate with third-party tools. These workflows help to automate and manage your DevOps processes, automate bulk operations, and more.

For example, you can use a workflow in an Orchestrator task in your pipeline to enable a user, remove a user, move VMs, integrate with test frameworks to test your code as the pipeline runs, and much more. You can browse examples of code for VMware Aria Automation Orchestrator workflows in code.vmware.com.

With a VMware Aria Automation Orchestrator workflow, your pipeline can run an action as it builds, tests, and deploys your application. You can include predefined workflows in your pipeline, or you can create and use custom workflows. Each workflow includes inputs, tasks, and outputs.

To run an Orchestrator workflow in your pipeline, the workflow must appear in the list of available workflows in the Orchestrator task that you include in your pipeline.

Before the workflow can appear in the Orchestrator task in your pipeline, an administrator must perform the following steps in VMware Aria Automation Orchestrator:

  1. Apply the PIPELINES tag to the Orchestrator workflow.
  2. Mark the Orchestrator workflow as global.

As an on-premises endpoint, VMware Aria Automation Orchestrator must communicate with Automation Pipelines through a cloud proxy.

Prerequisites

Procedure

  1. As an administrator, prepare a VMware Aria Automation Orchestrator workflow for your pipeline to run.
    1. In VMware Aria Automation Orchestrator, find the workflow that you need to use in your pipeline, such as a workflow to enable a user.
      If you need a workflow that does not exist, you can create it.
    2. In the search bar, enter Tag workflow to find the workflow named Tag workflow.
    3. On the card named Tag workflow, click Run, which displays the configuration area.
    4. In the Tagged workflow text area, enter the name of the workflow to use in your Automation Pipelines pipeline, then select it from the list.
    5. In the Tag and Value text areas, enter PIPELINES in capital letters.
    6. Click the check box named Global tag.
    7. Click Run, which attaches the tag named PIPELINES to the workflow that you need to select in your Automation Pipelines pipeline.
    8. In the navigation pane, click Workflows and confirm that the tag named PIPELINES appears on the workflow card that your pipeline will run.
      After you log in to Automation Pipelines, and add an Orchestrator task to your pipeline, the tagged workflow appears in the workflow list.
  2. In Automation Pipelines, create an endpoint for your VMware Aria Automation Orchestrator instance.
    1. Click Endpoints > New Endpoint.
    2. Select a project.
    3. Enter a relevant name.
    4. Enter the URL of the VMware Aria Automation Orchestrator endpoint.
      Use this format: https://orchestrator-appliance.yourdomain.local:8281
      Do not use this format: https://orchestrator-appliance.yourdomain.local:8281/vco/api
      The URL for a VMware Aria Automation Orchestrator instance that is embedded in the VMware Aria Automation appliance, is the FQDN for the appliance without a port. For example: https://automation-appliance.yourdomain.local/vco
      For external VMware Aria Automation Orchestrator appliances starting with VMware Aria Automation 8.x, the FQDN for the appliance is https://orchestrator-appliance.yourdomain.local
      For external VMware Aria Automation Orchestrator appliances included with VMware Aria Automation 7.x, the FQDN for the appliance is https://orchestrator-appliance.yourdomain.local:8281/vco
      If a problem occurs when you add the endpoint, you might need to import a YAML configuration with a SHA-256 certificate fingerprint with the colons removed. For example, B0:01:A2:72... becomes B001A272.... The sample YAML code resembles:
      ```
      ---
      project: Demo
      kind: ENDPOINT
      name: external-orchestrator
      description: ''
      type: orchestrator
      properties:
        url: https://yourVROhost.yourdomain.local
        username: yourusername
        password: yourpassword
        fingerprint: <your_fingerprint>
      ```
    5. Select a cloud proxy.
    6. Click Accept Certificate in case the URL that you entered needs a certificate.
    7. If the VMware Aria Automation Orchestrator endpoint is version 8.0 to 8.7, you can select Basic Auth or Token for the Authentication type. If the VMware Aria Automation Orchestrator endpoint is version is 8.8 or later, you must select Token for the Authentication type.
      Note: If the VMware Aria Automation Orchestrator endpoint is version 8.8 or later, do not select Basic Auth. Basic Auth is not supported and endpoint creation will fail.
      • If you select Basic Auth, enter the user name and password for the VMware Aria Automation Orchestrator server.

        If you're using a non-local user for authentication, you must omit the domain part of the user name. For example, to authenticate with [email protected] you must enter svc_vro in the Username text area.

      • If you select Token for the authentication type, generate and paste the Private Token.
        The VMware Cloud Services API token authenticates you for external API connections with Automation Pipelines. To obtain the API token:
        1. Sign in to VMware Aria Automation.
        2. Sign in to
        3. Click the drop-down arrow by your name.
        4. Click My Account.
        5. Click API Tokens.
        6. Click Generate a New API Token.
          1. Enter a Token Name.
          2. Under Organization Roles, click to expand All Organization Roles and select Organization Owner.
          3. Under Service Roles, click to expand VMware Aria Automation > Pipelines and select Pipelines Administrator.
          4. Click Generate.

            The Token Generated window displays a token with the name that you specified and the name of your organization.

        7. Click the COPY icon.

          Clicking COPY ensures that you capture the exact string and is more reliable than using your pointer to copy the string.

  3. Prepare your pipeline to run the Orchestrator task.
    1. Add an Orchestrator task to your pipeline stage.
    2. Enter a relevant name.
    3. In the Workflow Properties area, select the VMware Aria Automation Orchestrator endpoint.
    4. Select the workflow that you tagged as PIPELINES in VMware Aria Automation Orchestrator.
      If you select a custom workflow that you created, you might need to enter the input parameter values.
    5. For Execute task, click On condition.
      If you must apply conditions for the VMware Aria Automation Orchestrator task, enter them in the Condition area.
    6. Enter the conditions that apply when the pipeline runs.
      When to run pipeline... Select conditions...
      On Condition

      Runs the pipeline task only if the defined condition is evaluated as true. If the condition is false, the task is skipped.

      The Orchestrator task allows you to include a boolean expression, which uses the following operands and operators.

      • Pipeline variables such as ${pipeline.variableName}. Only use curly brackets when entering variables.
      • Task output variables such as ${Stage1.task1.machines[0].value.hostIp[0]}.
      • Default pipeline binding variables such as ${releasePipelineName}.
      • Case insensitive Boolean values such as, true, false, 'true', 'false'.
      • Integer or decimal values without quotation marks.
      • String values used with single or double quotation marks such as "test", 'test'.
      • String and Numeric types of values such as == Equals and != Not Equals.
      • Relational operators such as >, >=, <, and <=.
      • Boolean logic such as && and ||.
      • Arithmetic operators such as +, -, *, and /.
      • Nested expressions using round brackets.
      • Strings that include the literal value ABCD are evaluated as false, and the task is skipped.
      • Unary operators are not supported.

      An example condition might be ${Stage1.task1.output} == “Passed” || ${pipeline.variableName} == 39

      Always If you select Always, the pipeline runs the task without conditions.
    7. Enter a message for the greeting.
    8. Click Validate Task, and correct any errors that occur.
  4. Save, enable, and run your pipeline.
  5. After the pipeline runs, examine the results.
    1. Click Executions.
    2. Click the pipeline.
    3. Click the task.
    4. Examine the results, input value, and properties.
      You can identify the workflow execution ID, who responded to the task and when, and any comments they included.

Results

Congratulations! You tagged a VMware Aria Automation Orchestrator workflow for use in Automation Pipelines, and added an Orchestrator task in your Automation Pipelines pipeline so that it runs a workflow that automates an action in your DevOps environment.

Example: Orchestrator task output format

The output format for an Orchestrator task resembles this example.

[{
                "name": "result",
                "type": "STRING",
                "description": "Result of workflow run.",
                "value": ""
},
{
                "name": "message",
                "type": "STRING",
                "description": "Message",
                "value": ""
}]

What to do next

Continue to include Orchestrator workflow tasks in your pipelines so that you can automate tasks in your development, test, and production environments.