harbor icon indicating copy to clipboard operation
harbor copied to clipboard

Installation instructions incorrect

Open bibhas2 opened this issue 3 years ago • 0 comments

If you are reporting a problem, please make sure the following information are provided:

Expected behavior and actual behavior: In this page:

https://goharbor.io/docs/2.6.0/install-config/harbor-ha-helm/

Instruction says to run this command.

helm install my-release .

But doing so can give an error message:

Error: INSTALLATION FAILED: cannot load irregular file /home/xxxx/.gnupg/S.gpg-agent as it has file mode type bits set

The command should really be run as follows:

helm install my-release harbor/

Steps to reproduce the problem: Following the commands mentioned in the Helm based installation page (https://goharbor.io/docs/2.6.0/install-config/harbor-ha-helm/).

helm repo add harbor https://helm.goharbor.io
helm fetch harbor/harbor --untar
helm install my-release .

You will get an error. That's most probably because the distribution was downloaded in the harbor/ folder. To fix the issue, run the command as follows.

helm install my-release harbor/

Versions: Please specify the versions of following systems.

  • harbor version: [2.6.0]

Additional context:

I'm installing Harbor in a minikube installation.

bibhas2 avatar Sep 16 '22 15:09 bibhas2