This message was deleted.
# typescript
s
This message was deleted.
b
use helm.Release
👀 1
s
this is what I was using
Copy code
const certManagerChart = new k8s.helm.v3.Chart("cert-manager", {
    namespace: "cert-manager",
    fetchOpts: {
        repo: "<https://charts.jetstack.io>"
    },
    chart: "cert-manager",
}, { provider: cluster.provider });
guess I can try with
k8s.helm.v3.Release
b
helm.Release will fix this
s
should I be using that in general or just in instances with the hook warning?