If you want to Deploy ArgoCD on Azure Kubernetes Cluster, you need to follow the steps: Steps to install ArgoCD on Kubernetes Cluster: 1) Create a namespace argocd using below command:kubectl create namespace argocd 2) Install argocd in argocd namespace using below command:kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml 3) Verify argocd resources have been created […]