Open alexkuretz opened 1 day ago
Hi,
Thanks for reporting, however helm repo
subcommands are not supported for OCI registries. 😞
helm pull oci://ghcr.io/pelotech/charts/nidhogg
should allow you to download the chart. 🤞
See complete list of commands here : https://helm.sh/docs/topics/registries/
Thanks, I missed it was an OCI registry. I was actually trying to install with the helm_release terraform provider and fell back to testing with Helm to verify I wasn't making a mistake. I ended up manually installing by downloading the chart.
I was going off the docs:
Deploying
helm
We publish a helm chart to https://ghcr.io/pelotech/charts/nidhogg
It looks like only the 0.1.0 chart is available, is that intentional? I was expecting the 0.5.3 chart.
Error: ghcr.io/pelotech/charts/nidhogg:0.5.3: not found
This works:
resource "helm_release" "nidhogg" {
name = "nidhogg"
repository = "oci://ghcr.io/pelotech/charts"
chart = "nidhogg"
version = "0.1.0"
namespace = "nidhogg"
create_namespace = true
This does not:
resource "helm_release" "nidhogg" {
name = "nidhogg"
repository = "oci://ghcr.io/pelotech/charts"
chart = "nidhogg"
version = "0.5.3"
namespace = "nidhogg"
create_namespace = true
Yes, only the 0.1.0
is available for now. We still have some ongoing work to do to be able to publish latest version.
Apologies if I'm missing something, but I'm not able to pull your helm chart.