I have two different projects,
I have Install ArgoCD on my devOps project(project 1) on Private GKE Cluster, Now I want to connect my( External ) Private GKE Cluster (project 2) to ArgoCD. How Can I connect External private Cluster to ArgoCD. Can you please help me with steps.
Solved! Go to Solution.
Hey @harshada2828 ! Let's try to solve your issue with the following steps:
Use argocd cluster add command: Add the external cluster to ArgoCD using the following command:
argocd cluster add <cluster-name> --kubeconfig <path-to-kubeconfig>
Please see: https://argo-cd.readthedocs.io/en/stable/user-guide/commands/argocd_cluster_add/ | https://github.com/lcostea/argocd-config/blob/master/docs/2-add-external-clusters.md | https://devopscube.com/configure-multiple-kubernetes-clusters-argo-cd/
Hey @harshada2828 ! Let's try to solve your issue with the following steps:
Use argocd cluster add command: Add the external cluster to ArgoCD using the following command:
argocd cluster add <cluster-name> --kubeconfig <path-to-kubeconfig>
Please see: https://argo-cd.readthedocs.io/en/stable/user-guide/commands/argocd_cluster_add/ | https://github.com/lcostea/argocd-config/blob/master/docs/2-add-external-clusters.md | https://devopscube.com/configure-multiple-kubernetes-clusters-argo-cd/
The above answer was helpful, but is there any other way to connect Cluster to Argo CD Like from UI or using YAML File ?