I've also tried but that doesn't seem to work eith...
# azure
a
I've also tried but that doesn't seem to work either
Copy code
// Deploy ingress-controller using helm to AKS Cluster
const nginxIngress = new k8s.helm.v3.Chart("nginx2", {
    chart: "nginx-ingress-controller",
    repo: "bitnami",
    values: {
        controller:{ service: { loadBalancerIP": infra.getOutput("publicIpAddress")}},
        serviceType: "LoadBalancer",
        nodeCount: 2,
    }
}, {provider: k8sProvider});