Source: levelup.gitconnected.com

Integrating Argo CD for Your Kubernetes Project

Category: Kubernetes, github

Argo CD can be identified as an open-source continuous delivery tool for Kubernetes which has a graphical user interface to see Kubernetes components inside the cluster. When you run an application on Kubernetes, you can see all the Kubernetes components on the terminal using kubectl commands.

Use the below command on your terminal to create a namespace for Argo CD [you can check all the available namespaces inside your cluster using kubectl get ns command].

Next, you need to get access to the Argo CD API server, and for that, you can follow one of below methods.

Now you can enter the credentials for the argo cd login page and get access to the Argo CD dashboard or else you can install the argocd CLI and login through your terminal.

Related Articles