bumpy-laptop-30846
04/09/2021, 10:08 AMexport const hostname = ambassador.getResourceProperty("v1/Service", "ambassador", "status")
but status is not found. Where as with
kubectl get svc ambassador -o yaml
I get an output with a status.
Is it normal that pulumi does not find the info juste after the creation of the chart?billowy-army-68599
04/09/2021, 3:54 PMexport const hostname = ambassador.getResourceProperty("v1/Service", "ambassador", "status").apply(status => status.loadBalancer.ingress[0].ip);