After installing Devtron using Helm, getting the admin password does not work.(if using windows)

After installing Devtron using Helm, getting the admin password does not work.(if using windows)

Debug:

'base64' is not recognized as an internal or external command, operable program or batch file.

Solution:

The first way to debug is either install base64 encode and decode into your windows machine and use the appropriate cmd to get the admin password.

The other way is to get the password in the encoded form using the cmd
  1. kubectl -n devtroncd get secret devtron-secret -o jsonpath='{.data.ACD_PASSWORD}'
, further decode it into plaintext using an online encoder decoder.