ArgoCD Installation
Argo-CD is a Kubernetes-native continuous deployment (CD) tool. Unlike external CD tools that only enable push-based deployments, Argo CD can pull updated code from Git repositories and deploy it directly to Kubernetes resources.
Official documentation :
https://argo-cd.readthedocs.io/en/stable/
1. ArgoCD Installation
Step 1 :
Login to the relevant Kubernetes cluster and Create new namespace for argoCD
Step 2:
Download the argoCD installation manifest.
Get the link from argoCD official documentation - https://argo-cd.readthedocs.io/en/stable/getting_started/#1-install-argo-cd
Step 3:
Apply the installation manifest to the new namespace
Step 4:
Change the service type from ClusterIP to NodePort in the service called “argocd-server”
Step 5 :
Before logging to the ArgoCD web portal we need to get the default user password.
You can collect it using the below command.
Default user : admin
Now you can access the GUI using node ip and service ports
To find those node ips and port you can use below commands.
Example URL : http://172.31.6.87:31907/applications
Maleesha Gimshan | 21st June 2025
Comments
Post a Comment