From e5a6f27b601c721e473990444aba4b51be01d518 Mon Sep 17 00:00:00 2001 From: Fernando Rocha Date: Thu, 24 Apr 2025 22:11:10 -0700 Subject: [PATCH] Argo CD Integration docs Signed-off-by: Fernando Rocha --- .../integrations/argo-cd.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 daprdocs/content/en/developing-applications/integrations/argo-cd.md diff --git a/daprdocs/content/en/developing-applications/integrations/argo-cd.md b/daprdocs/content/en/developing-applications/integrations/argo-cd.md new file mode 100644 index 000000000..edac7e9d4 --- /dev/null +++ b/daprdocs/content/en/developing-applications/integrations/argo-cd.md @@ -0,0 +1,17 @@ +--- +type: docs +title: "How to: Integrate with Argo CD" +linkTitle: "Argo CD" +weight: 8000 +description: "Integrate Dapr into your GitOps pipeline" +--- + +[Argo CD](https://argo-cd.readthedocs.io/en/stable/) is a declarative, GitOps continuous delivery tool for Kubernetes. It enables you to manage your Kubernetes deployments by tracking the desired application state in Git repositories and automatically syncing it to your clusters. + +**Integration with Dapr:** + +You can use Argo CD to manage the deployment of Dapr control plane components and Dapr-enabled applications. By adopting a GitOps approach, you ensure that Dapr's configurations and applications are consistently deployed, versioned, and auditable across your environments. Argo CD can be easily configured to deploy Helm charts, manifests, and Dapr components stored in Git repositories. + +**Example:** + +A sample project demonstrating Dapr deployment with Argo CD is available at [https://github.com/dapr/samples/dapr-argocd](https://github.com/dapr/samples/dapr-argocd).