Datadog deployment through ArgoCD

125 Views Asked by At

We have been deploying datadog agent and datadog cluster agent using helm through our gitlab-runner pipeline.

We want to incorporate datadog related deployment through ArgoCD. Could someone help us how can we create an application.yaml for datadog because through helm the files are deployment files.

1

There are 1 best solutions below

0
On

Deployment of Helm charts has in-built support with ArgoCD. You can deploy an ArgoCD application with a Helm chart and custom Helm values like so:

argocd app set <helm-chart> --values values.yaml

The ArgoCD docs has an end to end guide on how you can deploy Helm charts. It also includes a sample application.yml that you can copy.