I'm facing an issue with accessing the Harbor after deploying it on Kubernetes using Helm.Here are the steps I followed:
- Download Harbor helm chart:
helm repo add harbor https://helm.goharbor.io helm fetch harbor/harbor --untar
- Install the Harbor helm chart with a release name my-release:
helm install my-release
- Port forwarded to access the Harbor portal:
kubectl port-forward --address 0.0.0.0 svc/my-release-harbor-portal 9000:8080
I'm unable to access the Harbor portal at http://localhost:9000. The default username is admin
, and the password is Harbor12345
. However, the login credentials are not working, and I'm seeing the following error: Invalid user name or password.
I've checked the Harbor pods, services, and Helm release, but I'm unable to identify the issue. Any guidance or suggestions would be greatly appreciated.
I attempted the following steps:
- Checked the status of Harbor pods using
kubectl get pods
. - Verified the Helm release with
helm list
. - Examined the services using
kubectl get services
. - Checked the Harbor logs with
kubectl logs
. - Reviewed the Helm chart values for any misconfigurations.