Skip to content

README: Helm install example uses incorrect chart reference leading to 'repo not found' error #2

Description

@rthomasvpg

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

  1. helm repo add packmind https://packmindHub.github.io/packmind-ai-helm-chart/
  2. helm repo update
  3. 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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions