Skip to content

7. Intégration continue avec ArgoCD

Installation de ArgoCD sur le cluster

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Interface ArgoCD

kubectl port-forward svc/argocd-server -n argocd 8080:443

Récupération du mot de passe

Username: admin

kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo

Création et synchronisation

ici Pour les registry privés, il faudra entrer les identifiants afin de pouvoir récupérer les images.