Feedback

Chat Icon

GitOps the Hard Way, with Argo CD

Build Real GitOps Pipelines From Empty Clusters to Automated Deploys

Install Argo CD: From kubectl apply to argocd login
37%

Adding More Clusters

Argo CD can manage applications in multiple clusters. At the moment, since we executed argocd login with the $node and $port of the Argo CD server, it can only manage applications in the same cluster where it is running. To add more clusters, you need to register them with Argo CD:

argocd cluster add 

Where is the name of the context of the cluster you want to add. You can get the list of contexts using:

kubectl config get-contexts

To add all the clusters you have access to from your kubeconfig file, you can use:

# Export all the clusters' names
clusters

GitOps the Hard Way, with Argo CD

Build Real GitOps Pipelines From Empty Clusters to Automated Deploys

Enroll now to unlock all content and receive all future updates for free.