Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: OCI registry when releasing helm chart #105

Merged
merged 1 commit into from
Jul 12, 2024

Commits on Jul 12, 2024

  1. Fix: OCI registry when releasing helm chart

    Inbstallation of helm chart use this path in the OCI registry: `oci://8gears.container-registry.com/library/n8n` but with latest release it is required to add an extra path `/n8n`
    
    When trying:
    ```
    helm pull oci://8gears.container-registry.com/library/n8n --version 0.24.0
    Error: 8gears.container-registry.com/library/n8n:0.24.0: not found
    ```
    
    it works when
    ```
    helm pull oci://8gears.container-registry.com/library/n8n/n8n --version 0.24.0
    ```
    
    But that's not the path used in the helm chart documentation.
    CF: https://artifacthub.io/packages/helm/open-8gears/n8n/
    
    You can also confirm that latest release `0.24.0` is not available in the helm chart.
    CF: https://artifacthub.io/packages/helm/open-8gears/n8n/?modal=changelog
    albertollamaso committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    4f0b11b View commit details
    Browse the repository at this point in the history