ancient-megabyte-79588
04/01/2020, 6:31 PMpublicIpAddress
from an azure resource when provisioning an Nginx Ingress Controller? I can't seem to get the nginx-ingress-controller to accept the one I provide in pulumi with this 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});