Skip to content

Commit c1cd36c

Browse files
Merge branch 'v1.15' into chore/stale-bot
2 parents 15c85a9 + 58ef38f commit c1cd36c

File tree

2 files changed

+18
-1
lines changed
  • daprdocs/content/en

2 files changed

+18
-1
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
type: docs
3+
title: "How to: Integrate with Argo CD"
4+
linkTitle: "Argo CD"
5+
weight: 9000
6+
description: "Integrate Dapr into your GitOps pipeline"
7+
---
8+
9+
[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.
10+
11+
## Integration with Dapr
12+
13+
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.
14+
15+
## Sample code
16+
17+
A sample project demonstrating Dapr deployment with Argo CD is available at [https://github.com/dapr/samples/tree/master/dapr-argocd](https://github.com/dapr/samples/tree/master/dapr-argocd).

daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This guide walks you through installing an Azure Kubernetes Service (AKS) cluste
3939
1. Create an AKS cluster. To use a specific version of Kubernetes, use `--kubernetes-version` (1.13.x or newer version required).
4040

4141
```bash
42-
az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --node-count 2 --enable-addons http_application_routing --generate-ssh-keys
42+
az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --location [region] --node-count 2 --enable-app-routing --generate-ssh-keys
4343
```
4444

4545
1. Get the access credentials for the AKS cluster.

0 commit comments

Comments
 (0)