0

I am trying to install Eclipse Hono using Helm and have the latest Helm version 3.3.0 installed in the system. I tried to follow the instructions from here - https://github.com/eclipse/packages/tree/master/charts/hono

I created the hono namespace with command -

minikube kubectl create namespace hono

And then tried to install hono with this command -

helm install --dependency-update -n hono eclipse-hono eclipse-iot/hono

but I got this error - Error: failed to download "eclipse-iot/hono" (hint: running helm repo update may help)

I had searched for solutions related to this error and read that the chart repository should be added first. what is the name of the chart repository for eclipse hono? Basically I want to know what I could be missing so that hono can be installed on my system or if there is an alternate method to install hono successfully on my local system. I have minikube version: v1.12.3 and windows version 10

nina
  • 27
  • 8

1 Answers1

1

You should follow the instructions provided on the IoT Packages project page.

After that you should do a helm repo update. The helm install command should then be able to download the chart successfully.

Kai Hudalla
  • 826
  • 1
  • 5
  • 7
  • Thanks, it got installed after running - helm repo add eclipse-iot https://eclipse.org/packages/charts – nina Aug 15 '20 at 12:59