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 kubectl create namespace 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 curl -s https://raw.githubusercontent.com/argoproj/argo-cd/ v2.11.3 /manifests/install.yaml -o install.yaml Step 3: Apply the installation manifest to the new namespace kubectl apply -n argocd -f install.yaml Step 4: Change the service type from ClusterIP to NodePort in the service called “ argocd-server ” kubectl edit svc argocd-server -n argocd Step 5 : Bef...
Comments
Post a Comment