-
Notifications
You must be signed in to change notification settings - Fork 374
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
Keyring constantly changing #52
Comments
I think this was addressed in some of the PRs that was adding verify option to the release, which is now by default is set to false. https://github.com/mcuadros/terraform-provider-helm/blob/master/helm/resource_release.go#L95 Is it still happening in version 0.5 of the provider? @apenney |
I believe it still happens in 0.5! There's two of us that have verified we're on 0.5 and we've seen it flip between us. I'll check in with the third person and update this ticket again to make sure he's not a straggler on 0.4! Oh, and one more thing we noticed:
We had to guesstimate by release date :) |
Checked, all 3 of us were on 0.5. |
Yes it still happening, although validate is set to false, the default value for keyring is changing constantly on different environments. Maybe the provider shouldn't store keyring in Terraform state file at all and use what's setup in the current environment. |
We'd be 👍 on that! |
As a workaround, I'm setting the keyring empty. resource "helm_release" "my_release" {
...
keyring = ""
...
} That cause the provider to ignore it hence not causing the updates (in 0.5.0) |
This is still present in 0.7. |
Hi,
Is there a way to force an attribute for all instances of helm_release{}? Every time we run terraform as a different user it wants to change keyring in every helm_release, which is kind of annoying. It's a value we don't set, but it defaults to your homedirectory. Failing that, if it stored it as
~/.gnupg
instead of the expanded path, it wouldn't need to change for different users.The text was updated successfully, but these errors were encountered: