Also another question how do you solve this? That ...
# kubernetes
g
Also another question how do you solve this? That ticket specified in there is already closed, these charts are charts from aws itself.
Copy code
Diagnostics:
  kubernetes:batch/v1:Job (kube-system/secrets-store-csi-driver-keep-crds):
    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
m
Are you using a
Chart
or a
Release
resource? Only the latter supports hooks, see Choosing the Right Helm Resource For Your Use Case.
g
using chart = k8s.helm.v3.Chart( "secrets-store-csi-driver",
m
Yes, that's not going to work. You need to switch to
k8s.helm.v3.Release
to get hook support
g
thank you 🙂