-
Notifications
You must be signed in to change notification settings - Fork 880
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
azure-ts-aks-mean fails due to older version of helm #462
Comments
What is the error you are seeing? Helm 3 support is being added in pulumi/pulumi-kubernetes#882 which I believe should fix this once it's rolled out. |
I am seeing 3 errors:
This can be removed from the example README instructions as per https://helm.sh/docs/topics/v2_v3_migration there is no longer a need to initialize helm.
Fix for this is to replace
|
Issue 3 above is fixed now in master of the kubernetes providers. Issue 2 sounds like it was a missing step in the tutorial even for Helm 2. Issue 1 sounds like something that will unfortunately need separate guidance depending on version of Helm the user has installed. Cc @lblackstone |
FWIW - We’ll need to make similar updates in all examples and docs (as well as potentially updating blog posts). |
Thanks for making the change. Looks like you've addressed the READMEs for these two samples that use Helm charts:
There's a third (which is the one for this issue) that also needs to be updated. |
@prasannapad Oops, sure enough. Fixed in #467 |
Hey all, looks like this is still broken. Running Helm 3.3.4, latest version of Pulumi, just tried to run through azure-ts-aks-mean and got the same error. pulumi up
Diagnostics:
|
So the command Fetch is deprecated in helm, so I went to helm.js, line 327, and replaced with Still getting same error
|
@dangersorus #814 should fix the issue you're seeing. |
https://github.com/pulumi/examples/tree/master/azure-ts-aks-mean sample is currently failing as the new version of
helm
(3.0) doesn't seem to support a few of the commands that the sample depends on.For example, the
helm init --client-only
option doesn't exist,helm --fetch
has been replaced byhelm --pull
and couple more downstream issues.Perhaps you can add a note to the README.md for now that the sample only works with helm 2.0 while you track this backlog item to address the compat issues?
The text was updated successfully, but these errors were encountered: