https://pulumi.com logo
Title
g

great-sunset-355

04/06/2022, 1:32 PM
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
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

billowy-army-68599

04/06/2022, 2:32 PM
@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

great-sunset-355

04/06/2022, 2:43 PM
@billowy-army-68599 Yes I'm using Chart, I'll take a look at Release! Thank you!
b

billowy-army-68599

04/06/2022, 2:45 PM
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

great-sunset-355

04/07/2022, 8:44 AM
Thanks, much appreciated!