-
Notifications
You must be signed in to change notification settings - Fork 48
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
Error: unknown command "chart" for "helm" #50
Comments
The command flow is different. One notable addition is one needs to add helm package chart_dir/
>> Successfully packaged chart and saved it to: $CHART_NAME-$CHART_VERSION.tgz
helm push $CHART_NAME-$CHART_VERSION.tgz oci://your_oci_registry
# is you want to pull it and untar it and then install
helm pull oci://your_oci_registry/$CHART_NAME --version $CHART_VERSION
tar -xzf $CHART_NAME-$CHART_VERSION.tgz
helm install RELEASE_NAME CHART_NAME/
# No need to pull one can install directly from oci
helm install RELEASE_NAME oci://your_oci_registry/$CHART_NAME --version $CHART_VERSION |
@alikhtag Is it safe to assume that we don't need to do: |
@jsinh Yes, you can just do |
@alikhtag Got it thanks |
This issue is idle because it has been open for 14 days with no activity. |
@qpetraroia Yes @alikhtag response helps solve my block. Using the above example and update documentation I am about to use the latest HELM CLI for all installs and upgrades. Thanks & Cheers! |
We are using this action in our GitHub workflow actions. Current set to use latest Helm Version - since morning our builds are failing and I see that it has started pulling Helm Version:
v3.7.0
After setup on any helm command like for
helm chart pull ...
helm chart export ...
are failing and it says:I checked for new Helm Releases and seems like Helm 3.7.0 was released ~17 hours ago and they have mentioned that all
helm chart..
commands are removed.https://github.com/helm/helm/releases
I don't see this documented on this link:
https://docs.microsoft.com/en-us/azure/container-registry/container-registry-helm-repos
I am not sure how to deal with this blockage.
For now, I am changing it to a specific version that works for us and not
latest
. But can someone help update the document for old version equivalent new version commands and may be mentioned that change somewhere.Thanks in advance!
The text was updated successfully, but these errors were encountered: