Skip to main content

Create a remote step template

Currently, this feature is behind the feature flag NG_TEMPLATE_GITX. Contact Harness Support to enable the feature. ​Harness enables you to add templates to create re-usable logic and Harness entities (like steps, stages, and pipelines) in your pipelines. You can link these templates in your pipelines or share them with your teams for improved efficiency.

Templates enhance developer productivity, reduce onboarding time, and enforce standardization across the teams that use Harness.

You can create a Template and save it either in Harness or in a Git repository using the Inline or Remote option respectively.

This topic walks you through the steps to create a Remote step template.

Objectives

You'll learn how to:

  • Create a Remote Run step template.
  • Define template parameters.

Before you begin

Review the following:

Permissions

To create a Remote step template make sure you have Create/Edit and Access permissions for templates.

Remote step template overview

Harness' templates allow you to design reusable content, logic, and parameters, ensuring that the application is the major focus of your pipelines.​ Instead of creating pipelines from scratch each time, Harness lets you select from pre-built templates and just link them to your pipelines. The process of developing pipelines thus becomes easier by reducing duplication and increasing reusability.

You can reshare your work with your team and reuse it in your pipelines.​

All your templates can be seen in Templates based on their scope. ​We will also call this template library in this topic.

Harness lets you save your templates in Git repositories.​ For example, if you have a core Step that you want all of your Pipelines to use, you can put the template in a core repo and then refer to it. Now you can reuse this step template in multiple pipelines.

For information on inline step template, see create a step template.

Use template in a pipeline

Harness resolves the repositories when your pipeline starts up. After that, the same resource is used during the execution of the pipeline. Whenever you use the templates in your pipelines, once the templates are fully expanded, the final pipeline runs as if it were defined entirely in the source repo.​

You can have one of the following scenarios when using a template in your pipeline:

  • Remote step template and the pipeline exist in the same Git repo.
  • Remote step template and the pipeline exist in different Git repos.
  • Pipeline exists in Harness and the step template exists in Git repo.

Let us see how you can use template in each of these situations.

Remote step template and the pipeline exist in the same Git repo

In order to use the template in your pipeline if your Remote step template and pipeline are both present in the same Git repository, make sure your pipeline and template are both present in the same branch.​

Remote step template and the pipeline exist in different Git repos

In order to use the template in your pipeline if your Remote step template and pipeline are present in different Git repositories,​ make sure your template is present in the default branch of the specific repo.

Pipeline exists in Harness and the step template exists in Git repo

In order to use the template in your inline pipeline​, make sure your template is present in the default branch of your Git repository.

Create a Remote step template

You can create a step template from your account, org or project. This topic explains the steps to create a step template from the project scope.

  1. In your Harness account, go to your project.

  2. In Project SETUP select Templates.

  3. Select New Template and then select Step. The Create New Step Template settings appear.

  4. In Name, enter a name for the template.

  5. In Version Label, enter a version for the template.

  6. Select Remote.

  7. In Git Connector, select or create a Git connector to the repo for your project. For steps, go to code repo connectors.

    important

    Connector must use the Enable API access option and token. The connector must use the Enable API access option and Username and Token authentication. ​Harness requires the token for API access. Generate the token in your account on the Git provider and add it to Harness as a Secret. Next, use the token in the credentials for the Git Connector.​​

For GitHub, the token must have the following scopes:​
8. In Repository, select your repository. If your repository isn't listed, enter its name since only a select few repositories are filled here. ​Create the repository in Git before entering it in Select Repository. Harness does not create the repository for you. 9. In Git Branch, select your branch. If your branch isn't listed, enter its name since only a select few branches are filled here.​Create the branch in your repository before entering it in Git branch. Harness does not create the branch for you.​ 10. Harness auto-populates the YAML Path. You can change this path and the file name. 11. Select Start.​
Your step template is created and you can now add steps from the step library.

Add step parameters

  1. In Step Library, select Shell Script under Utilities.
    The Step Parameters settings appear.​
  2. ​In Script, enter your script.
  3. Specify your Input Variables and Output Variables.
  4. In Execution Target,​ specify where you want to execute the script.
    You can select Specify on Target Host or On Delegate.
    For more information, see Using Shell Scripts in CD Stages.
  5. Click Save. The Save Template to Git settings appear.
  6. In Select Branch to Commit, You can select one of the following:
    1. Commit to an existing branch: You can start a pull request if you like.​
    2. Commit to a new branch:​ Enter the new branch name. You can start a pull request if you like.
  7. Select Save. Your step template is saved to the repo branch. ​
  8. Click the YAML file to see the YAML for the Step Template.
  9. Edit the YAML. For example, change the name of the Template.​
  10. Commit your changes to Git.​
  11. Return to Harness and refresh the page.​​
    A Template Updated message appears.
  12. Select Update.
    The changes you made in Git are now applied to Harness.​​

Next steps