Hi, I'm trying to deploy CSI Store chart <https://...
# kubernetes
g
Hi, I'm trying to deploy CSI Store chart https://aws.amazon.com/blogs/security/how-to-use-aws-secrets-configuration-provider-with-kubernetes-secrets-store-csi-driver/ But I do get this warning - this issue mentioned is closed however I cannot deploy the chart successfully
Copy code
warning: This resource contains Helm hooks that are not currently supported by Pulumi. The resource will be created, but any hooks will not be executed. Hooks support is tracked at <https://github.com/pulumi/pulumi-kubernetes/issues/555> -- This warning can be disabled by setting the PULUMI_K8S_SUPPRESS_HELM_HOOK_WARNINGS environment variable
kubernetes  resource  3.18.0   77 MB   n/a        22 minutes ago
b
@great-sunset-355 are you using
helm.v3.Chart
? if so, you need to switch to
helm.v3.Release
to get helm hooks working
g
@billowy-army-68599 Yes I'm using Chart, I'll take a look at Release! Thank you!
b
to further explain:
helm.v3.Chart
uses
helm template
to render the resources. Helm hooks are server side, so they don't work with
helm.v3.Chart
helm.v3.Release
works server side, so hooks work as expected
g
Thanks, much appreciated!