You can find the initial admin password in the existing values.yaml
.
To reset the password:
Procedure
- Exec into harbor-db pod and update the admin password in harbor_user table as shown in the following example.
docker exec -it harbor-db psql -U postgres \c registry update harbor_user set salt='', password='' where user_id = 1;
- Restart the
harbor-core
pod after updating the harbor_user
table.