Checking the initial password of ArgoCD installed on k8s
Oct 18, 2024 · 1 min read · outline The initial password for ArgoCD installed on k8s is generated randomly. how-to kubectl -n <argocd-namespace> get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decode
Join discussion