This message was deleted.
# kubernetes
s
This message was deleted.
c
I tried with this but without success:
Copy code
srv = Service.get(
    "ingress-nginx-controller-load-balancer",
    Output.concat("default/", release.status.name, "-controller")
)
m
Did you ever figure this out @cool-wall-66940? Im’ having a similar issue getting an ip from an ingress controller that was installed as a helm release
I actually figured it out with
Copy code
export const istioGatewayService = kubernetes.core.v1.Service.get(
  'istio-gateway-service',
  pulumi.interpolate`${istioGateway.status.namespace}/${istioGateway.status.name}`,
  { dependsOn: [istioGateway]}
);

const istioGatewayIp = istioGatewayService.status.loadBalancer.ingress.apply(ips => {
  return ips[0].ip;
});
hopefully that helps you!
c
Hey Jamie, Thank you for your response, I will try it out with Python, so far I had no success I saw on stackoverflow some other devs have the same issue as I do