diff --git a/get-argocd-admin-password.sh b/get-argocd-admin-password.sh new file mode 100755 index 0000000..c3684c4 --- /dev/null +++ b/get-argocd-admin-password.sh @@ -0,0 +1,7 @@ +#!/usr/bin/bash + +source ./env + +${KUBECTL_BIN} -n argocd \ + get secret argocd-initial-admin-secret \ + -o jsonpath='{.data.password}' | base64 -d