Summary
The README contains an incorrect Helm install example that causes an installation failure.
Problem
The Quick Start section instructs users to add the Helm repo using the name packmind:
helm repo add packmind https://packmindHub.github.io/packmind-ai-helm-chart/
helm repo update
But the install example uses the non-existent chart reference packmind-ai/packmind-ai:
helm install packmind-ai packmind-ai/packmind-ai
Running this command produces the error:
Error: INSTALLATION FAILED: repo packmind-ai not found
Proposed fix
Update the README Quick Start install command to use the correct repository name packmind:
helm install packmind-ai packmind/packmind-ai
Or clarify the README by showing both options (install from repository and install from local chart directory), for example:
# Install from Helm repo
helm repo add packmind https://packmindHub.github.io/packmind-ai-helm-chart/
helm repo update
helm install packmind-ai packmind/packmind-ai
# Or install from local chart directory
helm install packmind packmind/
Reproduction Steps
- helm repo add packmind https://packmindHub.github.io/packmind-ai-helm-chart/
- helm repo update
- helm install packmind-ai packmind-ai/packmind-ai
Expected behavior
Documentation should show the correct chart reference so a user can successfully install the chart using the Helm repository instructions.
Additional context
I tested locally and confirmed that helm install packmind-ai packmind/packmind-ai works after adding the repo and running helm repo update.
Summary
The README contains an incorrect Helm install example that causes an installation failure.
Problem
The Quick Start section instructs users to add the Helm repo using the name
packmind:But the install example uses the non-existent chart reference
packmind-ai/packmind-ai:Running this command produces the error:
Proposed fix
Update the README Quick Start install command to use the correct repository name
packmind:Or clarify the README by showing both options (install from repository and install from local chart directory), for example:
Reproduction Steps
Expected behavior
Documentation should show the correct chart reference so a user can successfully install the chart using the Helm repository instructions.
Additional context
I tested locally and confirmed that
helm install packmind-ai packmind/packmind-aiworks after adding the repo and runninghelm repo update.