> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/continuous-delivery/troubleshooting-and-resources/tutorials/on-prem-hybrid-deployments/pdc.md).

# Deploy to a physical data center

This tutorial helps you get started with Harness Continuous Delivery (CD). We will guide you through creating a CD pipeline with deployment type **Secure Shell (SSH)** or **WinRM** that manages remote Linux servers.

{% hint style="info" %}
[Sign up today to unleash the potential of intelligent Harness CD](https://app.harness.io/auth/#/signup/?module=cd\&utm_source=website\&utm_medium=harness-developer-hub\&utm_campaign=cd-plg\&utm_content=tutorials-cd-vm-pdc).
{% endhint %}

{% tabs %}
{% tab title="Secure Shell (SSH)" %}

### Before you begin <a href="#before-you-begin" id="before-you-begin"></a>

Verify that you have the following:

* **One or more Linux VM**. Use your own Linux VM or we recommend using [Vagrant](https://developer.hashicorp.com/vagrant/tutorials/getting-started/getting-started-install) for starting a new VM instance.
* **SSH Private Key to authenticate to the remote vm/server**. For steps, go to [Passwordless SSH using public-private key pairs](https://www.redhat.com/sysadmin/passwordless-ssh).
* [**Docker**](https://docs.docker.com/engine/install/) to set up and start *Docker Delegate*.
  * Check [delegate System and network requirements](/harness-ai/use-harness-platform/delegates/delegate/delegate-concepts/delegate-requirements.md).

### Getting Started with Harness CD <a href="#getting-started-with-harness-cd" id="getting-started-with-harness-cd"></a>

1. Log in to [Harness](https://app.harness.io/).
2. Select **Projects**, and then select **Default Project**.

{% hint style="warning" %}
For the pipeline to run successfully, follow all of the steps below as they are, including the naming conventions.
{% endhint %}

#### Set up the Harness Delegate <a href="#set-up-the-harness-delegate" id="set-up-the-harness-delegate"></a>

<details>

<summary>What is the Harness Delegate?</summary>

The Harness Delegate is a service that runs in your local network or VPC to establish connections between the Harness Manager and various providers such as artifacts registries, cloud platforms, etc. The delegate is installed in the target infrastructure, for example, a Kubernetes cluster, and performs operations including deployment and integration. Learn more about the delegate in the [Delegate Overview](/harness-ai/use-harness-platform/delegates/delegate/delegate-concepts/delegate-overview.md).

</details>

1. In **Project Setup**, select **Delegates**.
   1. Select **Delegates**.
      1. Select **Install delegate**. For this tutorial, let's explore how to install the Docker delegate.
      2. In the command provided, `ACCOUNT_ID`, `MANAGER_ENDPOINT` and `DELEGATE_TOKEN` are auto-populated values that you can obtain from the delegate installation wizard.

         ```bash
         docker run --cpus=1 --memory=2g \
           -e DELEGATE_NAME=docker-delegate \
           -e NEXT_GEN="true" \
           -e DELEGATE_TYPE="DOCKER" \
           -e ACCOUNT_ID=ACCOUNT_ID \
           -e DELEGATE_TOKEN=DELEGATE_TOKEN \
           -e MANAGER_HOST_AND_PORT=MANAGER_ENDPOINT harness/delegate:23.05.79310
         ```
   2. Verify that the delegate is installed successfully and can connect to the Harness Manager.

{% hint style="info" %}
You can also follow the [Install Harness Delegate on Kubernetes or Docker](/harness-ai/troubleshooting-and-resources/tutorials/install-delegate.md) steps to install the Kubernetes Delegate using the Helm, Terraform Helm Provider or Kubernetes manifest.
{% endhint %}

#### Set up a Harness secret for your SSH private key <a href="#set-up-a-harness-secret-for-your-ssh-private-key" id="set-up-a-harness-secret-for-your-ssh-private-key"></a>

<details>

<summary>What are Harness secrets?</summary>

Harness offers built-in secret management for encrypted storage of sensitive information. Secrets are decrypted when needed, and only the private network-connected Harness Delegate has access to the key management system. You can also integrate your own secret manager. To learn more about secrets in Harness, go to [Harness Secret Manager Overview](/harness-ai/use-harness-platform/secrets/secrets-management/harness-secret-manager-overview.md).

</details>

1. In **Project Setup**, select **Secrets**.
2. Select **New Secret** > **SSH Credential**.
3. Enter the secret name `harness_sshprivatekey` and click **Continue**.
4. With **SSH Key** as the Auth Scheme, select **Username/SSH Key** as the Authentication method.
5. Enter the username for the user account on the remote server in the **Username** field. For example: *ubuntu*
6. Next, select **Create or Select a Secret** and click **New Secret File**.
7. Enter the Secret Name **ssh-private-key** and click **Browse** to upload the SSH Private Key to Harness Secret Manager.
8. Click **Save** and if needed modify the SSH port number.
9. Finally, click **Save and Continue**.

#### Set up Harness connectors to your physical data center and Artifactory repository <a href="#set-up-harness-connectors-to-your-physical-data-center-and-artifactory-repository" id="set-up-harness-connectors-to-your-physical-data-center-and-artifactory-repository"></a>

<details>

<summary>What are connectors?</summary>

Connectors in Harness enable integration with 3rd party tools, providing authentication and operations during pipeline runtime. For instance, a GitHub connector facilitates authentication and fetching files from a GitHub repository within pipeline stages. Explore connector how-tos [here](/harness-ai/use-harness-platform/connectors.md).

</details>

**Create a Physical Data Center connector**

1. Copy the contents of [pdc-connector.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/pdc-connector.yml).
2. In Harness, in **Project Setup**, select **Connectors**.
3. Select **Create via YAML Builder** and paste the copied YAML.
4. In the YAML, replace **HOST\_IP\_OR\_FQDN** with the Host IP/FQDN and **DELEGATE\_NAME** with the installed delegate name. To obtain the delegate name, navigate to **Default Project** > **Project Setup** > **Delegates**.
5. Select **Save Changes** and verify that the new connector named **harness\_pdc** is successfully created.
6. Finally, select **Test** under **CONNECTIVITY STATUS** to ensure the connection is successful.

**Create a Artifactory connector**

For this tutorial, we'll use an artifact for a ToDo List app, `todolist.war`, which is available in a public Harness Artifactory repo.

1. Copy the contents of [artifactory-connector.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/artifactory-connector.yml).
2. In Harness, in **Project Setup**, select **Connectors**.
3. Select **Create via YAML Builder** and paste the copied YAML.
4. Select **Save Changes** and verify that the new connector named **harness\_artifactrepo** is successfully created.
5. Finally, select **Test** under **CONNECTIVITY STATUS** to ensure the connection is successful.

#### Set up the Harness environment <a href="#set-up-the-harness-environment" id="set-up-the-harness-environment"></a>

<details>

<summary>What are Harness environments?</summary>

Environments define the deployment location, categorized as **Production** or **Pre-Production**. Each environment includes infrastructure definitions for VMs, Kubernetes clusters, or other target infrastructures. To learn more about environments, go to [Environments overview](/continuous-delivery/use-continuous-delivery/cd-building-blocks/environments/environment-overview.md).

</details>

1. In **Default Project**, select **Environments**.
2. Select **New Environment** and toggle to **YAML** to use the YAML editor.
3. Copy the contents of [environment.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/environment.yml) and paste it into the YAML editor and select **Save**.
4. In **Infrastructure Definitions**, select **Infrastructure Definition** and select **Edit YAML**.
5. Copy the contents of [infrastructure-definition.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/infrastructure-definition.yml) and paste it into the YAML editor.
6. Select **Save** and verify that the environment and infrastructure definition is created successfully.

#### Set up the Harness service <a href="#set-up-the-harness-service" id="set-up-the-harness-service"></a>

<details>

<summary>What are Harness services?</summary>

In Harness, services represent what you deploy to environments. You use services to configure variables, manifests, and artifacts. The **Services** dashboard provides service statistics like deployment frequency and failure rate. To learn more about services, go to [Services overview](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/services-overview.md).

</details>

1. In **Default Project**, select **Services**.
2. Select **New Service**.
3. Name the service `harness_ssh`.
4. Select **Save**, and then in the **Configuration** tab, toggle to **YAML** to use the YAML editor.
5. Select **Edit YAML** and copy the contents of [service.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/service.yml) and paste it into the YAML editor.
6. Select **Save** and verify that the Service **harness\_ssh** is successfully created.

#### Set up the pipeline <a href="#set-up-the-pipeline" id="set-up-the-pipeline"></a>

<details>

<summary>What are Harness pipelines?</summary>

A pipeline is a comprehensive process encompassing integration, delivery, operations, testing, deployment, and monitoring. It can utilize CI for code building and testing, followed by CD for artifact deployment in production. A CD Pipeline is a series of stages where each stage deploys a service to an environment. To learn more about CD pipeline basics, go to [CD pipeline basics](/continuous-delivery/new-to-continuous-delivery/overview.md#pipeline).

</details>

1. In **Default Project**, select **Pipelines**.
2. Select **New Pipeline**.
3. Enter the name `harness_ssh_pipeline`.
4. Select **Inline** to store the pipeline in Harness.
5. Select **Start** and, in the Pipeline Studio, toggle to **YAML** to use the YAML editor.
6. Select **Edit YAML** to enable edit mode, and choose any of the following execution strategies. Paste the respective YAML based on your selection.

{% tabs %}
{% tab title="Canary" %}

<details>

<summary>What are Canary deployments?</summary>

A canary deployment updates nodes in a single environment gradually, allowing you to use gates between increments. Canary deployments allow incremental updates and ensure a controlled rollout process. For more information, go to [When to use Canary deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-canary-deployments).

</details>

1. Copy the contents of [pipeline-ssh-canary.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/pipeline-ssh-canary.yml) and paste it into the YAML editor.
2. Select **Save**.
3. You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Canary](/files/dziOoGBYDcs0kQZC6iDl)
{% endtab %}

{% tab title="Rolling" %}

<details>

<summary>What are Rolling deployments?</summary>

Rolling deployments incrementally add nodes in a single environment with a new service version, either one-by-one or in batches defined by a window size. Rolling deployments allow a controlled and gradual update process for the new service version. For more information, go to [When to use rolling deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-rolling-deployments).

</details>

1. Copy the contents of [pipeline-ssh-rolling.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/pipeline-ssh-rolling.yml) and paste it into the YAML editor.
2. Select **Save**.
3. You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Rolling](/files/H4ficP0wngeR7CjDsaUi)
{% endtab %}

{% tab title="Basic" %}

<details>

<summary>What are Basic deployments?</summary>

With basic deployments, all nodes (pods, instances, etc) within a single environment are updated at the same time with a single new service/artifact version. For more information, go to [When to use basic deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-basic-deployments).

</details>

1. Copy the contents of [pipeline-ssh-basic.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/ssh/pipeline-ssh-basic.yml) and paste it into the YAML editor.
2. Select **Save**.
3. You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Basic](/files/ai8N2o5NbiU7j4NZYuUR)
{% endtab %}
{% endtabs %}

Finally, it's time to execute the pipeline.

1. Select **Run**, and then select **Run Pipeline** to initiate the deployment.
2. Observe the execution logs as Harness copies the artifact from source to the remote server.
3. After a successful execution, you can check the artifact in your remote server using the following command:

```bash
ls -l ~/harness_ssh/harnessdevenv/todolist.war
```

#### Congratulations!🎉 <a href="#congratulations" id="congratulations"></a>

You've just learned how to use Harness CD to copy an artifact to your remote servers via SSH.
{% endtab %}

{% tab title="WinRM" %}

### Before you begin <a href="#before-you-begin" id="before-you-begin"></a>

Verify that you have the following:

* **A Windows VM**. Use your own Windows VM or we recommend using [Vagrant](https://developer.hashicorp.com/vagrant/tutorials/getting-started/getting-started-install) for starting a new vm instance.
* [**Docker**](https://docs.docker.com/engine/install/) to set up and start *Docker Delegate*.
  * Check [delegate System and network requirements](/harness-ai/use-harness-platform/delegates/delegate/delegate-concepts/delegate-requirements.md).

### Getting Started with Harness CD <a href="#getting-started-with-harness-cd" id="getting-started-with-harness-cd"></a>

1. Log into [Harness](https://app.harness.io/).
2. Select **Projects**, and then select **Default Project**.

{% hint style="warning" %}
For the pipeline to run successfully, please follow all of the following steps as they are, including the naming conventions.
{% endhint %}

#### Delegate <a href="#delegate" id="delegate"></a>

<details>

<summary>What is the Harness Delegate?</summary>

The Harness Delegate is a service that runs in your local network or VPC to establish connections between the Harness Manager and various providers such as artifacts registries, cloud platforms, etc. The delegate is installed in the target infrastructure, for example, a Kubernetes cluster, and performs operations including deployment and integration. Learn more about the delegate in the [Delegate Overview](/harness-ai/use-harness-platform/delegates/delegate/delegate-concepts/delegate-overview.md).

</details>

3. In **Project Setup**, select **Delegates**.
   * Select **Delegates**.
     * Select **Install delegate**. For this tutorial, let's explore how to install the Docker Delegate.
     * In the command provided, `ACCOUNT_ID`, `MANAGER_ENDPOINT` and `DELEGATE_TOKEN` are auto-populated values that you can obtain from the delegate Installation wizard.

       ```bash
       docker run --cpus=1 --memory=2g \
         -e DELEGATE_NAME=docker-delegate \
         -e NEXT_GEN="true" \
         -e DELEGATE_TYPE="DOCKER" \
         -e ACCOUNT_ID=ACCOUNT_ID \
         -e DELEGATE_TOKEN=DELEGATE_TOKEN \
         -e MANAGER_HOST_AND_PORT=MANAGER_ENDPOINT harness/delegate:23.05.79310
       ```
   * Verify that the delegate is installed successfully and can connect to the Harness Manager.

{% hint style="info" %}
You can also follow the [Install Harness Delegate on Kubernetes or Docker](/harness-ai/troubleshooting-and-resources/tutorials/install-delegate.md) steps to install the Kubernetes Delegate using the Helm, Terraform Helm Provider or Kubernetes manifest.
{% endhint %}

#### Secrets <a href="#secrets" id="secrets"></a>

<details>

<summary>What are Harness secrets?</summary>

Harness offers built-in secret management for encrypted storage of sensitive information. Secrets are decrypted when needed, and only the private network-connected Harness Delegate has access to the key management system. You can also integrate your own secret manager. To learn more about secrets in Harness, go to [Harness Secret Manager Overview](/harness-ai/use-harness-platform/secrets/secrets-management/harness-secret-manager-overview.md).

</details>

4. In **Project Setup**, select **Secrets**.
   * Select **New Secret** > **WinRM Credential**.
   * Enter the secret name `harness_winrmpwd` and click **Continue**.
   * With **NTLM** as the Auth Scheme, Enter the domain name. This is the Active Directory domain name where the user account in the credentials is registered.
   * Enter the username for the user account on the remote server in the **Username** field. Eg: *Administrator*
   * Next, select **Create or Select a Secret** and click **New Secret Text**.
   * Enter the Secret Name **winrm\_passwd** and enter the user password in the **Secret Value** field and click **Save**.
   * Finally, click **Save and Continue** and verify the connection to the remote Windows server.

#### Connectors <a href="#connectors" id="connectors"></a>

<details>

<summary>What are connectors?</summary>

Connectors in Harness enable integration with 3rd party tools, providing authentication and operations during pipeline runtime. For instance, a GitHub connector facilitates authentication and fetching files from a GitHub repository within pipeline stages. Explore connector how-tos [here](/harness-ai/use-harness-platform/connectors.md).

</details>

5. Create a **Physical Data Center connector**.
   * Copy the contents of [pdc-connector.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/pdc-connector.yml).
   * In Harness, in **Project Setup**, select **Connectors**.
   * Select **Create via YAML Builder** and paste the copied YAML.
   * In the YAML, replace **HOST\_IP\_OR\_FQDN:PORT** with the Host IP/FQDN along with the PORT number to **5985** and **DELEGATE\_NAME** with the installed delegate name. To obtain the delegate name, navigate to **Default Project** > **Project Setup** > **Delegates**.
   * Select **Save Changes** and verify that the new connector named **harness\_pdc** is successfully created.
   * Finally, select **Test** under **CONNECTIVITY STATUS** to ensure the connection is successful.
6. Create a **Artifactory Connector**. For this tutorial, we'll use a publicly available ToDo List app artifact, todolist.war, available in a public Harness Artifactory repo.
   * Copy the contents of [artifactory-connector.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/artifactory-connector.yml).
   * In Harness, in **Project Setup**, select **Connectors**.
   * Select **Create via YAML Builder** and paste the copied YAML.
   * Select **Save Changes** and verify that the new connector named **harness\_artifactrepo** is successfully created.
   * Finally, select **Test** under **CONNECTIVITY STATUS** to ensure the connection is successful.

#### Environment <a href="#environment" id="environment"></a>

<details>

<summary>What are Harness environments?</summary>

Environments define the deployment location, categorized as **Production** or **Pre-Production**. Each environment includes infrastructure definitions for VMs, Kubernetes clusters, or other target infrastructures. To learn more about environments, go to [Environments overview](/continuous-delivery/use-continuous-delivery/cd-building-blocks/environments/environment-overview.md).

</details>

7. In **Default Project**, select **Environments**.
   * Select **New Environment** and toggle to **YAML** to use the YAML editor.
   * Copy the contents of [environment.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/environment.yml) and paste it into the YAML editor and select **Save**.
   * In **Infrastructure Definitions**, select **Infrastructure Definition** and select **Edit YAML**.
   * Copy the contents of [infrastructure-definition.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/infrastructure-definition.yml) and paste it into the YAML editor.
   * Select **Save** and verify that the environment and infrastructure definition is created successfully.

#### Services <a href="#services" id="services"></a>

<details>

<summary>What are Harness services?</summary>

In Harness, services represent what you deploy to environments. You use services to configure variables, manifests, and artifacts. The **Services** dashboard provides service statistics like deployment frequency and failure rate. To learn more about services, go to [Services overview](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/services-overview.md).

</details>

8. In **Default Project**, select **Services**.
   * Select **New Service**.
   * Name the service `harness_winrm`.
   * Select **Save**, and then in the **Configuration** tab, toggle to **YAML** to use the YAML editor.
   * Select **Edit YAML** and copy the contents of [service.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/service.yml) and paste it into the YAML editor.
   * Select **Save** and verify that the Service **harness\_ssh** is successfully created.

#### Pipeline <a href="#pipeline" id="pipeline"></a>

<details>

<summary>What are Harness pipelines?</summary>

A pipeline is a comprehensive process encompassing integration, delivery, operations, testing, deployment, and monitoring. It can utilize CI for code building and testing, followed by CD for artifact deployment in production. A CD Pipeline is a series of stages where each stage deploys a service to an environment. To learn more about CD pipeline basics, go to [CD pipeline basics](/continuous-delivery/new-to-continuous-delivery/overview.md#pipeline).

</details>

9. In **Default Project**, select **Pipelines**.
   * Select **New Pipeline**.
   * Enter the name `harness_winrm_pipeline`.
   * Select **Inline** to store the pipeline in Harness.
   * Select **Start** and, in the Pipeline Studio, toggle to **YAML** to use the YAML editor.
   * Select **Edit YAML** to enable edit mode, and choose any of the following execution strategies. Paste the respective YAML based on your selection.

{% tabs %}
{% tab title="Canary" %}

<details>

<summary>What are Canary deployments?</summary>

A canary deployment updates nodes in a single environment gradually, allowing you to use gates between increments. Canary deployments allow incremental updates and ensure a controlled rollout process. For more information, go to [When to use Canary deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-canary-deployments).

</details>

* Copy the contents of [pipeline-canary.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/pipeline-canary.yml) and paste it into the YAML editor.
* Select **Save**.
* You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Canary](/files/DtCn2Ps386Nhu3RA0BOr)
{% endtab %}

{% tab title="Rolling" %}

<details>

<summary>What are Rolling deployments?</summary>

Rolling deployments incrementally add nodes in a single environment with a new service version, either one-by-one or in batches defined by a window size. Rolling deployments allow a controlled and gradual update process for the new service version. For more information, go to [When to use rolling deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-rolling-deployments).

</details>

* Copy the contents of [pipeline-rolling.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/pipeline-rolling.yml) and paste it into the YAML editor.
* Select **Save**.
* You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Rolling](/files/T5ySDLxvroYyINLRJC0L)
{% endtab %}

{% tab title="Basic" %}

<details>

<summary>What are Basic deployments?</summary>

With basic deployments, all nodes (pods, instances, etc) within a single environment are updated at the same time with a single new service/artifact version. For more information, go to [When to use basic deployments](/continuous-delivery/use-continuous-delivery/manage-deployments/deployment-concepts.md#when-to-use-basic-deployments).

</details>

* Copy the contents of [pipeline-basic.yml](https://github.com/harness-community/harnesscd-example-apps/blob/master/vm-pdc/winrm/pipeline-basic.yml) and paste it into the YAML editor.
* Select **Save**.
* You can switch to the **Visual** editor and confirm the pipeline, stage, and execution steps are as shown below.

![Basic](/files/aQwaPSvurynUJH8heZg6)
{% endtab %}
{% endtabs %}

10. Finally, it's time to execute the pipeline. Select **Run**, and then select **Run Pipeline** to initiate the deployment.

    * Observe the execution logs as Harness copy the artifact from source to the remote server.
    * After a successful execution, you can check the artifact in your remote server using the following command:

    ```bash
    Get-ChildItem harness_winrm/harnessdevenv
    ```

#### Congratulations!🎉 <a href="#congratulations" id="congratulations"></a>

You've just learned how to use Harness CD to copy an artifact to your remote servers via WinRM.
{% endtab %}
{% endtabs %}
