mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:04:32 +07:00
5 lines
147 B
Plaintext
5 lines
147 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Get ArgoCD initial admin password
|
||
|
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
|