Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.67 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.67 KB

argocd-root-chart

ci license

Commands

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

# access ArgoCD UI
kubectl get svc -n argocd
kubectl port-forward svc/argocd-server 8080:443 -n argocd &

# login with admin user and below token (as in documentation):
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decode && echo

ArgoCD deployments

kubectl get Application -n argocd
NAME                         SYNC STATUS   HEALTH STATUS
bootstrap                    Synced        Healthy
cert-manager                 Synced        Healthy
infra                        Synced        Healthy
kube-prometheus-stack-crds   Synced        Healthy
monitoring                   Synced        Healthy

Links