Skip to content

Commit

Permalink
docs improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
diegodocs committed Dec 3, 2024
1 parent 8318a7a commit 6696a77
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/setup-infra.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,17 @@ Create an AKS cluster:

```powershell
az aks create --resource-group $ResourceGroupName --name $AKSClusterName --node-count 1 --location $Location --node-vm-size Standard_D4ds_v5 --tier free --enable-pod-identity --generate-ssh-keys --nodepool-name system --network-plugin azure --enable-cluster-autoscaler --min-count 1 --max-count 3 --zones 2
az aks nodepool add --resource-group $ResourceGroupName --name workload --cluster-name $AKSClusterName --node-osdisk-type Ephemeral --node-osdisk-size 48 --mode user --node-count 1 --enable-cluster-autoscaler --min-count 1 --max-count 3 --zones 2
```

- enabling [DAPR AKS Extension](https://learn.microsoft.com/pt-br/azure/aks/dapr?tabs=cli)
- enabling [KEDA AKS Addon](https://learn.microsoft.com/pt-br/azure/aks/keda-deploy-add-on-cli)

Add Node for Workloads:

```powershell
az aks nodepool add --resource-group $ResourceGroupName --name workload --cluster-name $AKSClusterName --node-osdisk-type Ephemeral --node-osdisk-size 48 --mode user --node-count 1 --enable-cluster-autoscaler --min-count 1 --max-count 3 --zones 2
```

Create an Container Registry:

```powershell
Expand Down

0 comments on commit 6696a77

Please sign in to comment.