> 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/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/kubernetes-services.md).

# Harness Kubernetes services

This topic describes how to add and configure a Harness Kubernetes service.

A Kubernetes service represents the microservices and other workloads you want to deploy to the cluster.

Setting up a Kubernetes service involves the following steps:

1. Add your manifests.
2. Add the artifacts you want to deploy.
3. Add any service variables you want to use in your manifests or pipeline.

### Manifests <a href="#manifests" id="manifests"></a>

Harness supports the following manifest types and orchestration methods.

For more information about using Kubernetes manifests in Harness, go to [Add Kubernetes manifests](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-kubernetes-category/define-kubernetes-manifests.md).

#### Kubernetes <a href="#kubernetes" id="kubernetes"></a>

<details>

<summary>Use Kubernetes manifests</summary>

You can use:

* Standard Kubernetes manifests hosted in any repo or in Harness.
* Values YAML files that use Go templating to template manifests.
* Values YAML files can use a mix of hardcoded values and Harness expressions.

Here's a YAML example for a service with manifests hosted in Github and the nginx image hosted in Docker Hub.Create a service using the Create Services API.For the Terraform Provider resource, go to harness\_platform\_service.To add Kubernetes manifests to your service, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In Specify Manifest Type, select K8s Manifest, and then click Continue.In Specify K8s Manifest Store, select the Git provider.The settings for each Git provider are slightly different, but you simply want to point to the Git account For example, click GitHub, and then select or create a new GitHub Connector. See Connect to Code Repo.Click Continue. Manifest Details appears.In Manifest Identifier, enter an Id for the manifest.If you selected a Connector that uses a Git account instead of a Git repo, enter the name of the repo where your manifests are located in Repository Name.In Git Fetch Type, select Latest from Branch or Specific Commit ID, and then enter the branch or commit Id for the repo.For Specific Commit ID, you can also use a Git commit tag.In File/Folder Path, enter the path to the manifest file or folder in the repo. The Connector you selected already has the repo name, so you simply need to add the path from the root of the repo.If you are using a values.yaml file and it's in the same repo as your manifests, in Values YAML, click Add File.Enter the path to the values.yaml file from the root of the repo.Here's an example with the manifest and values.yaml file added.If you use multiple files, the highest priority is given from the last file, and the lowest priority to the first file. For example, if you have 3 files and the second and third files contain the same key:value as the first file, the third file's key:value overrides the second and first files.Alternatively, you can proceed without configuring a values.yaml file.\
For more information, refer to Manifest Optional Values.Click Submit. The manifest is added to Manifests.Harness Kubernetes Services can use Values YAML files just like you would using Helm. Harness manifests can use Go templating with your Values YAML files and you can include Harness variable expressions in the Values YAML files.If you are using a Values YAML file and it's in the same repo as your manifests, you can add it when you add your manifests, as described above (Values YAML --> Add File).If you are using a Values YAML file and it's in a separate repo from your manifests, or you simply want to add it separately, you can add it as a separate file, described below\.You cannot use Harness variables expressions in your Kubernetes object manifest files. You can only use Harness variables expressions in Values YAML files.Add a Values YAML fileWhere is your Values YAML file located?Same folder as manifests: If you are using a values.yaml file and it's in the same repo as your manifests, you can add it when you add your manifests, as described above (Values YAML --> Add File).Separate from manifests: If your values file is located in a different folder, you can add it separately as a Values YAML manifest type, described below\.To add a Values YAML file, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In Specify Manifest Type, select Values YAML, and click Continue.In Specify Values YAML Store, select the Git repo provider you're using and then create or select a Connector to that repo. The different Connectors are covered in Connect to a Git Repo.If you haven't set up a Harness Delegate, you can add one as part of the Connector setup. This process is described in Kubernetes CD tutorial, Helm CD tutorial and Install a Kubernetes delegate.Once you've selected a Connector, click Continue.In Manifest Details, you tell Harness where the values.yaml is located.In Manifest Identifier, enter a name that identifies the file, like values.If you selected a Connector that uses a Git account instead of a Git repo, enter the name of the repo where your manifests are located in Repository Name.In Git Fetch Type, select a branch or commit Id for the manifest, and then enter the Id or branch.For Specific Commit ID, you can also use a Git commit tag.In File Path, enter the path to the values.yaml file in the repo.You can also proceed without configuring a values.yaml file.\
For more information, refer to Manifest Optional Values.You can enter multiple values file paths by clicking Add File. At runtime, Harness will compile the files into one values file.If you use multiple files, the highest priority is given from the last file, and the lowest priority to the first file. For example, if you have 3 files and the second and third files contain the same key:value as the first file, the third file's key:value overrides the second and first files. 14. Click Submit.The values file(s) are added to the Service.Values files in both the Manifests and Values YAMLIf you have Values files in both the K8s Manifest File/Folder Path and the Values YAML, the Values YAML will overwrite any matching values in the Values YAML in the Manifest File/Folder Path.

**Ignore a manifest file during deployment**

You might have manifest files for resources that you do not want to deploy as part of the main deployment.

Instead, you can tell Harness to ignore these files and then apply them separately using the Harness [Apply](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-k8s-ref/kubernetes-apply-step.md) step. Or you can simply ignore them and deploy them later.

See [Ignore a manifest file during deployment](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-kubernetes-category/ignore-a-manifest-file-during-deployment.md) and [Apply](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-k8s-ref/kubernetes-apply-step.md).

**Notes**

* If this is your first time using Harness for a Kubernetes deployment, see [Kubernetes CD tutorial](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/kubernetes-cd-quickstart.md).
* For a task-based walkthroughs of different Kubernetes features in Harness, see [Kubernetes How-tos](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes.md).
* You can hardcode your artifact in your manifests, our add your artifact source to your **Service Definition** and then reference it in your manifests.

</details>

***

#### Helm Charts <a href="#helm-charts" id="helm-charts"></a>

<details>

<summary>Use Helm Charts</summary>

You can use Helm charts stored in an HTTP Helm Repository, OCI Registry, a Git repo provider, a cloud storage service (Google Cloud Storage, AWS S3, Azure Repo), a custom repo, or the [Harness File Store](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/add-inline-manifests-using-file-store.md).

Here's a YAML example for a service with manifests hosted in Github and the nginx image hosted in Docker Hub.Create a service using the Create Services API.For the Terraform Provider resource, go to harness\_platform\_service.To add a Helm chart to your service, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In Specify Manifest Type, select Helm Chart, and click Continue.In Specify Helm Chart Store, select the storage service you're using.Options for connecting to a Helm chart storeThe options available to you to specify a Helm chart store depend on whether or not specific feature flags are enabled on your account. Options available without any feature flags or with specific feature flags enabled are described here:\* \*\*Feature flag disabled\*\*. Only one option is available: \*\*OCI Helm Registry Connector\*\*. This option enables you to connect to any OCI-based registry.\* \*\*Feature flag enabled\*\*. You can choose between connectors in the following categories: - \*\*Direct Connection\*\*. Contains the OCI Helm Registry Connector option (shortened to \*\*OCI Helm\*\*), which you can use with any OCI-based registry. - \*\*Via Cloud Provider\*\*. Contains the ECR connector option. This connector is specifically designed for AWS ECR to help you overcome the limitation of having to regenerate the ECR registry authentication token every 12 hours. The ECR connector option uses an AWS connector and regenerates the required authentication token if the token has expired.For the steps and settings of each option, go to Connectors or Connect to a Git repo.Once your Helm chart is added, it appears in the Manifests section. For example:

**Important notes**

* If this is your first time using Harness for a Helm Chart deployment, see [Helm Chart deployment tutorial](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/helm/helm-cd-quickstart.md).
* For a detailed walkthrough of deploying Helm Charts in Harness, including limitations and binary support, see [Deploy Helm Charts](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/helm/deploy-helm-charts.md).
* Harness supports AWS cross-account access for S3-based Helm chart stores when the AWS connector is configured with [IRSA](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/aws-connector-settings-reference.md#use-irsa) and [cross-account access (STS Role)](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/aws-connector-settings-reference.md#enable-cross-account-access-sts-role). For more information, go to [Deploy Helm Charts - Important notes](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/helm/deploy-helm-charts.md#important-notes).
* Harness cannot fetch Helm chart versions with Helm OCI because Helm OCI no longer supports `helm chart list`. See [OCI Feature Deprecation and Behavior Changes with Helm v3.7.0](https://helm.sh/docs/topics/registries/#oci-feature-deprecation-and-behavior-changes-with-v370).
* Currently, you cannot list the OCI image tags in Harness. This is a Helm limitation. For more information, go to [Helm Search Repo Chart issue](https://github.com/helm/helm/issues/11000).

</details>

#### Kustomize <a href="#kustomize" id="kustomize"></a>

<details>

<summary>Use Kustomize</summary>

Harness supports Kustomize deployments. You can use overlays, multibase, plugins, sealed secrets, patches, etc, just as you would in any native kustomization.

Here's a YAML example for a service using a publicly available helloword kustomization cloned from Kustomize.Create a service using the Create Services API.For the Terraform Provider resource, go to harness\_platform\_service.To add a kustomization, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In your CD stage, click Service.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In Specify Manifest Type, click Kustomize, and click Continue.In Specify Manifest Type, select a Git provider, Harness File Store, or Azure Repo.In Manifest Details, enter the following settings, test the connection, and click Submit.Manifest Identifier: enter kustomize.Git Fetch Type: select Latest from Branch.Branch: enter main.Kustomize Folder Path: kustomize/helloWorld. This is the path from the repo root.The kustomization is now listed.You cannot use Harness variables in the base manifest or kustomization.yaml. You can only use Harness variables in kustomize patches you add in Kustomize Patches Manifest Details.How Harness uses patchesStrategicMerge:Kustomize patches override values in the base manifest. Harness supports the patchesStrategicMerge patches type.If the patchesStrategicMerge label is missing from the kustomization YAML file, but you have added Kustomize Patches to your Harness Service, Harness will add the Kustomize Patches you added in Harness to the patchesStrategicMerge in the kustomization file. If you have hardcoded patches in patchesStrategicMerge, but not add these patches to Harness as Kustomize Patches, Harness will ignore them.For a detailed walkthrough of using patches in Harness, go to Use Kustomize for Kubernetes deployments.To use Kustomize Patches, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, select Add Manifest.In Specify Manifest Type, select Kustomize Patches, and selectContinue.In Specify Kustomize Patches Store, select your Git provider and Connector. See Connect to a Git Repo.The Git Connector should point to the Git account or repo where you Kustomize files are located. In Kustomize Patches you will specify the path to the actual patch files.Select Continue.In Manifest Details, enter the path to your patch file(s):Manifest Identifier: enter a name that identifies the patch file(s). You don't have to add the actual filename.Git Fetch Type: select whether to use the latest branch or a specific commit Id.Branch/Commit Id: enter the branch or commit Id.File/Folder Path: enter the path to the patch file(s) from the root of the repo.Click Add File to add each patch file. The files you add should be the same files listed in patchesStrategicMerge of the main kustomize file in your Service.The order in which you add file paths for patches in File/Folder Path is the same order that Harness applies the patches during the kustomization build.Small patches that do one thing are recommended. For example, create one patch for increasing the deployment replica number and another patch for setting the memory limit.Select Submit. The patch file(s) is added to Manifests.When the main kustomization.yaml is deployed, the patch is rendered and its overrides are added to the deployment.yaml that is deployed.

If this is your first time using Harness for a Kustomize deployment, see the [Kustomize Quickstart](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kustomize/kustomize-quickstart.md).

For a detailed walkthrough of deploying Kustomize in Harness, including limitations, see [Use Kustomize for Kubernetes Deployments](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kustomize/use-kustomize-for-kubernetes-deployments.md).

**Important notes**

* Harness supports Kustomize and Kustomize Patches for Rolling, Blue Green and Delete steps.
* Harness does not use Kustomize for rollback. Harness renders the templates using Kustomize and then passes them onto kubectl. A rollback works exactly as it does for native Kubernetes.
* You cannot use Harness variables in the base manifest or kustomization.yaml. You can only use Harness variables in kustomize patches you add in **Kustomize Patches Manifest Details**.
* **Kustomize binary versions:**
  * Harness includes Kustomize binary versions 3.5.4 and 4.0.0. By default, Harness uses 3.5.4.
  * To use 4.0.0, you must enable the feature flag `NEW_KUSTOMIZE_BINARY` in your account. Contact [Harness Support](mailto:support@harness.io) to enable the feature.
* Harness will not follow symlinks in the Kustomize and Kustomize Patches files it pulls.

</details>

#### OpenShift templates <a href="#openshift-templates" id="openshift-templates"></a>

<details>

<summary>Use OpenShift templates</summary>

Harness supports OpenShift for Kubernetes deployments.

For an overview of OpenShift support, see [Using OpenShift with Harness Kubernetes](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-k8s-ref/using-open-shift-with-harness-kubernetes.md).

Here's a YAML example for a service using an OpenShift template that is stored in the Harness File Store.Create a service using the Create Services API.For the Terraform Provider resource, go to harness\_platform\_service.To add an OpenShift Template to a service, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Manifests, click Add Manifest.In Specify Manifest Type, select OpenShift Template, and then select Continue.In Specify OpenShift Template Store, select where your template is located.You can use a Git provider, the Harness File Store, a custom repo, or Azure Repos.For example, click GitHub, and then select or create a new GitHub Connector. See Connect to Code Repo.Select Continue. Manifest Details appears.In Manifest Identifier, enter an Id for the manifest. It must be unique. It can be used in Harness expressions to reference this template's settings.In Git Fetch Type, select Latest from Branch or Specific Commit Id/Git Tag, and then enter the branch or commit Id/tag for the repo.In Template File Path, enter the path to the template file. The Connector you selected already has the repo name, so you simply need to add the path from the root of the repo to the file.Select Submit. The template is added to Manifests.OpenShift Param Files can be added in the following ways:Attached to the OpenShift Template you added.Added as a separate manifest.For an overview of OpenShift support, see Using OpenShift with Harness Kubernetes.Let's look at an example where the OpenShift Param is attached to a template already added:In your project, in CD (Deployments), select Services.Select Manage Services, and then select the service with the OpenShift template.Select Configuration.In Manifests, select Attach OpenShift Param.In Enter File Path, select where your params file is located.Select Submit. The params file is added to Manifests.You can now see the params file in the OpenShift Template Manifest Details.

**Deployment strategy support**

In addition to standard workload type support in Harness (see [What can I deploy in Kubernetes?](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-k8s-ref/what-can-i-deploy-in-kubernetes.md)), Harness supports [DeploymentConfig](https://docs.openshift.com/container-platform/4.1/applications/deployments/what-deployments-are.html), [Route](https://docs.openshift.com/enterprise/3.0/architecture/core_concepts/routes.html), and [ImageStream](https://docs.openshift.com/enterprise/3.2/architecture/core_concepts/builds_and_image_streams.html#image-streams) across Canary, Blue Green, and Rolling deployment strategies.

Please use `apiVersion: apps.openshift.io/v1` and not `apiVersion: v1`.

**Harness supports list objects**

You can leverage Kubernetes list objects as needed without modifying your YAML for Harness.

When you deploy, Harness will render the lists and show all the templated and rendered values in the log.

Harness supports:

* List
* NamespaceList
* ServiceList
* For Kubernetes deployments, these objects are supported for all deployment strategies (Canary, Rolling, Blue/Green).
* For Native Helm, these objects are supported for Rolling deployments.

If you run `kubectl api-resources` you should see a list of resources, and `kubectl explain` will work with any of these.

**Important notes**

* Make sure that you update your version to `apiVersion: apps.openshift.io/v1` and not `apiVersion: v1`.
* The token does not need to have global read permissions. The token can be scoped to the namespace.
* The Kubernetes containers must be OpenShift-compatible containers. If you are already using OpenShift, then this is already configured. But be aware that OpenShift cannot simply deploy any Kubernetes container. You can get OpenShift images from the following public repos: <https://hub.docker.com/u/openshift> and <https://access.redhat.com/containers>.
* Useful articles for setting up a local OpenShift cluster for testing: [How To Setup Local OpenShift Origin (OKD) Cluster on CentOS 7](https://computingforgeeks.com/setup-openshift-origin-local-cluster-on-centos/), [OpenShift Console redirects to 127.0.0.1](https://chrisphillips-cminion.github.io/kubernetes/2019/07/08/OpenShift-Redirect.html).

</details>

### Artifacts <a href="#artifacts" id="artifacts"></a>

You have two options when referencing the artifacts you want to deploy:

* Add an artifact source to the Harness service and reference it using the Harness expression `<+artifacts.primary.image>` in the values YAML file.
* Hardcode the artifact into the manifests or values YAML file.

<details>

<summary>Use the artifact expression</summary>

Add the image location to Harness as an artifact in the **Artifacts** section of the service.

![](/files/lQpn7p71OF9RrkOK7Du3)

This allows you to reference the image in your values YAML files using the Harness expression `<+artifacts.primary.image>`.

```yaml

---
image: <+artifacts.primary.image>
```

You cannot use Harness variables expressions in your Kubernetes object manifest files. You can only use Harness variables expressions in values YAML files, or Kustomize Patch file.

When you select the artifact repo for the artifact, like a Docker Hub repo, you specify the artifact and tag/version to use.

You can select a specific tag/version, use a [runtime input](/harness-ai/use-harness-platform/variables-and-expressions/runtime-inputs.md) so that you are prompted for the tag/version when you run the pipeline, or you can use an Harness variable expression to pass in the tag/version at execution.

Here's an example where a runtime input is used and you select which image version/tag to deploy.

![](/files/z3bh90g9hBbYSH4xzpf1)

With a Harness artifact, you can template your manifests, detaching them from a hardcoded location. This makes your manifests reusable and dynamic.

</details>

<details>

<summary>Hardcode the artifact</summary>

If a Docker image location is hardcoded in your Kubernetes manifest (for example, `image: nginx:1.14.2`), then you can simply add the manifest to Harness in **Manifests** and Kubernetes will pull the image during deployment.

When you hardcode the artifact in your manifests, any artifacts added to your Harness service are ignored.

</details>

#### Harness Artifact Registry <a href="#harness-artifact-registry" id="harness-artifact-registry"></a>

<details>

<summary>Use artifacts from Harness Artifact Registry</summary>

Harness Artifact Registry (HAR) is a fully managed artifact repository that lets you store and manage artifacts directly in your Harness account. HAR supports both container images (Docker) and packaged artifacts (Maven, npm, NuGet, generic formats), providing secure, scalable storage that integrates seamlessly with Harness CD pipelines.

{% hint style="info" %}
HAR is natively integrated with Harness CD and does not require a separate connector. However, you need a valid HAR license to use this feature. Contact [Harness Support](mailto:support@harness.io) for licensing information.
{% endhint %}

Create a service with an artifact source that uses HAR using the Create Services API.For step-by-step instructions on adding a Harness Artifact Registry artifact source in the Harness Manager UI, go to Harness Artifact Registry in the artifact sources documentation.

For more information on HAR, go to [Harness Artifact Registry documentation](https://app.gitbook.com/s/GmEmgYs6IUcqNiV0OEgB/README).

</details>

#### Docker <a href="#docker" id="docker"></a>

<details>

<summary>Use artifacts in any Docker registry</summary>

To use a Docker artifact, you create or use a Harness connector to connect to your Docker repo and then use that connector in your Harness service and reference the artifact to use.Create the Docker connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider Docker connector resource, go to harness\_platform\_connector\_docker.For the Terraform Provider service resource, go to harness\_platform\_service.To add an artifact from a Docker registry, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Select Artifact Repository Type, select the registry where your Docker artifact is hosted. For this example, we'll select Docker Registry, and then click Continue.Select or create a Docker Registry Connector.Select Continue.In Artifact Source Name, enter a name that identifies your artifact.In Image path, enter the name of the artifact you want to deploy, such as library/nginx or jsmtih/privateimage.Official images in public repos often need the label library, e.g. library/tomcat.Wildcards are not supported.In Tag, enter or select the Docker image tag for the image.Click Submit.The Artifact is added to the Service Definition.

**Important notes**

* For pulling Docker images from Docker repos, Harness is restricted by the limits of the Docker repo. For example, [Docker Hub limits](https://docs.docker.com/docker-hub/download-rate-limit/).
* The maximum number of artifact image tags fetched by Harness that is 10000.

</details>

#### Google Container Registry (GCR) <a href="#google-container-registry-gcr" id="google-container-registry-gcr"></a>

{% hint style="warning" %}
Google Container Registry (GCR) is being deprecated. For more details, refer to the [Deprecation Notice](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/artifact-sources.md#google-container-registry-gcr).
{% endhint %}

<details>

<summary>Use GCR artifacts</summary>

You connect to GCR using a Harness GCP Connector. For details on all the GCR requirements for the GCP Connector, see [Google Cloud Platform (GCP) Connector Settings Reference](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/gcs-connector-settings-reference.md).

To use a GCR artifact, you create or use a Harness GCP Connector to connect to GCR repo and then use that connector in your Harness service and reference the artifact to use.Create the GCR connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider GCP connector resource, go to harness\_platform\_connector\_gcp.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to GCR using a Harness GCP Connector. For details on all the GCR requirements for the GCP Connector, see Google Cloud Platform (GCP) Connector Settings Reference.To add an artifact from GCR, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Select Artifact Repository Type, click GCR, and then click Continue.In GCR Repository, select or create a Google Cloud Platform (GCP) Connector that connects to the GCP account where the GCR registry is located.Click Continue.In Artifact Source Name, enter a name for the artifact.In GCR Registry URL, select the GCR registry host name, for example gcr.io.In Image Path, enter the name of the artifact you want to deploy.Images in repos need to reference a path starting with the project Id that the artifact is in, for example: myproject-id/image-name.In Tag, enter or select the Docker image tag for the image or select a runtime input or expression.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.Click Submit.The Artifact is added to the Service Definition.

**Permissions**

For Google Container Registry (GCR), the following roles are required:

* Storage Object Viewer (roles/storage.objectViewer)
* Storage Object Admin (roles/storage.objectAdmin)

For more information, go to the GCP documentation about [Cloud IAM roles for Cloud Storage](https://cloud.google.com/storage/docs/access-control/iam-roles).

Ensure the Harness Delegate you have installed can reach `storage.cloud.google.com` and your GCR registry host name, for example `gcr.io`.

</details>

#### Google Artifact Registry <a href="#google-artifact-registry" id="google-artifact-registry"></a>

<details>

<summary>Use Google Artifact Registry artifacts</summary>

You connect to Google Artifact Registry using a Harness GCP Connector.

For details on all the Google Artifact Registry requirements for the GCP Connector, see [Google Cloud Platform (GCP) Connector Settings Reference](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/gcs-connector-settings-reference.md).

This example uses a Harness Delegate installed in GCP for credentials.Create the Google Artifact Registry connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider GCP connector resource, go to harness\_platform\_connector\_gcp.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to Google Artifact Registry using a Harness GCP Connector.For details on all the Google Artifact Registry requirements for the GCP Connector, see Google Cloud Platform (GCP) Connector Settings Reference.To add an artifact from Google Artifact Registry, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Artifact Repository Type, select Google Artifact Registry, and then select Continue.In GCP Connector, select or create a Google Cloud Platform (GCP) Connector that connects to the GCP account where the Google Artifact Registry is located.Select Continue.In Artifact Details, you are basically creating the pull command. For example:docker pull us-central1-docker.pkg.dev/docs-play/quickstart-docker-repo/quickstart-image:v1.0In Artifact Source Name, enter a name for the artifact.In Repository Type, select the format of the artifact.In Project, enter the Id of the GCP project.In Region, select the region where the repo is located.In Repository Name, enter the name of the repo.In Package, enter the artifact name.In Version Details, select Value or Regex.In Version, enter or select the Docker image tag for the image or select runtime input or expression. If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.If you used Fixed Value in Version and Harness is not able to fetch the image tags, ensure that the GCP service account key used in the GCP connector credentials, or in the service account used to install the Harness Delegate, has the required permissions. See the Permissions tab in this documentation.Click Submit. The Artifact is added to the Service Definition.

**Permissions**

For Google Artifact Registry, the following roles are required:

* Artifact Registry Reader
* Artifact Registry Writer

For more information, go to the GCP documentation [Configure roles and permissions](https://cloud.google.com/artifact-registry/docs/access-control).

Ensure the Harness Delegate you have installed can reach your Google Artifact Registry region, for example `us-central1`.

</details>

#### Amazon Elastic Container Registry (ECR) <a href="#amazon-elastic-container-registry-ecr" id="amazon-elastic-container-registry-ecr"></a>

<details>

<summary>Use ECR artifacts</summary>

You connect to ECR using a Harness AWS connector. For details on all the ECR requirements for the AWS connector, see [AWS Connector Settings Reference](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/aws-connector-settings-reference.md).

This example uses a Harness Delegate installed in AWS for credentials.Create the ECR connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider ECR connector resource, go to harness\_platform\_connector\_aws.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to ECR using a Harness AWS Connector. For details on all the ECR requirements for the AWS Connector, see AWS Connector Settings Reference.To add an artifact from ECR, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Artifact Repository Type, click ECR, and then select Continue.In ECR Repository, select or create an AWS connector that connects to the AWS account where the ECR registry is located.Select Continue.In Artifact Details, in Region, select the region where the artifact source is located.In Image Path, enter the name of the artifact you want to deploy.In Tag, enter or select the Docker image tag for the image.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.Select Submit.The Artifact is added to the Service Definition.

**Permissions**

Ensure that the AWS IAM user account you use in the AWS Connector has the following policy.

</details>

#### Azure Container Registry (ACR) <a href="#azure-container-registry-acr" id="azure-container-registry-acr"></a>

<details>

<summary>Use ACR artifacts</summary>

You connect to ACR using a Harness Azure Connector. For details on all the Azure requirements for the Azure Connector, see [Add a Microsoft Azure cloud connector](/harness-ai/use-harness-platform/connectors/cloud-providers/add-a-microsoft-azure-connector.md).

This example uses a Harness Delegate installed in Azure for credentials.Create the ACR connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider ACR connector resource, go to harness\_platform\_connector\_azure\_cloud\_provider.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to ACR using a Harness Azure Connector. For details on all the Azure requirements for the Azure Connector, see Add a Microsoft Azure Cloud Connector.To add an artifact from ACR, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Artifact Repository Type, click ACR, and then select Continue.In ACR Repository, select or create an Azure Connector that connects to the Azure account where the ACR registry is located.Select Continue.In Artifact Details, in Subscription Id, select the Subscription Id where the artifact source is located.In Registry, select the ACR registry to use.In Repository, select the repo to use.In Tag, enter or select the tag for the image.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.Click Submit. The artifact is added to the Service Definition.

**Permissions**

The Harness Azure connectors that you'll use to connect Harness to ACR must have the **Reader** role, at minimum. You can also use a custom role that includes the permissions of the Reader role.

**Important notes**

* Harness supports 500 images from an ACR repo. If you don't see some of your images, then you might have exceeded this limit. This is the result of an Azure API limitation.
* If you connect to an ACR repo via the platform-agnostic Docker Connector, the limit is 100.

</details>

#### Nexus <a href="#nexus" id="nexus"></a>

<details>

<summary>Use Nexus artifacts</summary>

You connect to Nexus using a Harness Nexus Connector. For details on all the requirements for the Nexus Connector, see [Nexus Connector Settings Reference](/harness-ai/use-harness-platform/connectors/artifact-repositories/nexus-connector-settings-reference.md).

Create the Nexus connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider Nexus connector resource, go to harness\_platform\_connector\_nexus.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to Nexus using a Harness Nexus Connector. For details on all the requirements for the Nexus Connector, see Nexus Connector Settings Reference.To add an artifact from Nexus, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, click Add Artifact Source.In Artifact Repository Type, click Nexus, and then select Continue.In Nexus Repository, select of create a Nexus Connector that connects to the Nexus account where the repo is located.Select Continue.Select Repository URL or Repository Port.Repository Port is more commonly used and can be taken from the repo settings. Each repo uses its own port.Repository URL is typically used for a custom infrastructure (for example, when Nexus is hosted behind a reverse proxy).In Repository, enter the name of the repo.In Artifact Path, enter the path to the artifact you want.In Tag, enter or select the Docker image tag for the image.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.Click Submit.The Artifact is added to the Service Definition.

**Permissions**

Ensure the connected user account has the following permissions in the Nexus Server.

* Repo: All repositories (Read)
* Nexus UI: Repository Browser

![Nexus repo perms for Harness](/files/4f7VV8zr1CXZ4mGrBspR)

See [Nexus Managing Security](https://help.sonatype.com/en/managing-security.html).

For Nexus 3, when used as a **Docker** repo, the user needs:

* A role with the `nx-repository-view-*_*_*` privilege.

</details>

#### Artifactory <a href="#artifactory" id="artifactory"></a>

<details>

<summary>Use Artifactory artifacts</summary>

You connect to Artifactory (JFrog) using a Harness Artifactory Connector. For details on all the requirements for the Artifactory Connector, see [Artifactory Connector Settings Reference](/harness-ai/use-harness-platform/connectors/cloud-providers/ref-cloud-providers/artifactory-connector-settings-reference.md).

Create the Artifactory connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider Artifactory connector resource, go to harness\_platform\_connector\_artifactory.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to Artifactory (JFrog) using a Harness Artifactory Connector. For details on all the requirements for the Artifactory Connector, go to Artifactory Connector Settings Reference.To add an artifact from Artifactory, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Artifact Repository Type, select Artifactory, and then select Continue.In Artifactory Repository, select of create an Artifactory Connector that connects to the Artifactory account where the repo is located. Click Continue.The Artifact Details settings appear.In Repository URL, enter the URL from the docker login command in Artifactory's Set Me Up settings.In Repository, enter the repo name. If the full path is docker-remote/library/mongo/3.6.2, you would enter docker-remote.In Artifact Path, enter the path to the artifact. If the full path is docker-remote/library/mongo/3.6.2, you would enter library/mongo.In Tag, enter or select the Docker image tag for the image.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one.Select Submit. The Artifact is added to the Service Definition.

**Permissions**

Make sure the following permissions are granted to the user:

* Privileged User is required to access API, whether Anonymous or a specific username (username and passwords are not mandatory).
* Read permission to all Repositories.

If used as a Docker Repo, user needs:

* List images and tags
* Pull images

See [Managing Permissions: JFrog Artifactory User Guide](https://www.jfrog.com/confluence/display/RTF/Managing+Permissions).

</details>

#### Github packages <a href="#github-packages" id="github-packages"></a>

<details>

<summary>Use Github packages as artifacts</summary>

You can use Github Packages as artifacts for deployments.

Currently, Harness supports only the packageType as `docker(container)`. Support for npm, maven, rubygems, and nuget is coming soon.

You connect to Github using a Harness [Github Connector](/harness-ai/use-harness-platform/connectors/code-repositories/ref-source-repo-provider/git-hub-connector-settings-reference.md), username, and Personal Access Token (PAT).

{% hint style="info" %}
**New to Github Packages?** This [quick video](https://www.youtube.com/watch?v=gqseP_wTZsk) will get you up to speed in minutes.
{% endhint %}

Create the Github connector using the Create a Connector API.Create a service with an artifact source that uses the connector using the Create Services API.For the Terraform Provider Github connector resource, go to harness\_platform\_connector\_github.For the Terraform Provider service resource, go to harness\_platform\_service.You connect to Github using a Harness Github Connector, username, and Personal Access Token (PAT).To add an artifact from Github Packages, do the following:In your project, in CD (Deployments), select Services.Select Manage Services, and then select New Service.Enter a name for the service and select Save.Select Configuration.In Service Definition, select Kubernetes.In Artifacts, select Add Artifact Source.In Artifact Repository Type, select Github Package Registry, and then select Continue.In Github Package Registry Repository, select or create a Github Connector that connects to the Github account where the package repo is located.Ensure that you enable API Access in the Github connector, and use a Personal Access Token (PAT) that meets the requirements listed in Permissions.Select Continue.The Artifact Details settings appear.In Artifact Source Name, enter a name for this artifact source.In Package Type, select the type of package you are using.In Package Name, select the name of the package.In Version, select the version to use.If you use runtime input, when you deploy the pipeline, Harness will pull the list of tags from the repo and prompt you to select one. 15. Select Submit. The Artifact is added to the Service Definition.

**Permissions**

The Github Personal Access Token (PAT) must have the `write:packages` and `read:packages` permissions.

Ensure that you enable **API access** in the Harness Github connector. In the Github connector YAML, the setting is `apiAccess`:

You can use the same Harness secret that you used for user authentication.

</details>

#### Custom artifact source <a href="#custom-artifact-source" id="custom-artifact-source"></a>

<details>

<summary>Use artifacts from a custom artifact source</summary>

For enterprises that use a custom repository, Harness provides the Custom Artifact Source.

To use this artifact source, you provide a script to query your artifact server via its API (for example, REST) and then Harness stores the output on the Harness Delegate in the Harness-initialized variable `$HARNESS_ARTIFACT_RESULT_PATH`.

The output must be a JSON array, with a mandatory key for a Build Number/Version. You then map a key from your JSON output to the Build Number/Version variable.

For steps on adding a Custom Artifact source, go to [Add a custom artifact source for CD](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/add-a-custom-artifact-source-for-cd.md).

</details>

### Go templating <a href="#go-templating" id="go-templating"></a>

Harness supports [Go templating](https://godoc.org/text/template) for Kubernetes manifests and values YAML files.

You can add one or more values YAML files containing values for different scenarios, and then use Go templating in the manifest files to reference the values in the values YAML files.

Built-in Go templating support enables you to use Kubernetes without the need for Helm.

For more information, see [Example Kubernetes Manifests using Go Templating](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-k8s-ref/example-kubernetes-manifests-using-go-templating.md).

Let's look at a few Kubernetes templating examples.

<details>

<summary>Basic values YAML and manifests for a public image</summary>

Here's the values YAML file:

```yaml
name: <+stage.name>
replicas: 2

image: <+artifacts.primary.image>
# dockercfg: <+artifacts.primary.imagePullSecret> <a href="#dockercfg-lessartifactsprimaryimagepullsecretgreater" id="dockercfg-lessartifactsprimaryimagepullsecretgreater"></a>

createNamespace: true
namespace: <+infra.namespace>

serviceType: LoadBalancer

servicePort: 80
serviceTargetPort: 80

env:
  config:
    key1: value10
  secrets:
    key2: value2
```

Here's the manifest containing multiple objects referring to the values in the values YAML file:

```go
{{- if .Values.env.config}}
apiVersion: v1
kind: ConfigMap
metadata:
 name: {{.Values.name}}
data:
{{.Values.env.config | toYaml | indent 2}}
---
{{- end}}

{{- if .Values.env.secrets}}
apiVersion: v1
kind: Secret
metadata:
 name: {{.Values.name}}
stringData:
{{.Values.env.secrets | toYaml | indent 2}}
---
{{- end}}

{{- if .Values.dockercfg}}
apiVersion: v1
kind: Secret
metadata:
 name: {{.Values.name}}-dockercfg
 annotations:
 harness.io/skip-versioning: true
data:
 .dockercfg: {{.Values.dockercfg}}
type: kubernetes.io/dockercfg
---
{{- end}}

apiVersion: apps/v1
kind: Deployment
metadata:
 name: {{.Values.name}}-deployment
spec:
 replicas: {{int .Values.replicas}}
 selector:
 matchLabels:
 app: {{.Values.name}}
 template:
 metadata:
 labels:
 app: {{.Values.name}}
 spec:
 {{- if .Values.dockercfg}}
 imagePullSecrets:
 - name: {{.Values.name}}-dockercfg
 {{- end}}
 containers:
 - name: {{.Values.name}}
 image: {{.Values.image}}
 {{- if or .Values.env.config .Values.env.secrets}}
 envFrom:
 {{- if .Values.env.config}}
 - configMapRef:
 name: {{.Values.name}}
 {{- end}}
 {{- if .Values.env.secrets}}
 - secretRef:
 name: {{.Values.name}}
 {{- end}}
 {{- end}}
```

</details>

### Pull an image from a private registry <a href="#pull-an-image-from-a-private-registry" id="pull-an-image-from-a-private-registry"></a>

Typically, if the Docker image you are deploying is in a private registry, Harness has access to that registry using the credentials set up in the Harness connector you use with your service **Artifacts**.

If some cases, your Kubernetes cluster might not have the permissions needed to access a private Docker registry.

For these cases, the values YAML file in Service Definition **Manifests** section must use the `dockercfg` parameter.

If the Docker image is added in the Service Definition **Artifacts** section, then you reference it like this: `dockercfg: <+artifacts.primary.imagePullSecret>`.

This key will import the credentials from the Docker credentials file in the artifact.

Open the values.yaml file you are using for deployment.

Verify that `dockercfg` key exists, and uses the `<+artifacts.primary.imagePullSecret>` expression to obtain the credentials:

```yaml
name: <+stage.variables.name>
replicas: 2

image: <+artifacts.primary.image>
dockercfg: <+artifacts.primary.imagePullSecret>

createNamespace: true
namespace: <+infra.namespace>
```

#### Reference dockercfg in Kubernetes objects <a href="#reference-dockercfg-in-kubernetes-objects" id="reference-dockercfg-in-kubernetes-objects"></a>

Next, verify that the Deployment and Secret objects reference `dockercfg: {{.Values.dockercfg}}`.

<details>

<summary>Reference dockercfg in Kubernetes objects</summary>

```yaml
...
{{- if .Values.dockercfg}}
apiVersion: v1
kind: Secret
metadata:
  name: {{.Values.name}}-dockercfg
  annotations:
    harness.io/skip-versioning: true
data:
  .dockercfg: {{.Values.dockercfg}}
type: kubernetes.io/dockercfg
---
{{- end}}

apiVersion: apps/v1
kind: Deployment
metadata:
  name: {{.Values.name}}-deployment
spec:
  replicas: {{int .Values.replicas}}
  selector:
    matchLabels:
      app: {{.Values.name}}
  template:
    metadata:
      labels:
        app: {{.Values.name}}
    spec:
      {{- if .Values.dockercfg}}
      imagePullSecrets:
      - name: {{.Values.name}}-dockercfg
      {{- end}}
      containers:
      - name: {{.Values.name}}
        image: {{.Values.image}}
...
```

With these requirements met, the cluster imports the credentials from the Docker credentials file in the artifact.

</details>

### Sidecar workloads <a href="#sidecar-workloads" id="sidecar-workloads"></a>

You can use Harness to deploy both primary and sidecar Kubernetes workloads.

Kubernetes sidecar workloads are a powerful way to modularize and encapsulate application functionality while keeping the overall architecture simple and easy to manage.

Sidecars are commonly used to implement cross-cutting concerns like logging, monitoring, and security. By separating these concerns into separate containers, it's possible to add or modify them without affecting the primary container or the application running inside it.

For example, a logging sidecar can be used to capture and store application logs, metrics, and other data, without requiring the primary container to implement any logging code.

Sidecars can also be used to implement advanced features like load balancing, service discovery, and circuit breaking. By using a sidecar container for these features, it's possible to keep the primary container simple and focused on its core functionality, while still providing advanced capabilities to the application.

For more information, go to [Add a Kubernetes sidecar container](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-kubernetes-category/add-a-kubernetes-sidecar-container.md).

### Variables <a href="#variables" id="variables"></a>

In the **Variables** section of the service you can add variables are use them in values YAML and params files, or in other settings in your stage that support expressions.

![Harness service variables section](/files/mw60lehT2bf23CeaMxDI)

You can use the variable in your values YAML files. For example, here's a service variable used in the `name` key in the values YAML:

<details>

<summary>Service variable in values YAML file</summary>

```yaml
name: <+serviceVariables.appname>
replicas: 2

image: <+artifacts.primary.image>
# dockercfg: <+artifacts.primary.imagePullSecret> <a href="#dockercfg-lessartifactsprimaryimagepullsecretgreater" id="dockercfg-lessartifactsprimaryimagepullsecretgreater"></a>

createNamespace: true
namespace: <+infra.namespace>

serviceType: LoadBalancer

servicePort: 80
serviceTargetPort: 80

env:
  config:
    key1: value10
  secrets:
    key2: value2
```

</details>

You can set variable values as runtime inputs and then provide their values when the pipeline is run.

For more information on runtime inputs and expressions, go to [Fixed values runtime inputs and expressions](/harness-ai/use-harness-platform/variables-and-expressions/runtime-inputs.md).

#### Harness pipeline, stage, service, and built-in variables <a href="#harness-pipeline-stage-service-and-built-in-variables" id="harness-pipeline-stage-service-and-built-in-variables"></a>

You can use pipeline, stage, service, environment, and Harness built-in variables in your values YAML files and service settings.

See [Built-in Harness variables reference](/harness-ai/use-harness-platform/variables-and-expressions/harness-variables.md) or watch this [short video](https://youtu.be/lqbmO6EVGuU).

#### Propagate and override artifacts, manifests, and service variables <a href="#propagate-and-override-artifacts-manifests-and-service-variables" id="propagate-and-override-artifacts-manifests-and-service-variables"></a>

You can propagate services between stages and override service settings by using multiple values YAML files and/or **Environment Overrides**.

For more information, go to:

* [Propagating CD services](/continuous-delivery/use-continuous-delivery/cd-building-blocks/services/propagate-and-override-cd-services.md)
* [Add and override values YAML files](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/cd-kubernetes-category/add-and-override-values-yaml-files.md)

### Manifest Optional Values file <a href="#manifest-optional-values-file" id="manifest-optional-values-file"></a>

You can now proceed with your deployment without configuring a `values.yaml` file or an override file in the **manifest configuration** of a Kubernetes service.

#### Optional Values File <a href="#optional-values-file" id="optional-values-file"></a>

To skip the `values.yaml` file:

1. Go to the **Service Configuration**.
2. Under the **Manifest** section, click **Add Manifest** or edit the existing manifest.
3. In the **Manifest Details** tab, enable the **Optional** checkbox next to the `values.yaml` placeholder.

When this option is enabled, the **Values YAML** file is no longer required. If the file is missing from the specified path, the deployment will still proceed without it.

<figure><img src="/files/9TEJfnzkIH6FTn9h09as" alt=""><figcaption><p>Optional values.yaml support</p></figcaption></figure>

<details>

<summary>Sample YAML</summary>

Here is a sample of how the manifest would look when this checkbox is enabled. The `optionalValuesYaml` will be set to `true`.

```yaml
      manifests:
        - manifest:
            identifier: test
            type: K8sManifest
            spec:
              store:
                type: Github
                spec:
                  connectorRef: account.gitconnector
                  gitFetchType: Branch
                  paths:
                    - path_to_manifest
                  repoName: test
                  branch: test
              skipResourceVersioning: false
              enableDeclarativeRollback: false
              optionalValuesYaml: true
```

</details>

#### Optional Override File <a href="#optional-override-file" id="optional-override-file"></a>

To skip the override file:

1. Go to the Service Configuration.
2. Under the Manifest section, click Add Additional Override File or edit the existing override file.
3. In the Manifest Details tab, enable the Optional checkbox next to the Add File placeholder.

When this option is enabled, the **override file** is no longer required. If the file is missing from the specified path, the deployment will still proceed without it.

<figure><img src="/files/usp5QkEHYJbVW8mKAH5f" alt=""><figcaption><p>Optional override file support</p></figcaption></figure>

<details>

<summary>Sample YAML</summary>

Here is a sample of how the Values config would look when this checkbox is enabled. The `optionalValuesYaml` will be set to `true`.

```yaml

- manifest:
            identifier: values_test
            type: Values
            spec:
              store:
                type: Github
                spec:
                  connectorRef: account.github_connector
                  gitFetchType: Branch
                  paths:
                    - path_to_file
                  branch: main
              optionalValuesYaml: true
```

</details>

### Next steps <a href="#next-steps" id="next-steps"></a>

Once you've configured your service, you can move onto the stage's **Environment** settings and define the target Kubernetes cluster and namespace for your deployment.

See [Define your Kubernetes target infrastructure](/continuous-delivery/use-continuous-delivery/deploy-services-on-different-platforms/kubernetes/define-your-kubernetes-target-infrastructure.md).
