You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now I fail to add helm repo (for the goal of installation of the pushed helm chart) using below commands:
$ helm repo add helm-test2 oci://private.harbor.com/some-project/
Error: looks like "oci://private.harbor.com/some-project/" is not a valid chart repository or cannot be reached: object required
$ helm repo add helm-test2 oci://private.harbor.com/some-project/helm-test-repo
Error: looks like "oci://private.harbor.com/some-project/helm-test-repo" is not a valid chart repository or cannot be reached: object required
$ helm repo add helm-test2 https://private.harbor.com/some-project/helm-test-repo
Error: looks like "https://private.harbor.com/some-project/helm-test-repo" is not a valid chart repository or cannot be reached: error unmarshaling JSON: while decoding JSON: json: cannot unmarshal string into Go value of type repo.IndexFile
$ helm repo add helm-test2 https://private.harbor.com/some-project
Error: looks like "https://private.harbor.com/some-project" is not a valid chart repository or cannot be reached: error unmarshaling JSON: while decoding JSON: json: cannot unmarshal string into Go value of type repo.IndexFile
How to helm repo add Harbor OCI helm repository?
It's important to note that docker images are stored alongside pushed helm charts at private.harbor.com/some-project/.
Alternative way that worked is uploading helm chart under Helm charts tab in some-project in Harbor UI.
Afterwards, below commands for adding and installing the chart worked:
I would use this method, but have no idea how to push to https://private.harbor.com/chartrepo/some-project, pushing to oci://... worked only after following this github link.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've successfully pushed some locally built helm chart to harbor private helm registry using below commands:
Now I fail to add helm repo (for the goal of installation of the pushed helm chart) using below commands:
How to
helm repo add
Harbor OCI helm repository?It's important to note that docker images are stored alongside pushed helm charts at
private.harbor.com/some-project/
.Alternative way that worked is uploading helm chart under
Helm charts
tab insome-project
in Harbor UI.Afterwards, below commands for adding and installing the chart worked:
I would use this method, but have no idea how to push to
https://private.harbor.com/chartrepo/some-project
, pushing tooci://...
worked only after following this github link.Beta Was this translation helpful? Give feedback.
All reactions