Checking the initial password of ArgoCD installed on k8s
AWS/EKS
Published
•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




