So I have nginx ```export const nginx = new k8s.he...
# general
b
So I have nginx
Copy code
export const nginx = new k8s.helm.v2.Chart("nginx-ingress", {
    repo: "stable",
    version: "0.24.1",
    chart: "nginx-ingress",
    transformations: [addNamespace],
    namespace: "nginx",
    values: {
        rbac: {create: true},
        controller: {
            publishService: {enabled: true},
            stats: {enabled: true},
            service: {
                type: "LoadBalancer",
                externalTrafficPolicy: "Local",
                loadBalancerIP: lbIp
            },
            image: {tag: "0.24.1"}
        }
    }
}, { dependsOn: [nsnginx], provider: clusterProvider });