Skip to content

Webhook Configuration

Overview

Argo CD polls Git/OCI/Helm repositories every three minutes to detect changes to the manifests. To eliminate this delay from polling, the API server can be configured to receive webhook events.

Git Webhooks

Argo CD supports Git webhook notifications from GitHub, GitLab, Bitbucket, Bitbucket Server, Azure DevOps and Gogs. The following explains how to configure a Git webhook for GitHub, but the same process should be applicable to other providers.

OCI Registry Webhooks

Argo CD also supports webhooks from OCI-compliant container registries to trigger application refreshes when new OCI artifacts are pushed. See Webhook Configuration for OCI-Compliant Registries for details.

Application Sets use a separate webhook configuration for generating applications. Webhook support for the Git Generator can be found here.

Note

The webhook handler does not differentiate between branch events and tag events where the branch and tag names are the same. A hook event for a push to branch x will trigger a refresh for an app pointing at the same repo with targetRevision: refs/tags/x.

1. Create The WebHook In The Git Provider

In your Git provider, navigate to the settings page where webhooks can be configured. The payload URL configured in the Git provider should use the /api/webhook endpoint of your Argo CD instance (e.g. https://argocd.example.com/api/webhook). If you wish to use a shared secret, input an arbitrary value in the secret. This value will be used when configuring the webhook in the next step.

To prevent DDoS attacks with unauthenticated webhook events (the /api/webhook endpoint currently lacks rate limiting protection), it is recommended to limit the payload size. You can achieve this by configuring the argocd-cm ConfigMap with the webhook.maxPayloadSizeMB attribute. The default value is 50MB.

Github

Add Webhook

Note

When creating the webhook in GitHub, the "Content type" needs to be set to "application/json". The default value "application/x-www-form-urlencoded" is not supported by the library used to handle the hooks

Azure DevOps

Add Webhook

Azure DevOps optionally supports securing the webhook using basic authentication. To use it, specify the username and password in the webhook configuration and configure the same username/password in argocd-secret Kubernetes secret in webhook.azuredevops.username and webhook.azuredevops.password keys.

2. Configure Argo CD With The WebHook Secret (Optional)

Configuring a webhook shared secret is optional, since Argo CD will still refresh applications related to the Git repository, even with unauthenticated webhook events. This is safe to do since the contents of webhook payloads are considered untrusted, and will only result in a refresh of the application (a process which already occurs at three-minute intervals). If Argo CD is publicly accessible, then configuring a webhook secret is recommended to prevent a DDoS attack.

In the argocd-secret Kubernetes secret, configure one of the following keys with the Git provider's webhook secret configured in step 1.

Provider K8s Secret Key
GitHub webhook.github.secret
GitLab webhook.gitlab.secret
BitBucket webhook.bitbucket.uuid
BitBucketServer webhook.bitbucketserver.secret
Gogs webhook.gogs.secret
Azure DevOps webhook.azuredevops.username
webhook.azuredevops.password
Harbor webhook.harbor.secret

Edit the Argo CD Kubernetes secret:

kubectl edit secret argocd-secret -n argocd

TIP: for ease of entering secrets, Kubernetes supports inputting secrets in the stringData field, which saves you the trouble of base64 encoding the values and copying it to the data field. Simply copy the shared webhook secret created in step 1, to the corresponding GitHub/GitLab/BitBucket key under the stringData field:

apiVersion: v1
kind: Secret
metadata:
  name: argocd-secret
  namespace: argocd
type: Opaque
data:
...

stringData:
  # github webhook secret
  webhook.github.secret: shhhh! it's a GitHub secret

  # gitlab webhook secret
  webhook.gitlab.secret: shhhh! it's a GitLab secret

  # bitbucket webhook secret
  webhook.bitbucket.uuid: your-bitbucket-uuid

  # bitbucket server webhook secret
  webhook.bitbucketserver.secret: shhhh! it's a Bitbucket server secret

  # gogs server webhook secret
  webhook.gogs.secret: shhhh! it's a gogs server secret

  # azuredevops username and password
  webhook.azuredevops.username: admin
  webhook.azuredevops.password: secret-password

After saving, the changes should take effect automatically.

Alternative

If you want to store webhook data in another Kubernetes Secret, instead of argocd-secret. ArgoCD knows to check the keys under data in your Kubernetes Secret starts with $, then your Kubernetes Secret name and : (colon).

Syntax: $<k8s_secret_name>:<a_key_in_that_k8s_secret>

Note

Secret must have label app.kubernetes.io/part-of: argocd

For more information refer to the corresponding section in the User Management Documentation.

Special handling for BitBucket Cloud

BitBucket does not include the list of changed files in the webhook request body. This prevents the Manifest Paths Annotation feature from working with repositories hosted on BitBucket Cloud. BitBucket provides the diffstat API to determine the list of changed files between two commits. To address the missing changed files list in the webhook, the Argo CD webhook handler makes an API callback to the originating server. To prevent Server-side request forgery (SSRF) attacks, Argo CD server supports the callback mechanism only for encrypted webhook requests. The incoming webhook must include X-Hook-UUID request header. The corresponding UUID must be provided as webhook.bitbucket.uuid in argocd-secret for verification. The callback mechanism supports both public and private repositories on BitBucket Cloud. For public repositories, the Argo CD webhook handler uses a no-auth client for the API callback. For private repositories, the Argo CD webhook handler searches for a valid repository OAuth token for the HTTP/HTTPS URL. The webhook handler uses this OAuth token to make the API request to the originating server. If the Argo CD webhook handler cannot find a matching repository credential, the list of changed files would remain empty. If errors occur during the callback, the list of changed files will be empty.

3. Webhook Configuration for OCI-Compliant Registries

In addition to Git webhooks, Argo CD supports webhooks from OCI-compliant container registries. This enables instant application refresh when new artifacts are pushed, eliminating the delay from polling.

GitHub Container Registry (GHCR)

Webhooks cannot be registered directly on a GHCR image repository. Instead, package events are delivered from the associated GitHub repository.

Note

If your GHCR image repository is not yet linked to a GitHub repository, see Connecting a repository to a package.

Configure the Webhook

  1. Go to your GitHub repository SettingsWebhooksAdd webhook
  2. Set Payload URL to https://<argocd-server>/api/webhook
  3. Set Content type to application/json
  4. Set Secret to a secure value
  5. Under Events, select Let me select individual events and enable Packages

Note

Only published events for container package types trigger a refresh. Other package types (npm, maven, etc.) and actions are ignored.

Warning

GitHub does not send package webhook events for artifacts with unknown media types. If your OCI artifact uses a custom or non-standard media type, the webhook will not be triggered. See GitHub documentation on supported package types.

Configure the Webhook Secret

GHCR webhooks use the same secret as GitHub Git webhooks (webhook.github.secret):

apiVersion: v1
kind: Secret
metadata:
  name: argocd-secret
  namespace: argocd
type: Opaque
stringData:
  webhook.github.secret: <your-webhook-secret>

Example Application

When a OCI artifact with a known media type is pushed to GHCR, Argo CD refreshes Applications with a matching repoURL and targetRevision:

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: my-app
spec:
  source:
    repoURL: oci://ghcr.io/myorg/myimage
    targetRevision: v1.0.0
    chart: mychart
  destination:
    server: https://kubernetes.default.svc
    namespace: default

The targetRevision field supports exact tags and semver constraints:

Constraint Webhook triggers on push of
1.0.0 Only 1.0.0
^1.2.0 >=1.2.0 and <2.0.0 (e.g., 1.2.1, 1.9.0)
~1.2.0 >=1.2.0 and <1.3.0 (e.g., 1.2.1, 1.2.9)
>=1.0.0 Any version >=1.0.0

URL Matching

Argo CD normalizes OCI repository URLs before comparison to ensure consistent matching:

For example, these repoURL values all match a webhook event for ghcr.io/myorg/myimage: - oci://ghcr.io/myorg/myimage - oci://GHCR.IO/MyOrg/MyImage - oci://ghcr.io/myorg/myimage/

Harbor

Harbor is a CNCF open-source OCI-compliant registry that supports sending webhook events when artifacts are pushed. Argo CD can be configured to receive these events and instantly refresh applications backed by OCI artifacts stored in Harbor.

Note

Harbor does not send a distinctive request header to identify webhook events, unlike GitHub which sends X-GitHub-Event. Authentication is performed via a configurable Authorization header value that you set in both Harbor's webhook configuration and in the ArgoCD secret. Configuring the secret (webhook.harbor.secret) is required for Harbor webhook support.

Warning

Harbor's Authorization header is a static bearer token, which is weaker than HMAC-based signing used by GitHub/GitLab. Unlike HMAC, a captured token can be replayed indefinitely and does not provide payload integrity guarantees. To reduce risk:

  • Always use HTTPS between Harbor and Argo CD so the token cannot be intercepted in transit.
  • Use a strong, randomly generated secret (e.g. openssl rand -hex 32).
  • Rotate the secret periodically by updating both webhook.harbor.secret in argocd-secret and the Auth Header in Harbor's webhook configuration.
  • Restrict network access to the /api/webhook endpoint at the network/firewall level so only your Harbor instance can reach it.

Configure the Webhook Secret

In argocd-secret, set the Harbor webhook secret. This value must match the Auth Header you configure in Harbor's webhook settings:

apiVersion: v1
kind: Secret
metadata:
  name: argocd-secret
  namespace: argocd
type: Opaque
stringData:
  webhook.harbor.secret: <your-harbor-auth-header-value>

Configure the Webhook in Harbor

  1. Log in to the Harbor portal with project administrator privileges.
  2. Navigate to your ProjectWebhooksAdd Webhook.
  3. Select notify type HTTP.
  4. Select payload format Default.
  5. Enable the Artifact pushed event type.
  6. Set Endpoint URL to https://<argocd-server>/api/webhook.
  7. Set Auth Header to the same value you configured in webhook.harbor.secret.
  8. Click Add to save the webhook.

Note

Argo CD only acts on PUSH_ARTIFACT events (artifact push). Other events such as PULL_ARTIFACT, DELETE_ARTIFACT, and scan events are ignored. Push events for resources that have no tag (digest-only pushes) are also ignored.

Example Application

When an OCI artifact is pushed to Harbor, Argo CD refreshes Applications with a matching repoURL:

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: my-app
spec:
  source:
    repoURL: oci://harbor.example.com/myproject
    targetRevision: v1.0.0
    chart: mychart
  destination:
    server: https://kubernetes.default.svc
    namespace: default

The targetRevision field supports exact tags as well as semver constraints (e.g. ^1.0.0, >=1.2.0). See the GHCR semver constraint table for details and examples.

Application Annotations Used by Webhooks

A webhook event triggers a refresh by setting the argocd.argoproj.io/refresh annotation on each matching Application (and, for Applications using the source hydrator, the argocd.argoproj.io/hydrate annotation as well). The application controller removes these annotations once it has finished processing the refresh. See Annotations and Labels for the full list of values these annotations can take.

Each refresh request also sets a companion argocd.argoproj.io/refresh-timestamp (and, for hydration, argocd.argoproj.io/hydrate-timestamp) annotation to a unique timestamp. Before removing the refresh/hydrate annotation, the controller checks that this timestamp still matches the value it observed when the refresh started. If another webhook event (or any other refresh trigger) arrived for the same Application while the first refresh was still being processed, the timestamp will have changed, so the controller leaves the annotations in place and processes the new request instead of dropping it. Without this check, a refresh request that arrives while a previous one for the same Application is still being reconciled could otherwise be silently lost until the next periodic poll or a manual refresh.