> 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-gitops/application/harness-expressions-in-gitops-applications.md).

# Use Harness expressions in GitOps manifests

Inject Harness service variables, environment variables, and secrets into Argo CD manifests at manifest generation time.

Use the Harness GitOps plugin to resolve Harness expressions in Kubernetes manifests during Argo CD's manifest generation phase. This lets you inject dynamic values from Harness services and environments into your manifests before Argo CD applies them to the cluster.

{% hint style="warning" %}
**UPDATED APPLICATION DETECTION**

The Harness plugin now uses an explicit, per-application connection to determine which applications it processes. This replaces the previous behavior where the plugin could automatically claim any application based on repository contents, a change that improves security by ensuring no application's manifest generation is silently routed through the plugin without an explicit opt-in, and moves control to the application level rather than the agent level. Each application must specify one of the following:

* `spec.source.plugin.name: argocd-harness-plugin` on the Argo CD Application.
* `.harness.yaml` in the application's source directory.

Applications that previously worked without an explicit connection may stop resolving expressions after an agent upgrade or recreation.

For configuration steps, go to [Connect an application to the plugin](#connect-an-application-to-the-plugin).
{% endhint %}

### What you will learn from this topic <a href="#what-you-will-learn-from-this-topic" id="what-you-will-learn-from-this-topic"></a>

* How to [configure the plugin](#configure-the-harness-argo-cd-plugin) on new or existing GitOps agents
* How to [connect an application to the plugin](#connect-an-application-to-the-plugin) so expressions resolve
* How the plugin [detects your manifest tool](#manifest-tool-selection) (Helm, Kustomize, or plain manifests)
* How to [use expressions](#expression-reference) for service variables, environment variables, and secrets
* How to [override variables](#override-priority) per environment
* How to [troubleshoot](#troubleshooting) common expression resolution issues

{% hint style="info" %}
**SECRETS AND SECURITY**

This topic covers expressions and tool detection. For Vault and Secret Manager integration, and the security model, go to [Secret injection in GitOps applications](/continuous-delivery/use-gitops/security/secret-injection-harness-plugin.md).
{% endhint %}

***

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

Before using Harness expressions in GitOps manifests, ensure you have:

* **GitOps Agent**: Agent version v0.105.x or later installed and running. Go to [Install a Harness GitOps Agent](/continuous-delivery/use-gitops/gitops-entities/agents/install-a-harness-git-ops-agent.md) for installation steps.
* **Agent installer helper**: `gitops-agent-installer-helper` version v0.0.16 or later (v0.0.18 or later is required for Kustomize support).
* **Harness service**: A GitOps service configured with variables. Go to [GitOps services](/continuous-delivery/use-gitops/gitops-entities/service/service.md) to create and configure services.
* **Harness environment**: An environment configured with variables and linked to your service. Go to [Environments](/service-reliability-management/new-to-srm/get-started/key-concepts.md#environment) for environment concepts.

***

### Configure the Harness Argo CD plugin <a href="#configure-the-harness-argo-cd-plugin" id="configure-the-harness-argo-cd-plugin"></a>

Do this once when setting up the agent. If the plugin is already enabled on your agent, skip to [Connect an application to the plugin](#connect-an-application-to-the-plugin).

**For new Agent installations:** Select the **Enable ArgoCD Harness Plugin (Required for Harness expression resolution)** checkbox during GitOps agent installation to use this feature. No additional configuration is needed.

<figure><img src="https://3694223630-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fy1JhZ4oKIppwY7d5AhPj%2Fuploads%2Fgit-blob-299c7e6037a67ee1370efb6b60867142636d2eae%2Fenable-argo-cd-harness-plugin.png?alt=media" alt="Enable ArgoCD Harness Plugin checkbox in GitOps Agent installation wizard"><figcaption></figcaption></figure>

**For existing Agent installations (BYOA or Harness-installed Argo):** The **Enable ArgoCD Harness Plugin (Required for Harness expression resolution)** checkbox cannot be changed after the initial installation. You must configure the Harness Argo CD plugin manually. Go to [Enable the plugin on an existing agent or BYOA](#enable-the-plugin-on-an-existing-agent-or-byoa) for instructions.

Once enabled, connect each Application to the plugin and use expressions in your manifests:

**Step 1.** Connect the Application to the plugin

Set the plugin name on the Application:

```yaml
spec:
  source:
    repoURL: https://github.com/your-org/your-repo
    targetRevision: HEAD
    path: manifests/
    plugin:
      name: argocd-harness-plugin
```

Or add `.harness.yaml` to the Application's source directory. Go to [Connect an application to the plugin](#connect-an-application-to-the-plugin) for details on both methods.

**Step 2.** Use expressions in your manifests

```yaml
spec:
  replicas: <+serviceVariables.replicas>
  template:
    spec:
      containers:
        - name: app
          image: myapp:<+serviceVariables.imageTag>
          env:
            - name: LOG_LEVEL
              value: <+env.variables.logLevel>
            - name: ENV_NAME
              value: <+env.name>
```

Expressions resolve at manifest generation time. Sync (or let auto-sync trigger) and the deployed manifest contains the resolved values.

#### Limitations <a href="#limitations" id="limitations"></a>

| Limitation                                | Details                                                                                                                                   |
| ----------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Kustomize `secretGenerator`               | Secret resolution inside `secretGenerator`-produced `Secret` objects is unverified; use plain `Secret` manifests instead until confirmed. |
| Application source type shows as `Plugin` | Argo CD shows source type as **Plugin** instead of Helm/Directory. Path listing in UI will not work; specify paths manually.              |
| `HELM_ARGS`                               | Shell-injection risk; see [warning below](#helmargs-environment-variable).                                                                |

***

### Connect an application to the plugin <a href="#connect-an-application-to-the-plugin" id="connect-an-application-to-the-plugin"></a>

{% hint style="warning" %}
**Application routing is required**

The plugin processes an application's manifests only when Argo CD is configured to route the application to the Harness plugin. If the application is not routed to the plugin, Harness expressions remain unresolved and appear literally in the generated manifests.
{% endhint %}

There are two ways to connect an Application to the plugin:

| Method                    | How                                                                     |
| ------------------------- | ----------------------------------------------------------------------- |
| **Explicit plugin name**  | Set `spec.source.plugin.name: argocd-harness-plugin` on the Application |
| **File-based activation** | Add `.harness.yaml` to the Application's source directory               |

**Explicit plugin name:**

```yaml
spec:
  source:
    repoURL: https://github.com/your-org/your-repo
    targetRevision: HEAD
    path: manifests/
    plugin:
      name: argocd-harness-plugin
```

**File-based activation**: commit `.harness.yaml` to the application's source directory:

```yaml
# An empty file is valid.
```

In the example below, the Argo CD Application's `spec.source.path` is `helm-guestbook`. The `.harness.yaml` file is committed inside that directory, alongside `Chart.yaml` and `values.yaml`.

<figure><img src="https://3694223630-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fy1JhZ4oKIppwY7d5AhPj%2Fuploads%2Fgit-blob-2d1f7dcbe7677edf7d07eceadb1c2661523d5f9a%2Fharness-yaml-in-source-directory.png?alt=media" alt=".harness.yaml committed inside the helm-guestbook source directory on GitHub"><figcaption></figcaption></figure>

{% hint style="warning" %}
**`.harness.yaml` must be inside `spec.source.path`, not the repo root**

Argo CD checks for the file inside the Application's source path. If your Application's `path` is `charts/myapp`, the file must be at `charts/myapp/.harness.yaml`. A file at the repo root will not be found.
{% endhint %}

**Custom activation conditions (optional, advanced)**

Not required for most setups. Use this only if neither the explicit plugin name nor the `.harness.yaml` marker fits your workflow, for example, if you want to use a different filename, or check for multiple possible markers.

The plugin checks for `.harness.yaml` using a shell command in the ConfigManagementPlugin spec. You can replace that command with any shell expression that exits `0` for applications the plugin should process and non-zero for those it should not. The command runs inside the Application's source directory (`spec.source.path`).

To customize, edit the `discover.find.command` in the plugin ConfigMap directly. Go to [Enable the plugin on an existing agent or BYOA](#enable-the-plugin-on-an-existing-agent-or-byoa) for the ConfigMap structure.

```yaml
discover:
  find:
    command:
      - /bin/sh
      - -c
      - "test -f .harness.yaml || test -f .harness-plugin"  # activate on either file
```

Or check for a specific key inside the file:

```yaml
      - "grep -q '^harness:' .harness.yaml 2>/dev/null"
```

The built-in default (`test -f .harness.yaml`) is sufficient for almost all cases. Custom conditions are a BYOA or Helm-managed install concern; Harness-provisioned agents manage this ConfigMap automatically.

***

### Manifest tool selection <a href="#manifest-tool-selection" id="manifest-tool-selection"></a>

No configuration needed for most applications. The plugin detects Helm, Kustomize, or plain manifests automatically. Read this section only if auto-detection is picking the wrong tool for your application.

**Tool selection at generation time**

Once the plugin is processing an Application, it auto-detects the manifest tool by inspecting the source directory. For most applications this requires no configuration:

| Condition                                                            | Tool used                |
| -------------------------------------------------------------------- | ------------------------ |
| `kustomization.yaml`, `kustomization.yml`, or `Kustomization` exists | `kustomize build .`      |
| `Chart.yaml` or `values.yaml` exists                                 | `helm template`          |
| None of the above                                                    | Plain manifests (native) |

Expressions are resolved on the tool's **output**, after Helm or Kustomize has already rendered the manifests.

If auto-detection picks the wrong tool, you can override it. Go to [Overriding the manifest tool](#overriding-the-manifest-tool).

#### Plain manifests <a href="#plain-manifests" id="plain-manifests"></a>

No `Chart.yaml` or `kustomization.yaml`: just raw manifests. No extra configuration needed:

```yaml
apiVersion: v1
kind: ConfigMap
metadata:
  name: app-config
data:
  log-level: <+env.variables.logLevel>
  cluster: <+env.variables.clusterName>
```

#### Helm <a href="#helm" id="helm"></a>

Plugin runs `helm template` and resolves expressions in the output. Helm subchart dependencies (`helm dependency build`) run automatically; no need to vendor `charts/`:

```yaml
replicaCount: <+serviceVariables.replicas>
image:
  tag: <+serviceVariables.imageTag>
```

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

Plugin runs `kustomize build .` and resolves expressions in the output. Expressions can appear in any resource Kustomize renders, including patches:

```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: myapp
spec:
  replicas: <+serviceVariables.replicas>
```

{% hint style="warning" %}
**KUSTOMIZE + `SECRETGENERATOR`**

Expression resolution for `kind: Secret` objects produced by Kustomize's `secretGenerator` is not yet verified. Use plain `Secret` manifests (not `secretGenerator`) if you need secret injection with Kustomize.
{% endhint %}

**Overriding the manifest tool**

If auto-detection picks the wrong tool, add a `tool:` key to `.harness.yaml`:

```yaml
tool: kustomize   # one of: helm, kustomize, native
```

***

### Expression reference <a href="#expression-reference" id="expression-reference"></a>

All expressions resolve at **manifest generation time** (pre-deployment, not runtime).

#### Expression types <a href="#expression-types" id="expression-types"></a>

| Expression                               | Source                       | Example                                |
| ---------------------------------------- | ---------------------------- | -------------------------------------- |
| `<+serviceVariables.name>`               | Service-level variables      | `<+serviceVariables.replicas>`         |
| `<+env.variables.name>`                  | Environment-level variables  | `<+env.variables.logLevel>`            |
| `<+env.name>`                            | Environment display name     | `production`                           |
| `<+env.identifier>`                      | Environment identifier       | `prod`                                 |
| `<+env.type>`                            | Environment type             | `Production` or `PreProduction`        |
| `<+env.description>`                     | Environment description      |                                        |
| `<+variable.account.name>`               | Account-scope fixed variable | `<+variable.account.companyId>`        |
| `<+variable.org.name>`                   | Org-scope fixed variable     | `<+variable.org.defaultRegion>`        |
| `<+variable.name>`                       | Project-scope fixed variable | `<+variable.projectCode>`              |
| `<+secrets.getValue("ref")>`             | Secret (direct reference)    | `<+secrets.getValue("vault_secret")>`  |
| `<+serviceVariables.name>` (Secret type) | Secret via service variable  | resolves to `<+secrets.getValue(...)>` |

#### Define variables <a href="#define-variables" id="define-variables"></a>

* **Service variables:** Deployments → Services → \[Service] → Configuration → Variables
* **Environment variables:** Deployments → Environments → \[Environment] → Configuration → Variables
* **Fixed variables:** Account/Org/Project Settings → Variables

#### Override priority <a href="#override-priority" id="override-priority"></a>

When the same variable name exists at multiple levels, the highest-priority override wins:

```
ENV_SERVICE  >  Service (base)  >  ENV_GLOBAL  >  Environment (base)
```

| Override type    | How to configure                                 | Scope                                                                  |
| ---------------- | ------------------------------------------------ | ---------------------------------------------------------------------- |
| **ENV\_SERVICE** | Environment → Service Overrides → select service | Overrides a service variable for a specific service+environment pair   |
| **ENV\_GLOBAL**  | Environment → Configuration → Variables          | Overrides an environment variable for all services in that environment |

#### Secret variables <a href="#secret-variables" id="secret-variables"></a>

Variables defined as type **Secret** in Harness go through two-stage resolution:

1. **Manifest generation:** `<+serviceVariables.dbPassword>` → `<+secrets.getValue('account.prodDbPassword')>`
2. **Deployment time:** actual secret value injected into the cluster

```yaml
apiVersion: v1
kind: Secret
metadata:
  name: app-secrets
type: Opaque
stringData:
  db-password: <+serviceVariables.dbPassword>
  api-key: <+serviceVariables.apiKey>
```

{% hint style="info" %}
Secret expressions (`<+secrets.getValue()>`) are only resolved when they appear inside a `kind: Secret` resource.
{% endhint %}

#### Complete example <a href="#complete-example" id="complete-example"></a>

```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: myapp
  namespace: <+env.variables.namespace>
  labels:
    environment: <+env.type>
spec:
  replicas: <+serviceVariables.replicas>
  template:
    spec:
      containers:
        - name: myapp
          image: myapp:<+serviceVariables.imageTag>
          env:
            - name: LOG_LEVEL
              value: <+env.variables.logLevel>
            - name: REGION
              value: <+serviceVariables.region>
            - name: ENV_NAME
              value: <+env.name>
          resources:
            limits:
              memory: <+serviceVariables.memoryLimit>
              cpu: <+serviceVariables.cpuLimit>
```

#### GitOps expressions vs pipeline expressions <a href="#gitops-expressions-vs-pipeline-expressions" id="gitops-expressions-vs-pipeline-expressions"></a>

GitOps expressions are a subset of Harness expressions: they only have access to service and environment context, not pipeline runtime context.

{% hint style="info" %}
**EXCEPTION FOR PR PIPELINES**

When syncing manifests within PR Pipelines (for example, using the GitOps Sync step), GitOps expressions can access pipeline runtime context. This allows you to reference pipeline variables, execution details, and other pipeline-level expressions during PR Pipeline execution.
{% endhint %}

|                   | GitOps expressions                               | Pipeline expressions                                     |
| ----------------- | ------------------------------------------------ | -------------------------------------------------------- |
| **When resolved** | Manifest generation (pre-deploy)                 | Pipeline runtime                                         |
| **Context**       | Service + environment + metadata                 | Full pipeline (`artifact.*`, `infra.*`, `stage.*`, etc.) |
| **Not available** | `pipeline.*`, `stage.*`, `artifact.*`, `infra.*` |                                                          |

Use GitOps expressions when the value is known at manifest generation time and tied to service or environment config. Use pipeline expressions for artifact versions, build numbers, or step outputs.

***

### Enable the plugin on an existing agent or BYOA <a href="#enable-the-plugin-on-an-existing-agent-or-byoa" id="enable-the-plugin-on-an-existing-agent-or-byoa"></a>

The **Enable ArgoCD Harness Plugin** checkbox can only be set at initial Agent installation. Use one of these patch paths if your agent is already installed.

#### Helm chart installations <a href="#helm-chart-installations" id="helm-chart-installations"></a>

1. Set in `values.yaml`:

   ```yaml
   harness:
     argocdHarnessPlugin:
       enabled: true
   ```
2. Upgrade the release:

   ```bash
   helm upgrade <release-name> gitops-agent/gitops-helm \
     --values values.yaml \
     --namespace <agent-namespace>
   ```
3. Verify Kustomize is available (requires sidecar image ≥ `v0.0.18`):

   ```bash
   kubectl exec -n <agent-namespace> <argocd-repo-server-pod> \
     -c argocd-harness-plugin -- kustomize version

   kubectl exec -n <agent-namespace> <argocd-repo-server-pod> \
     -c argocd-harness-plugin -- helm version
   ```

   If `kustomize version` returns "command not found," bump the sidecar image tag above `v0.0.18` and re-apply.

#### Plain Kubernetes manifest installations <a href="#plain-kubernetes-manifest-installations" id="plain-kubernetes-manifest-installations"></a>

1. Apply the plugin ConfigMap:

   ```bash
   kubectl apply -n <agent-namespace> -f - <<'EOF'
   apiVersion: v1
   kind: ConfigMap
   metadata:
     name: argocd-harness-plugin
     namespace: <agent-namespace>
   data:
     harness.yaml: |
       ---
       apiVersion: argoproj.io/v1alpha1
       kind: ConfigManagementPlugin
       metadata:
         name: argocd-harness-plugin
       spec:
         version: v1.0
         allowConcurrency: true
         discover:
           find:
             command:
               - /bin/sh
               - -c
               - "test -f .harness.yaml"
         init:
           command:
             - /bin/sh
             - -c
             - |
               set -o pipefail
               if [ -f "Chart.yaml" ]; then
                 helm dependency build > /dev/null 2>&1 || true
               fi
         generate:
           command:
             - /bin/sh
             - -c
             - |
               set -o pipefail
               if [ -f ".harness.yaml" ] && grep -q '^tool:' ".harness.yaml"; then
                 TOOL=$(grep '^tool:' ".harness.yaml" | head -1 | cut -d: -f2 | tr -d ' "')
               else
                 TOOL=""
               fi

               if [ "$TOOL" = "kustomize" ] || { [ -z "$TOOL" ] && { [ -f "kustomization.yaml" ] || [ -f "kustomization.yml" ] || [ -f "Kustomization" ]; }; }; then
                 kustomize build . | argocd-harness-plugin generate -
               elif [ "$TOOL" = "helm" ] || { [ -z "$TOOL" ] && { [ -f "Chart.yaml" ] || [ -f "values.yaml" ]; }; }; then
                 helm template $ARGOCD_APP_NAME -n $ARGOCD_APP_NAMESPACE ${ARGOCD_ENV_HELM_ARGS} --include-crds . \
                   | argocd-harness-plugin generate -
               else
                 argocd-harness-plugin generate .
               fi
         lockRepo: false
   EOF
   ```
2. Patch the `argocd-repo-server` Deployment to add the sidecar (skip if already present):

   ```bash
   kubectl patch deployment argocd-repo-server -n <agent-namespace> --type=json -p='[
     {"op": "add", "path": "/spec/template/spec/containers/-", "value": {
       "name": "argocd-harness-plugin",
       "command": ["/var/run/argocd/argocd-cmp-server"],
       "image": "harness/gitops-agent-installer-helper:v0.0.18",
       "imagePullPolicy": "IfNotPresent",
       "securityContext": {"runAsUser": 999, "runAsGroup": 999, "capabilities": {"drop": ["NET_RAW"]}},
       "volumeMounts": [
         {"name": "var-files", "mountPath": "/var/run/argocd"},
         {"name": "plugins", "mountPath": "/home/argocd/cmp-server/plugins"},
         {"name": "tmp", "mountPath": "/tmp"},
         {"name": "argocd-harness-plugin", "mountPath": "/home/argocd/cmp-server/config/plugin.yaml", "subPath": "harness.yaml"}
       ]
     }},
     {"op": "add", "path": "/spec/template/spec/volumes/-", "value": {
       "name": "argocd-harness-plugin",
       "configMap": {"name": "argocd-harness-plugin"}
     }}
   ]'
   ```
3. Verify:

   ```bash
   kubectl rollout status deployment/argocd-repo-server -n <agent-namespace>
   kubectl exec -n <agent-namespace> <argocd-repo-server-pod> \
     -c argocd-harness-plugin -- kustomize version
   ```

{% hint style="info" %}
**UPGRADING FROM AN OLDER PLUGIN INSTALL**

If you already have an `argocd-harness-plugin` ConfigMap from a previous install, re-applying the ConfigMap in step 1 is sufficient; you do not need to re-patch the Deployment. Just verify the sidecar image tag is ≥ `v0.0.18`.
{% endhint %}

#### `HELM_ARGS` environment variable <a href="#helmargs-environment-variable" id="helmargs-environment-variable"></a>

The plugin passes `${ARGOCD_ENV_HELM_ARGS}` directly to `helm template`:

```yaml
spec:
  source:
    plugin:
      name: argocd-harness-plugin
      env:
        - name: HELM_ARGS
          value: -f values-dev.yaml --set replicaCount=3
```

{% hint style="warning" %}
**SHELL INJECTION RISK**

`HELM_ARGS` is passed to `helm template` without escaping. Only use it when all users with `Application` edit access are trusted. Prefer chart-native `values.yaml` overrides in shared or multi-tenant clusters.
{% endhint %}

***

### Troubleshooting <a href="#troubleshooting" id="troubleshooting"></a>

<details>

<summary>Expression appears literally in the deployed manifest</summary>

The expression was not resolved: it shows as `<+serviceVariables.replicas>` instead of `3`.

**Try first:** Hard-refresh the Argo CD application to invalidate the manifest cache.

**Then check:**

1. **Variable exists?** Verify the variable name and scope in Harness UI (exact match, case-sensitive).
2. **Plugin enabled?** Check that `spec.source.plugin.name: argocd-harness-plugin` is set on the Application.
3. **Typo?** Check for extra spaces or incorrect syntax; expressions are `<+serviceVariables.name>` not `<+ serviceVariables.name>`.

</details>

<details>

<summary>Kustomize: "command not found"</summary>

```
kustomize: command not found
```

The sidecar image predates Kustomize support. Bump the image tag to ≥ `v0.0.18` and re-apply. Go to [Enable the plugin on an existing agent or BYOA](#enable-the-plugin-on-an-existing-agent-or-byoa).

</details>

<details>

<summary>Override not taking effect</summary>

1. **Wrong scope:** Service variables must be overridden at ENV\_SERVICE level; environment variables at ENV\_GLOBAL. You cannot override a service variable using ENV\_GLOBAL.
2. **Not saved?** Verify the override is saved and the correct service+environment combination is selected.
3. **Name mismatch?** Override variable name must match exactly (case-sensitive).

</details>

<details>

<summary>Numeric value rendered as string</summary>

Define the variable as type **Number** (not String) in Harness:

```yaml
variables:
  - name: replicas
    type: Number   # not String
    value: 3
```

</details>

<details>

<summary>Harness expressions stopped resolving after an agent upgrade or recreation</summary>

**Symptom:** An application that previously had Harness expressions resolved in its manifests no longer resolves them after you upgraded or recreated the agent. The expressions appear literally in the deployed manifests (for example, `<+serviceVariables.replicas>` instead of `3`).

**Cause:** If the application did not have `spec.source.plugin.name: argocd-harness-plugin` set, expression resolution depends on `.harness.yaml` being present in the application's source directory. If that file is absent, the Harness plugin does not process the application's manifests.

**Fix:**

Choose one of the following options:

* Set `spec.source.plugin.name: argocd-harness-plugin` on the Application. Argo CD routes the Application directly to the plugin regardless of what files are in the repo.
* Commit `.harness.yaml` to the application's source path. The file must be inside `spec.source.path`, not the repo root. Go to [Connect an application to the plugin](#connect-an-application-to-the-plugin) for details.

</details>

<details>

<summary>Secret not resolving</summary>

1. Variable must be type **Secret** (not String) to trigger two-stage resolution.
2. Secret must exist in Harness Secrets Manager before being referenced.
3. Check secret reference format: `account.secretName` or `org.secretName`.

</details>

***

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

* [Secret injection in GitOps applications](/continuous-delivery/use-gitops/security/secret-injection-harness-plugin.md): Vault, Harness Secret Manager, and security model
* [Manage GitOps Applications](/continuous-delivery/use-gitops/application/manage-gitops-applications.md): Create, sync, and manage ArgoCD applications in Harness
* [Harness GitOps basics](/continuous-delivery/use-gitops/get-started/harness-git-ops-basics.md): Core concepts and architecture of Harness GitOps

{% @harness-feedback/feedback %}
